Changes between Version 441 and Version 442 of WikiStart


Ignore:
Timestamp:
08/02/21 10:24:38 (3 years ago)
Author:
wouter
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WikiStart

    v441 v442  
    11121112
    11131113= Migration from GeniusWeb 1.6 to 2.0
    1114 There are a few small differences between GeniusWeb 1.6 and 2.0. These concern some json formatting changes, some maven dependencies 
     1114There are a few small differences between GeniusWeb 1.6 and 2.0. These concern some json formatting changes, some maven dependencies.
    11151115
    11161116== json changes
    11171117
    1118 The change here involves the json serialization of a number of objects.
     1118The change here involves the json serialization of a number of objects. Most parties only will need recompilation, as the serialization to java objects already is done by the GeniusWeb libraries.
    11191119All objects now serialize by there class name (so the exceptions were changed)
    1120 The followign table gives the old label and the new replacement label
     1120The following table gives the old label and the new replacement label
    11211121
    11221122||old ||new||
     
    11391139Finally, the Range object now serializes different:
    11401140||[2,3,0.22]||{{{ {"low":2,"high":3,"step":0.22} }}}||
     1141
     1142== Maven changes
     1143  The maven dependencies
     1144{{{
     1145<dependency>
     1146        <groupId>tudelft.utilities</groupId>
     1147        <artifactId>files / listener / tree / repository</artifactId>
     1148        <version>2.1.0</version>
     1149</dependency>
     1150}}}
     1151
     1152have all been replaced with
     1153{{{
     1154<dependency>
     1155        <groupId>tudelft.utilities</groupId>
     1156        <artifactId>utilities</artifactId>
     1157        <version>1.1.0</version>
     1158</dependency>
     1159}}}