Skip to content

Commit

Permalink
updated release notes, fixed script typo
Browse files Browse the repository at this point in the history
  • Loading branch information
twocanoes committed Feb 13, 2024
1 parent 8150968 commit cdd59f8
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 16 deletions.
10 changes: 3 additions & 7 deletions Profile Manifest/com.twocanoes.xcreds.plist
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@
<key>pfm_app_url</key>
<string>https://github.com/twocanoes/xcreds</string>
<key>pfm_description</key>
<string>XCreds 4.1 (6344) OAuth Settings</string>
<string>XCreds 4.1 (6346) OAuth Settings</string>
<key>pfm_documentation_url</key>
<string>https://twocanoes.com/knowledge-base/xcreds-admin-guide/#preferences</string>
<key>pfm_domain</key>
<string>com.twocanoes.xcreds</string>
<key>pfm_format_version</key>
<integer>1</integer>
<key>pfm_last_modified</key>
<date>2024-02-13T20:04:02Z</date>
<date>2024-02-13T20:50:01Z</date>
<key>pfm_platforms</key>
<array>
<string>macOS</string>
Expand Down Expand Up @@ -428,7 +428,7 @@ A profile can consist of payloads with different version numbers. For example, c
</dict>
<dict>
<key>pfm_default</key>
<true/>
<false/>
<key>pfm_description</key>
<string>Set the background image to Fill Screen rather than Fit to Screen</string>
<key>pfm_documentation_url</key>
Expand All @@ -439,8 +439,6 @@ A profile can consist of payloads with different version numbers. For example, c
<string>Login Window Background Image Fill Screen</string>
<key>pfm_type</key>
<string>boolean</string>
<key>pfm_default</key>
<false/>
</dict>
<dict>
<key>pfm_description</key>
Expand Down Expand Up @@ -588,8 +586,6 @@ Note that Google does not support the offline_access scope so instead use the pr
<string>Show Sign In Menu Item</string>
<key>pfm_type</key>
<string>boolean</string>
<key>pfm_default</key>
<true/>
</dict>
<dict>
<key>pfm_default</key>
Expand Down
6 changes: 4 additions & 2 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@

set -e

echo "post to github? (y/N)"
echo "post to github? (Y/n)"
read should_upload
if [ "${should_upload}" = "y" ]; then
if [ "${should_upload}" = "n" ]; then
echo "not uploading"
else
export upload=1
echo "uploading to github when done"
fi
Expand Down
2 changes: 1 addition & 1 deletion build_resources/buildscripts/build_post.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ this_dir=$(dirname $0)
source ${this_dir}/../../../build/github_creds.sh

#echo "Uploading ${prebeta_filename}"
if [ -f "${prebeta_filename}" ] && [ -n "${upload}"]; then
if [ -f "${prebeta_filename}" ] && [ -n "${upload}" ]; then

# curl --progress-bar -X POST "https://${bitbucket_username}:${bitbucket_password}@api.bitbucket.org/2.0/repositories/twocanoes/xcreds/downloads" --form files=@"${prebeta_filename}" > /tmp/curl.log
owner="twocanoes"
Expand Down
12 changes: 6 additions & 6 deletions xCreds.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1440,7 +1440,7 @@
buildSettings = {
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 6344;
CURRENT_PROJECT_VERSION = 6346;
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = UXP6YEHSPW;
FRAMEWORK_SEARCH_PATHS = (
Expand Down Expand Up @@ -1477,7 +1477,7 @@
buildSettings = {
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 6344;
CURRENT_PROJECT_VERSION = 6346;
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = UXP6YEHSPW;
FRAMEWORK_SEARCH_PATHS = (
Expand Down Expand Up @@ -1598,7 +1598,7 @@
CODE_SIGN_ENTITLEMENTS = "XCreds Login Overlay/XCreds_Login_Overlay.entitlements";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 6344;
CURRENT_PROJECT_VERSION = 6346;
DEVELOPMENT_TEAM = UXP6YEHSPW;
ENABLE_HARDENED_RUNTIME = YES;
FRAMEWORK_SEARCH_PATHS = (
Expand Down Expand Up @@ -1635,7 +1635,7 @@
CODE_SIGN_ENTITLEMENTS = "XCreds Login Overlay/XCreds_Login_Overlay.entitlements";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 6344;
CURRENT_PROJECT_VERSION = 6346;
DEVELOPMENT_TEAM = UXP6YEHSPW;
ENABLE_HARDENED_RUNTIME = YES;
FRAMEWORK_SEARCH_PATHS = (
Expand Down Expand Up @@ -1785,7 +1785,7 @@
CODE_SIGN_ENTITLEMENTS = XCreds/xCreds.entitlements;
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 6344;
CURRENT_PROJECT_VERSION = 6346;
DEVELOPMENT_TEAM = UXP6YEHSPW;
ENABLE_HARDENED_RUNTIME = YES;
FRAMEWORK_SEARCH_PATHS = (
Expand Down Expand Up @@ -1827,7 +1827,7 @@
CODE_SIGN_ENTITLEMENTS = XCreds/xCreds.entitlements;
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 6344;
CURRENT_PROJECT_VERSION = 6346;
DEVELOPMENT_TEAM = UXP6YEHSPW;
ENABLE_HARDENED_RUNTIME = YES;
FRAMEWORK_SEARCH_PATHS = (
Expand Down
Binary file not shown.

0 comments on commit cdd59f8

Please sign in to comment.