Package: plm / 2.9.2-1.1

Metadata

Package Version Patches format
plm 2.9.2-1.1 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
chmod | (download)

build.xml | 2 2 0 - 0 !
1 file changed, 2 insertions( )

---
system ant tasks | (download)

build.xml | 58 21 37 - 0 !
1 file changed, 21 insertions( ), 37 deletions(-)

---
no github | (download)

src/plm/core/ui/FeedbackDialog.java | 249 0 249 - 0 !
src/plm/core/ui/MainFrame.java | 13 1 12 - 0 !
2 files changed, 1 insertion( ), 261 deletions(-)

---
jython fixes | (download)

src/plm/core/model/Game.java | 6 2 4 - 0 !
1 file changed, 2 insertions( ), 4 deletions(-)

---
json simple 3.patch | (download)

src/plm/core/model/User.java | 21 16 5 - 0 !
src/plm/core/model/Users.java | 15 8 7 - 0 !
src/plm/core/model/session/SessionDB.java | 26 13 13 - 0 !
src/plm/core/model/session/ZipSessionKit.java | 28 14 14 - 0 !
src/plm/core/model/tracking/GitSpy.java | 16 8 8 - 0 !
src/plm/core/ui/action/HelpMe.java | 15 7 8 - 0 !
6 files changed, 66 insertions( ), 55 deletions(-)

 migrate away from deprecated json-simple 1.x classes
 See json-simple 2.0.0 changelog:
 > * Deprecated JSONParse and JSONValue in favor of Jsoner.
 > * Deprecated JSONStreamAware and JSONAware in favor of Jsonable.
 > * Deprecated JSONObject in favor of JsonObject.
 > * Deprecated JSONArray in favor of JsonArray.
 .
 This patch uses the new json-simple Json* classes. It is compatible with
 both 2.x and 3.x json-simple releases, with a few ajustments regarding
 backward incompatible changes in json-simple 3.x:
 - The package name, changed to com.github.cliftonlabs.json_simple
 - The exception DeserializationExcetpion renamed as JsonException
 These two changes are handled using place-holders @JSON_SIMPLE_PACKAGE@
 and @JSON_EXCETPION@ which are substituted at build time by debian/rules.
 .
 With these tricks the package is compatible with json-simple 2.x and 3.x.
jgit_6.7.0.patch | (download)

src/plm/core/model/tracking/GitUtils.java | 4 2 2 - 0 !
1 file changed, 2 insertions( ), 2 deletions(-)

 replacing methods removed in jgit 6.7.0
 The method getRef in Repository had been deprecated in previous versions, and
 is now removed.