d0ffc4be78
Added Riot as a dependency, I'm still deciding over whether to use this or Bleve. Tweaked the topic view for Cosora. Fixed a crash bug in the group creator. Moved a few things from permissions.go into the ForumPermsStore, more to come here! Added more tests. Refactored the MySQL Query Generator. Refactored the BBCode Parser. Moved the presets into the Phrase System.
27 lines
637 B
Plaintext
27 lines
637 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
|