-
Notifications
You must be signed in to change notification settings - Fork 24
WISE v5.4 Release Notes
Geoffrey Kwan edited this page Mar 20, 2017
·
8 revisions
v5.3.1 Released Feb 1, 2017 Announcement
Downloads are available at wise5.org
WISE5 Goals Read WISE5's goals.
WISE5 Design Doc and Notes Read this to get an overview of what's new in WISE5.
This release requires Tomcat 8.0.x and and java 7+ to work with WebSockets. WISE@Berkeley is using Tomcat 8.5.x with java 1.8 (as of Feb. 2017)
(for people upgrading from v5.3)
(in wise.properties file: supportedLocales=en,ar,zh_TW,zh_CN,nl,fr,de,he,it,ja,ko,pt,es,th,tr
MySQL:
1. Add localNotebookItemId and notebookItemId columns to annotations table alter table annotations add localNotebookItemId varchar(30) null after studentWorkId; alter table annotations add notebookItemId int(11) null after localNotebookItemId; alter table annotations add constraint FK_lklpu3fwsovjhx5wqsjlah0ov foreign key (notebookItemId) references notebookItems (id); 2. Insert new translator role insert into granted_authorities (authority, OPTLOCK) values ("ROLE_TRANSLATOR",0) 3. Update the language field for 'en_US' users update user_details set language='en' where language='en_US';