bump version number, update changelog, make logging slightly better

This commit is contained in:
idk
2022-09-13 12:58:52 -04:00
parent e94d008335
commit 3d8cddec4f
3 changed files with 6 additions and 2 deletions

View File

@@ -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 2022-09-08 idk
* Generate a source tarball when we checkout a branch of i2p.i2p * Generate a source tarball when we checkout a branch of i2p.i2p
* Upload a source tarball when we do a daily build * Upload a source tarball when we do a daily build

View File

@@ -8,7 +8,7 @@ export I2PFIREFOX_VERSION=0.0.36
# the tip of the master branch. # the tip of the master branch.
VERSIONMAJOR=1 VERSIONMAJOR=1
VERSIONMINOR=9 VERSIONMINOR=9
VERSIONBUILD=5 VERSIONBUILD=6
I2P_VERSION="$VERSIONMAJOR.$VERSIONMINOR.$VERSIONBUILD" I2P_VERSION="$VERSIONMAJOR.$VERSIONMINOR.$VERSIONBUILD"
export I2P_VERSION="$VERSIONMAJOR.$VERSIONMINOR.$VERSIONBUILD" export I2P_VERSION="$VERSIONMAJOR.$VERSIONMINOR.$VERSIONBUILD"
VERSION=i2p-jpackage-1.9.4 VERSION=i2p-jpackage-1.9.4

View File

@@ -133,7 +133,7 @@ public class CopyConfigDir {
} }
} }
File i2p = appImageHome(); 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; return i2p;
} }