diff --git a/cmd/update-release.py b/cmd/update-release.py index a352013..5403aa3 100755 --- a/cmd/update-release.py +++ b/cmd/update-release.py @@ -14,7 +14,7 @@ from urllib.request import urlopen from string import Template -distVersion = 2 +distVersion = 1 latest_url = "https://api.github.com/repos/syncthing/syncthing/releases/latest" infoPlist = 'syncthing/Info.plist' infoPlistTmpl = 'syncthing/Info.plist.tmpl' diff --git a/syncthing/Info.plist b/syncthing/Info.plist index 44c0462..ad3cbef 100644 --- a/syncthing/Info.plist +++ b/syncthing/Info.plist @@ -19,9 +19,9 @@ CFBundlePackageType APPL CFBundleShortVersionString - 1.27.7-2 + 1.27.8-1 CFBundleVersion - 102700702 + 102700801 LSApplicationCategoryType public.app-category.utilities LSMinimumSystemVersion diff --git a/syncthing/Scripts/syncthing-resource.sh b/syncthing/Scripts/syncthing-resource.sh index 6121c1a..a0715f5 100755 --- a/syncthing/Scripts/syncthing-resource.sh +++ b/syncthing/Scripts/syncthing-resource.sh @@ -2,7 +2,7 @@ set -euo pipefail # Download and unpack syncthing into ${PRODUCT_NAME}.app/Contents/Resources -SYNCTHING_VERSION="1.27.7" +SYNCTHING_VERSION="1.27.8" SYNCTHING_DIST_URL="https://github.com/syncthing/syncthing/releases/download" SYNCTHING_TARBALL_URL="${SYNCTHING_DIST_URL}/v${SYNCTHING_VERSION}/syncthing-macos-universal-v${SYNCTHING_VERSION}.zip"