Skip to content

WISE v5.4 Release Notes

Hiroki Terashima edited this page Feb 14, 2017 · 8 revisions

Table of Contents

Release Schedule

v5.3.1 Released Feb 1, 2017 Announcement

Download

Downloads are available at wise5.org

Notes

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)

Major Changes

Minor Changes

Updating Instructions

(for people upgrading from v5.3)

1. Run queries to update database

MySQL:

1. Add notebookItemId column to annotations table
alter table annotations add notebookItemId int(11) null;

alter table annotations
    add constraint FK_lklpu3fwsovjhx5wqsjlah0ov
    foreign key (notebookItemId)
    references notebookItems (id);   
Clone this wiki locally