diff --git a/.gitignore b/.gitignore index 6e3f979..3abfcd7 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ tmp/ *.pkg *.dmg examples/pinpoint-script/pkgroot/* +config.mk diff --git a/Makefile b/Makefile index c0f802c..5161773 100644 --- a/Makefile +++ b/Makefile @@ -8,6 +8,8 @@ PB_EXTRA_ARGS+= --sign "Developer ID Installer: Clayton Burlison" ################################################# +-include config.mk + ##Help - Show this help menu help: @fgrep -h "##" $(MAKEFILE_LIST) | fgrep -v fgrep | sed -e 's/\\$$//' | sed -e 's/##//' @@ -32,3 +34,12 @@ dmg: pkg cp -R ./${PKGTITLE}-${PKGVERSION}.pkg /tmp/${PROJECT}-build hdiutil create -srcfolder /tmp/${PROJECT}-build -volname "${PROJECT}" -format UDZO -o ${PROJECT}-${PKGVERSION}.dmg rm -rf /tmp/${PROJECT}-build + +## changelog - Update the changelog file (repo maintainer task) +changelog: + docker run -it --rm -v "$(shell pwd)":/usr/local/src/your-app \ + clburlison/github-changelog-generator \ + -u clburlison -p pinpoint \ + -t ${CHANGELOG_GITHUB_TOKEN} + git add "CHANGELOG.md" + git commit -m "chore: Update changelog" diff --git a/pkgroot/Library/Application Support/pinpoint/bin/pinpoint b/pkgroot/Library/Application Support/pinpoint/bin/pinpoint index 90f03b3..2e685b7 100755 --- a/pkgroot/Library/Application Support/pinpoint/bin/pinpoint +++ b/pkgroot/Library/Application Support/pinpoint/bin/pinpoint @@ -32,7 +32,7 @@ from Foundation import (CFPreferencesAppSynchronize, CFPreferencesCopyAppValue, kCFPreferencesAnyUser, kCFPreferencesCurrentHost) __author__ = 'Clayton Burlison (https://clburlison.com)' -__version__ = '2.0.1.91' +__version__ = '2.0.1.92' # Our preferences "bundle_id" BUNDLE_ID = 'com.clburlison.pinpoint'