From 3d8cddec4f50dd68239c3ae40ceda111f1724ae9 Mon Sep 17 00:00:00 2001 From: idk Date: Tue, 13 Sep 2022 12:58:52 -0400 Subject: [PATCH] bump version number, update changelog, make logging slightly better --- changelog.txt | 4 ++++ i2pversion | 2 +- java/net/i2p/router/CopyConfigDir.java | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/changelog.txt b/changelog.txt index 5269b0e..119353d 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,7 @@ +2022-09-13 idk + * make it a "portable" application in that the entire app and config can be carried on a portable + storage device. Requires minor tweaks to work well still. + 2022-09-08 idk * Generate a source tarball when we checkout a branch of i2p.i2p * Upload a source tarball when we do a daily build diff --git a/i2pversion b/i2pversion index 8260242..ef3139e 100644 --- a/i2pversion +++ b/i2pversion @@ -8,7 +8,7 @@ export I2PFIREFOX_VERSION=0.0.36 # the tip of the master branch. VERSIONMAJOR=1 VERSIONMINOR=9 -VERSIONBUILD=5 +VERSIONBUILD=6 I2P_VERSION="$VERSIONMAJOR.$VERSIONMINOR.$VERSIONBUILD" export I2P_VERSION="$VERSIONMAJOR.$VERSIONMINOR.$VERSIONBUILD" VERSION=i2p-jpackage-1.9.4 diff --git a/java/net/i2p/router/CopyConfigDir.java b/java/net/i2p/router/CopyConfigDir.java index daf087a..164d1c7 100644 --- a/java/net/i2p/router/CopyConfigDir.java +++ b/java/net/i2p/router/CopyConfigDir.java @@ -133,7 +133,7 @@ public class CopyConfigDir { } } File i2p = appImageHome(); - logger.info("Checking for signs of life in I2P directory: " + i2p); + logger.info("Checking for signs of life in I2P_CONFIG directory: " + i2p); return i2p; }