2a5ab2969c
Made the initialisers and the task runner in main.go easier to debug. Added form_button_row to a few forms. Bumped up the attachment image size for Cosora. Hid the formlabels for the setting editor for Cosora to make it cleaner. Revamped the account manager with the same CSS as in the Control Panel for Nox. Started adding the_form to more forms. Removed the account_emails CSS class from the email editor. Continued tweaking the Control Panel in Nox to make it look nicer. Tweaked some of the headers in the Nox Theme. Added the Create Topic and Moderate options to the topic list on the Nox Theme, although the bulk moderation tools aren't available yet. Tweaked the padding and sticky shades on the topics on the topic list on the Nox Theme. Closed topics are now somewhat styled on the topic list on the Nox Theme. Continued work on the topic pages for Nox. Renamed Admin Approval to Staff Approval in the English Language Pack. Added more phrases for the Group Manager and Panel Menu in spots I overlooked. Began work on the dyntmpl template function. Be sure to run the patcher / update script to get the new setting.
134 lines
2.3 KiB
Batchfile
134 lines
2.3 KiB
Batchfile
@echo off
|
|
echo Updating the dependencies
|
|
|
|
echo Updating the MySQL Driver
|
|
go get -u github.com/go-sql-driver/mysql
|
|
if %errorlevel% neq 0 (
|
|
pause
|
|
exit /b %errorlevel%
|
|
)
|
|
|
|
echo Updating the PostgreSQL Driver
|
|
go get -u github.com/lib/pq
|
|
if %errorlevel% neq 0 (
|
|
pause
|
|
exit /b %errorlevel%
|
|
)
|
|
|
|
echo Updating the MSSQL Driver
|
|
go get -u github.com/denisenkom/go-mssqldb
|
|
if %errorlevel% neq 0 (
|
|
pause
|
|
exit /b %errorlevel%
|
|
)
|
|
|
|
echo Updating the bcrypt library
|
|
go get -u golang.org/x/crypto/bcrypt
|
|
if %errorlevel% neq 0 (
|
|
pause
|
|
exit /b %errorlevel%
|
|
)
|
|
|
|
echo Updating the Argon2 library
|
|
go get -u golang.org/x/crypto/argon2
|
|
if %errorlevel% neq 0 (
|
|
pause
|
|
exit /b %errorlevel%
|
|
)
|
|
|
|
echo Updating /x/sys/windows (dependency for gopsutil)
|
|
go get -u golang.org/x/sys/windows
|
|
if %errorlevel% neq 0 (
|
|
pause
|
|
exit /b %errorlevel%
|
|
)
|
|
|
|
echo Updating wmi (dependency for gopsutil)
|
|
go get -u github.com/StackExchange/wmi
|
|
if %errorlevel% neq 0 (
|
|
pause
|
|
exit /b %errorlevel%
|
|
)
|
|
|
|
echo Updating the gopsutil library
|
|
go get -u github.com/Azareal/gopsutil
|
|
if %errorlevel% neq 0 (
|
|
pause
|
|
exit /b %errorlevel%
|
|
)
|
|
|
|
echo Updating the WebSockets library
|
|
go get -u github.com/gorilla/websocket
|
|
if %errorlevel% neq 0 (
|
|
pause
|
|
exit /b %errorlevel%
|
|
)
|
|
|
|
echo Updating Sourcemap (dependency for OttoJS)
|
|
go get -u gopkg.in/sourcemap.v1
|
|
if %errorlevel% neq 0 (
|
|
pause
|
|
exit /b %errorlevel%
|
|
)
|
|
|
|
echo Updating OttoJS
|
|
go get -u github.com/robertkrimen/otto
|
|
if %errorlevel% neq 0 (
|
|
pause
|
|
exit /b %errorlevel%
|
|
)
|
|
|
|
echo Updating the Rez Image Resizer
|
|
go get -u github.com/bamiaux/rez
|
|
if %errorlevel% neq 0 (
|
|
pause
|
|
exit /b %errorlevel%
|
|
)
|
|
|
|
echo Updating Caire
|
|
go get -u github.com/esimov/caire
|
|
if %errorlevel% neq 0 (
|
|
pause
|
|
exit /b %errorlevel%
|
|
)
|
|
|
|
echo Updating some error helpers
|
|
go get -u github.com/pkg/errors
|
|
if %errorlevel% neq 0 (
|
|
pause
|
|
exit /b %errorlevel%
|
|
)
|
|
|
|
echo Updating fsnotify
|
|
go get -u github.com/fsnotify/fsnotify
|
|
if %errorlevel% neq 0 (
|
|
pause
|
|
exit /b %errorlevel%
|
|
)
|
|
|
|
|
|
echo Updating Gosora
|
|
cd schema
|
|
del /Q lastSchema.json
|
|
copy schema.json lastSchema.json
|
|
cd ..
|
|
git stash
|
|
if %errorlevel% neq 0 (
|
|
pause
|
|
exit /b %errorlevel%
|
|
)
|
|
git pull origin master
|
|
if %errorlevel% neq 0 (
|
|
pause
|
|
exit /b %errorlevel%
|
|
)
|
|
git stash apply
|
|
if %errorlevel% neq 0 (
|
|
pause
|
|
exit /b %errorlevel%
|
|
)
|
|
|
|
echo Patching Gosora
|
|
go generate
|
|
go build ./patcher
|
|
patcher.exe |