Skip to content
This repository has been archived by the owner on Nov 10, 2019. It is now read-only.

Commit

Permalink
1.3.1
Browse files Browse the repository at this point in the history
Corrected build version, took build phase script from AutoDMG
  • Loading branch information
macmule committed Nov 21, 2015
1 parent 058e12b commit b80ec97
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion AutoCasperNBI.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "# xcode-build-bump.sh\n# @desc Auto-increment the build number every time the project is run.\n# @usage\n# 1. Select: your Target in Xcode\n# 2. Select: Build Phases Tab\n# 3. Select: Add Build Phase -> Add Run Script\n# 4. Paste code below in to new \"Run Script\" section\n# 5. Drag the \"Run Script\" below \"Link Binaries With Libraries\"\n# 6. Insure that your starting build number is set to a whole integer and not a float (e.g. 1, not 1.0)\n\nbuildNumber=$(/usr/libexec/PlistBuddy -c \"Print CFBundleVersion\" \"${PROJECT_DIR}/${INFOPLIST_FILE}\")\nbuildNumber=$(($buildNumber + 1))\n/usr/libexec/PlistBuddy -c \"Set :CFBundleVersion $buildNumber\" \"${PROJECT_DIR}/${INFOPLIST_FILE}\"";
shellScript = "#!/bin/bash\n#\n# Sets the version string to a monotonically increased string, based on\n# the number of git commits.\n\nset -o errexit\nset -o nounset\n\nVERSION=$(git --git-dir=\"$PROJECT_DIR/.git\" --work-tree=\"$PROJECT_DIR\" log | grep '^commit' | wc -l)\n/usr/libexec/PlistBuddy -c \"Set :CFBundleVersion $VERSION\" \"$TARGET_BUILD_DIR/$INFOPLIST_PATH\"";
};
/* End PBXShellScriptBuildPhase section */

Expand Down
Binary file not shown.
6 changes: 3 additions & 3 deletions AutoCasperNBI/MainMenu.xib
Original file line number Diff line number Diff line change
Expand Up @@ -2934,12 +2934,12 @@ CA
<rect key="frame" x="207" y="27" width="178" height="22"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
<string key="toolTip">Keyboard Input Language for the NBI. This list is written as per com.apple.HIToolbox requires the keyboards names, even with dodgy capitalisation.</string>
<popUpButtonCell key="cell" type="push" title="US Extended" bezelStyle="rounded" alignment="left" controlSize="small" lineBreakMode="truncatingTail" state="on" borderStyle="borderAndBezel" tag="-2" imageScaling="proportionallyDown" inset="2" selectedItem="jZ5-al-x8e" id="gqa-pz-aIV">
<popUpButtonCell key="cell" type="push" title="Afghan Dari" bezelStyle="rounded" alignment="left" controlSize="small" lineBreakMode="truncatingTail" state="on" borderStyle="borderAndBezel" tag="-2092" imageScaling="proportionallyDown" inset="2" selectedItem="f6g-08-Faz" id="gqa-pz-aIV">
<behavior key="behavior" lightByBackground="YES" lightByGray="YES"/>
<font key="font" metaFont="smallSystem"/>
<menu key="menu" title="OtherViews" id="OuF-Ay-0wN">
<items>
<menuItem title="Afghan Dari" tag="-2092" id="f6g-08-Faz">
<menuItem title="Afghan Dari" state="on" tag="-2092" id="f6g-08-Faz">
<modifierMask key="keyEquivalentModifierMask"/>
</menuItem>
<menuItem title="Afghan Pashto" tag="-2094" id="wab-DG-X6j">
Expand Down Expand Up @@ -3305,7 +3305,7 @@ CA
<menuItem title="U.S." id="Ohp-v6-AWa">
<modifierMask key="keyEquivalentModifierMask"/>
</menuItem>
<menuItem title="US Extended" state="on" tag="-2" id="jZ5-al-x8e">
<menuItem title="US Extended" tag="-2" id="jZ5-al-x8e">
<modifierMask key="keyEquivalentModifierMask"/>
</menuItem>
<menuItem title="USInternational-PC" tag="15000" id="TFM-nR-TuR">
Expand Down

0 comments on commit b80ec97

Please sign in to comment.