Update version to 1.1.0

master
Skylar Ittner 5 years ago
parent 09d65ff192
commit c55d49431b

@ -23,7 +23,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>Version 1.0.0</string>
<string>Version 1.1.0</string>
<key>CFBundleSignature</key>
<string>NWJS</string>
<key>CFBundleURLTypes</key>
@ -55,7 +55,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>1.0.0</string>
<string>1.1.0</string>
<key>DTCompiler</key>
<string>com.apple.compilers.llvm.clang.1_0</string>
<key>DTSDKBuild</key>

@ -1,5 +1,5 @@
Package: notepost
Version: 1.0.0
Version: 1.1.0
Maintainer: Netsyms Technologies <opensource@netsyms.com>
Section: web
Homepage: https://netsyms.com/apps/notepost

@ -1,13 +1,11 @@
#!/bin/bash
# $1 is the binary location, $2 is the arch, $3 is the svg icon
mkdir tmp
mkdir out
dpkg-deb -R template.deb tmp
sed -i '/Architecture:/d' tmp/DEBIAN/control
echo "Architecture: $2" >> tmp/DEBIAN/control
rm -rf tmp/usr/lib/notepost
sed -i '/Architecture:/d' debian/DEBIAN/control
echo "Architecture: $2" >> debian/DEBIAN/control
rm -rf debian/usr/lib/notepost
mv "$1com.netsyms.NotePostApp" "$1notepost"
mkdir -p tmp/usr/lib
rsync -rv "$1" tmp/usr/lib/notepost
cp "$3" tmp/usr/lib/notepost/logo.svg
dpkg-deb -b tmp "out/notepost_$2.deb"
mkdir -p debian/usr/lib
rsync -rv "$1" debian/usr/lib/notepost
cp "$3" debian/usr/lib/notepost/logo.svg
dpkg-deb -b debian "out/notepost_$2.deb"

Binary file not shown.
Loading…
Cancel
Save