Skip to content

Releases: WISE-Community/WISE-DEPRECATED

5.16.3

18 Sep 21:10
Compare
Choose a tag to compare

Fixed a console error that occurred when clicking a WISE link. #2628
Refactored createWISELinkLinkElement and createWISELinkButtonElement functions. #2626
Extracted common methods from StudentDataService and TeacherDataService into DataService. #2620
Replaced openWISELinkChooser and createWISELink events with function calls. #2621
Replaced currentPeriodChanged event with observables #2616

5.16.2

16 Sep 21:00
Compare
Choose a tag to compare

Replaced currentNodeChanged and currentStepChanged events with an observable #2618
Replaced openAssetChooser and assetSelected events with function calls. #2614
Fixed the thumbnails for some of the outside resources. #2521
Extracted edit node rubric feature from NodeAuthoringController into its own route. #2610

5.16.1

11 Sep 20:39
Compare
Choose a tag to compare

Limit first name and last name to English alphabet characters when creating an account
Implement Match component latest revision export
Update code in preparation for AngularJS -> Angular upgrade
Code clean up

5.16

04 Sep 21:35
Compare
Choose a tag to compare
  • Student gating: teachers can now lock/unlock students from accessing lessons. They can lock all periods in the class, or only specific periods. Changes are propagated to the students in real-time when a run is in session.
  • Bug fixes
  • Code refactoring

5.15.3

02 Sep 21:36
Compare
Choose a tag to compare

Bug fixes

5.15.2

01 Sep 23:34
Compare
Choose a tag to compare

Bug fixes

5.15.1

29 Aug 00:07
Compare
Choose a tag to compare

Minor bug fixes

5.15

25 Aug 21:28
Compare
Choose a tag to compare

Upgrade instructions:
Clear the Redis database by running

$ redis-cli
flushall

Major changes:

  • Upgrade to Spring-Boot 2.3.2
  • Upgrading services, components to Angular
  • Replacing events with Observables
  • Refactoring

All issues: https://github.com/WISE-Community/WISE/milestone/20?closed=1

5.14.1

16 Jul 19:59
Compare
Choose a tag to compare

Bug Fixes

  • Fixed a problem with large images being renamed to blob when uploaded in the Authoring Tool #2475
  • Fixed a problem with the Discussion authoring view not loading #2477

5.14.0

14 Jul 21:09
Compare
Choose a tag to compare

Major changes:

  • WorkgroupTag
  • Upgrade Services to Angular
  • Refactor

DB update query

alter table `wise_database`.`tags` add column `runId` bigint null after `name`;

create table workgroups_related_to_tags (
    workgroups_fk bigint not null,
    tags_fk integer not null,
    constraint workgroups_related_to_tagsTagFK foreign key (tags_fk) references tags (id),
    constraint workgroups_related_to_tagsWorkgroupFK foreign key (workgroups_fk) references workgroups (id),
    primary key (workgroups_fk, tags_fk)
);

All issues: https://github.com/WISE-Community/WISE/milestone/19?closed=1