Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
20b5ffdb17 | ||
![]() |
4a6926fcbf | ||
![]() |
5b12f20406 | ||
![]() |
da29268898 | ||
![]() |
79f016cb1c | ||
![]() |
e19ce19368 |
6
build.sh
6
build.sh
@@ -25,6 +25,8 @@ if [ -z $machine ]; then
|
|||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
ICON="src/icons/ui2pbrowser_icon.ico"
|
||||||
|
|
||||||
if [ "$machine" = "Mac" ]; then
|
if [ "$machine" = "Mac" ]; then
|
||||||
rm -rf I2P
|
rm -rf I2P
|
||||||
./getprebuilt.sh
|
./getprebuilt.sh
|
||||||
@@ -33,6 +35,8 @@ elif [ "$machine" = "Linux" ]; then
|
|||||||
rm -rf I2P
|
rm -rf I2P
|
||||||
./getprebuilt.sh
|
./getprebuilt.sh
|
||||||
exit 0
|
exit 0
|
||||||
|
elif [ "$machine" = "unix" ]; then
|
||||||
|
ICON=src/icons/windowsUIToopie2.png
|
||||||
fi
|
fi
|
||||||
|
|
||||||
. "$SCRIPT_DIR/launcher.sh"
|
. "$SCRIPT_DIR/launcher.sh"
|
||||||
@@ -63,7 +67,7 @@ if [ ! -d "I2P" ]; then
|
|||||||
--app-content src/win/torbrowser-windows.sh \
|
--app-content src/win/torbrowser-windows.sh \
|
||||||
--app-content src/icons/windowsUIToopie2.png \
|
--app-content src/icons/windowsUIToopie2.png \
|
||||||
--app-content src/icons/ui2pbrowser_icon.ico \
|
--app-content src/icons/ui2pbrowser_icon.ico \
|
||||||
--icon src/icons/windowsUIToopie2.png \
|
--icon "${ICON}" \
|
||||||
--input build --main-jar launcher.jar --main-class net.i2p.router.WinLauncher
|
--input build --main-jar launcher.jar --main-class net.i2p.router.WinLauncher
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@@ -7,11 +7,9 @@ export I2PFIREFOX_VERSION=1.0.7
|
|||||||
# Comment this out to build from an alternate branch or
|
# Comment this out to build from an alternate branch or
|
||||||
# the tip of the master branch.
|
# the tip of the master branch.
|
||||||
VERSIONMAJOR=2
|
VERSIONMAJOR=2
|
||||||
VERSIONMINOR=0
|
VERSIONMINOR=1
|
||||||
VERSIONBUILD=0
|
VERSIONBUILD=0
|
||||||
I2P_VERSION="$VERSIONMAJOR.$VERSIONMINOR.$VERSIONBUILD"
|
I2P_VERSION="$VERSIONMAJOR.$VERSIONMINOR.$VERSIONBUILD"
|
||||||
export I2P_VERSION="$VERSIONMAJOR.$VERSIONMINOR.$VERSIONBUILD"
|
export I2P_VERSION="$VERSIONMAJOR.$VERSIONMINOR.$VERSIONBUILD"
|
||||||
#VERSION=i2p-2.0.0
|
VERSION=i2p-2.1.0
|
||||||
#export VERSION=i2p-2.0.0
|
export VERSION=i2p-2.1.0
|
||||||
VERSION=master
|
|
||||||
export VERSION=master
|
|
@@ -41,15 +41,15 @@ sleep 5s
|
|||||||
HERE="$PWD"
|
HERE="$PWD"
|
||||||
if [ ! -d "$HERE/../i2p.i2p.jpackage-build/" ]; then
|
if [ ! -d "$HERE/../i2p.i2p.jpackage-build/" ]; then
|
||||||
git clone --depth=1 -b "$VERSION" https://i2pgit.org/i2p-hackers/i2p.i2p "$HERE/../i2p.i2p.jpackage-build/"
|
git clone --depth=1 -b "$VERSION" https://i2pgit.org/i2p-hackers/i2p.i2p "$HERE/../i2p.i2p.jpackage-build/"
|
||||||
tar --exclude="$HERE/../i2p.i2p.jpackage-build/.git" -cvzf i2p.i2p.jpackage-build.tar.gz "$HERE/../i2p.i2p.jpackage-build/"
|
|
||||||
fi
|
fi
|
||||||
cd "$HERE/../i2p.i2p.jpackage-build/"
|
cd "$HERE/../i2p.i2p.jpackage-build/"
|
||||||
git pull --all
|
git pull --tags
|
||||||
|
git archive --format=tar.gz --output="$HERE/../i2p.firefox/i2p.i2p.jpackage-build.tar.gz" "$VERSION"
|
||||||
for i in $COUNT; do
|
for i in $COUNT; do
|
||||||
echo -n "$i...."; sleep 1s
|
echo -n "$i...."; sleep 1s
|
||||||
done
|
done
|
||||||
ant distclean pkg || true
|
ant distclean pkg || true
|
||||||
ant jbigi-windows-only
|
ant jbigi
|
||||||
|
|
||||||
cd "$HERE"
|
cd "$HERE"
|
||||||
export I2P_PKG="$HERE/../i2p.i2p.jpackage-build/pkg-temp"
|
export I2P_PKG="$HERE/../i2p.i2p.jpackage-build/pkg-temp"
|
||||||
|
4
sign.sh
4
sign.sh
@@ -40,6 +40,8 @@ if [ "$(expr substr $(uname -s) 1 5)" == "Linux" ]; then
|
|||||||
linuxsign I2P-Easy-Install-Bundle-$I2P_VERSION.exe
|
linuxsign I2P-Easy-Install-Bundle-$I2P_VERSION.exe
|
||||||
cp "I2P-Easy-Install-Bundle-$I2P_VERSION.exe" "I2P-Easy-Install-Bundle-$I2P_VERSION-signed.exe"
|
cp "I2P-Easy-Install-Bundle-$I2P_VERSION.exe" "I2P-Easy-Install-Bundle-$I2P_VERSION-signed.exe"
|
||||||
else
|
else
|
||||||
signtool.exe sign -a "I2P-Easy-Install-Bundle-$I2P_VERSION.exe"
|
#signtool.exe sign -a "I2P-Easy-Install-Bundle-$I2P_VERSION.exe"
|
||||||
|
echo "WARNING: Signing is temporarily disabled for the installer."
|
||||||
|
sleep 5s
|
||||||
cp "I2P-Easy-Install-Bundle-$I2P_VERSION.exe" "I2P-Easy-Install-Bundle-$I2P_VERSION-signed.exe"
|
cp "I2P-Easy-Install-Bundle-$I2P_VERSION.exe" "I2P-Easy-Install-Bundle-$I2P_VERSION-signed.exe"
|
||||||
fi
|
fi
|
||||||
|
Binary file not shown.
Before Width: | Height: | Size: 7.2 KiB After Width: | Height: | Size: 67 KiB |
Reference in New Issue
Block a user