Skip to content

Commit

Permalink
Merged PR 1241: Update current verion to 1.2.0 #16144
Browse files Browse the repository at this point in the history
Update current verion to 1.2.0 #16144

Related work items: #16144
  • Loading branch information
Mike Richter committed Aug 24, 2017
2 parents 19130eb + a924a14 commit c40fcba
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Change Log
==========


1.1.1
1.2.0
-----------------------
### Enhancements:

Expand All @@ -12,6 +12,7 @@ Change Log
### Changes:

* Updated error messages when attempting to directly process static libraries.
* Xcode 7 is no longer supported.


1.1.0
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# See LICENSE.txt for licensing information

PROJECT_NAME=PPiOS-Rename
NUMERIC_VERSION=1.1.1
NUMERIC_VERSION=1.2.0
VERSION=v$(NUMERIC_VERSION)
PROGRAM_NAME=ppios-rename

Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Supported Platforms

*PPiOS-Rename* supports apps developed for:

* iOS 10, iOS 11
* iOS 9, iOS 10, iOS 11
* iPhone, iPod touch, and iPad
* ARM 32-bit, ARM 64-bit, and x86 Simulator

Expand Down Expand Up @@ -116,7 +116,7 @@ Once you are comfortable using *PPiOS-Rename*, it can be easier to use if you in

10. Expand the phase, and where it says `Type a script or ...`, paste the following script, adjusting for the correct path:

PATH="$PATH:$HOME/Downloads/PPiOS-Rename-v1.1.1"
PATH="$PATH:$HOME/Downloads/PPiOS-Rename-v1.2.0"
[[ "$SDKROOT" == *iPhoneSimulator*.sdk* ]] && sdk="$SDKROOT"
test -z "$sdk" && sdk="$CORRESPONDING_SIMULATOR_SDK_DIR"
test -z "$sdk" && sdk="$CORRESPONDING_SIMULATOR_PLATFORM_DIR/Developer/SDKs/iPhoneSimulator${SDK_VERSION}.sdk"
Expand All @@ -139,7 +139,7 @@ Once you are comfortable using *PPiOS-Rename*, it can be easier to use if you in

17. Paste the following script, again adjusting for the correct path:

PATH="$PATH:$HOME/Downloads/PPiOS-Rename-v1.1.1"
PATH="$PATH:$HOME/Downloads/PPiOS-Rename-v1.2.0"
ppios-rename --obfuscate-sources

18. <a name="renameApplyRenamingScheme"></a>Edit the scheme (or add one) for this new target, renaming the scheme to `Apply Renaming to <original-scheme-name>`.
Expand Down Expand Up @@ -523,7 +523,7 @@ The procedure is as follows:
6. Replace the analyze script (`Analyze Binary` run script phase) with the following to exclude the public types from renaming:

PATH="$PATH:$HOME/Downloads/PPiOS-Rename-v1.1.1"
PATH="$PATH:$HOME/Downloads/PPiOS-Rename-v1.2.0"
[[ "$SDKROOT" == *iPhoneSimulator*.sdk* ]] && sdk="$SDKROOT"
test -z "$sdk" && sdk="$CORRESPONDING_SIMULATOR_SDK_DIR"
test -z "$sdk" && sdk="$CORRESPONDING_SIMULATOR_PLATFORM_DIR/Developer/SDKs/iPhoneSimulator${SDK_VERSION}.sdk"
Expand All @@ -540,7 +540,7 @@ The procedure is as follows:
1. Follow instructions [13-16 in `Project Setup` above](#configureRenaming), applying them to the static library target.
2. The call to `ppios-rename` needs to reference the `symbols.map` file from the WrappingApp project, using the `--symbols-map` option. Use this script for the new Run Script phase (adjusting the path as necessary):

PATH="$PATH:$HOME/Downloads/PPiOS-Rename-v1.1.1"
PATH="$PATH:$HOME/Downloads/PPiOS-Rename-v1.2.0"
ppios-rename --obfuscate-sources --symbols-map ../WrappingApp/symbols.map

3. Follow instruction [18 in `Project Setup` above](#renameApplyRenamingScheme).
Expand Down

0 comments on commit c40fcba

Please sign in to comment.