0e9cebfa47
Added fsnotify as a dependency, we'll be using it, Rez, and Riot (maybe) soon. Removed the intercept_build_widgets vhook. You can now pass an ID to BlankReply() for mocking replies or whatever else you want to do with this. Added the dock template function for widget docks. Added the logf internal function to the template transpiler and did some minor clean-up. Removed the Sidebars property from theme.json and added the more general Docks one. Improved the footer and the associated CSS. Added the about widget, previously the AboutSegment feature. Removed the about_segment_title and about_segment_body settings. Gosora now exits when it receives the appropriate OS signal. Refactored the modlogs route. More progress on the theme in the Control Panel.
32 lines
773 B
Plaintext
32 lines
773 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 Riot Search Engine"
|
|
go get -u github.com/go-ego/riot
|
|
|
|
echo "Updating the Rez Image Resizer"
|
|
go get -u github.com/bamiaux/rez
|
|
|
|
echo "Updating fsnotify"
|
|
go get -u github.com/fsnotify/fsnotify |