Update version to 1.1.0

master
Skylar Ittner 5 years ago
parent 09d65ff192
commit c55d49431b

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

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

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

Binary file not shown.
Loading…
Cancel
Save