9eae8da180
The static files for themes are now automatically reloaded without having to restart Gosora. Added the Get and Set methods to the SFileList type. Static files can now be updated during execution in a thread-safe way. Removed Riot as a dependency. Began work on making Cosora responsive like the other themes.
29 lines
700 B
Plaintext
29 lines
700 B
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 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 fsnotify"
|
|
go get -u github.com/fsnotify/fsnotify |