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.
53 lines
1.1 KiB
Plaintext
53 lines
1.1 KiB
Plaintext
echo "Updating the MySQL Driver"
|
|
go get -u github.com/go-sql-driver/mysql
|
|
|
|
echo "Updating the PostgreSQL Driver"
|
|
go get -u github.com/lib/pq
|
|
|
|
echo "Updating the MSSQL Driver"
|
|
go get -u github.com/denisenkom/go-mssqldb
|
|
|
|
echo "Updating bcrypt"
|
|
go get -u golang.org/x/crypto/bcrypt
|
|
|
|
echo "Updating Argon2"
|
|
go get -u golang.org/x/crypto/argon2
|
|
|
|
echo "Updating gopsutil"
|
|
go get -u github.com/Azareal/gopsutil
|
|
|
|
echo "Updating Gorilla WebSockets"
|
|
go get -u github.com/gorilla/websocket
|
|
|
|
echo "Updating Sourcemap (dependency for OttoJS)"
|
|
go get -u gopkg.in/sourcemap.v1
|
|
|
|
echo "Updating OttoJS"
|
|
go get -u github.com/robertkrimen/otto
|
|
|
|
echo "Updating the Rez Image Resizer"
|
|
go get -u github.com/bamiaux/rez
|
|
|
|
echo "Updating Caire"
|
|
go get -u github.com/esimov/caire
|
|
|
|
echo "Updating some error helpers"
|
|
go get -u github.com/pkg/errors
|
|
|
|
echo "Updating fsnotify"
|
|
go get -u github.com/fsnotify/fsnotify
|
|
|
|
echo "Updating Gosora"
|
|
rm ./schema/lastSchema.json
|
|
cp ./schema/schema.json ./schema/lastSchema.json
|
|
git stash
|
|
git pull origin master
|
|
git stash apply
|
|
|
|
echo "Patching Gosora"
|
|
cd ./patcher
|
|
go generate
|
|
go build -o Patcher
|
|
mv ./Patcher ..
|
|
cd ..
|
|
./Patcher |