diff --git a/Info.plist b/Info.plist index 07c7299..5800108 100644 --- a/Info.plist +++ b/Info.plist @@ -23,7 +23,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - Version 1.0.0 + Version 1.1.0 CFBundleSignature NWJS CFBundleURLTypes @@ -55,7 +55,7 @@ CFBundleVersion - 1.0.0 + 1.1.0 DTCompiler com.apple.compilers.llvm.clang.1_0 DTSDKBuild diff --git a/debian/DEBIAN/control b/debian/DEBIAN/control index d2492e2..f3e2930 100644 --- a/debian/DEBIAN/control +++ b/debian/DEBIAN/control @@ -1,5 +1,5 @@ Package: notepost -Version: 1.0.0 +Version: 1.1.0 Maintainer: Netsyms Technologies Section: web Homepage: https://netsyms.com/apps/notepost diff --git a/scripts/debian_build.sh b/scripts/debian_build.sh index a6c83bd..715a1b8 100644 --- a/scripts/debian_build.sh +++ b/scripts/debian_build.sh @@ -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" diff --git a/template.deb b/template.deb deleted file mode 100644 index c235dc3..0000000 Binary files a/template.deb and /dev/null differ