Skip to content

Commit c40fcba

Browse files
author
Mike Richter
committed
Merged PR 1241: Update current verion to 1.2.0 #16144
Update current verion to 1.2.0 #16144 Related work items: #16144
2 parents 19130eb + a924a14 commit c40fcba

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Change Log
22
==========
33

44

5-
1.1.1
5+
1.2.0
66
-----------------------
77
### Enhancements:
88

@@ -12,6 +12,7 @@ Change Log
1212
### Changes:
1313

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

1617

1718
1.1.0

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# See LICENSE.txt for licensing information
33

44
PROJECT_NAME=PPiOS-Rename
5-
NUMERIC_VERSION=1.1.1
5+
NUMERIC_VERSION=1.2.0
66
VERSION=v$(NUMERIC_VERSION)
77
PROGRAM_NAME=ppios-rename
88

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Supported Platforms
4747

4848
*PPiOS-Rename* supports apps developed for:
4949

50-
* iOS 10, iOS 11
50+
* iOS 9, iOS 10, iOS 11
5151
* iPhone, iPod touch, and iPad
5252
* ARM 32-bit, ARM 64-bit, and x86 Simulator
5353

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

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

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

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

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

145145
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>`.
@@ -523,7 +523,7 @@ The procedure is as follows:
523523
524524
6. Replace the analyze script (`Analyze Binary` run script phase) with the following to exclude the public types from renaming:
525525

526-
PATH="$PATH:$HOME/Downloads/PPiOS-Rename-v1.1.1"
526+
PATH="$PATH:$HOME/Downloads/PPiOS-Rename-v1.2.0"
527527
[[ "$SDKROOT" == *iPhoneSimulator*.sdk* ]] && sdk="$SDKROOT"
528528
test -z "$sdk" && sdk="$CORRESPONDING_SIMULATOR_SDK_DIR"
529529
test -z "$sdk" && sdk="$CORRESPONDING_SIMULATOR_PLATFORM_DIR/Developer/SDKs/iPhoneSimulator${SDK_VERSION}.sdk"
@@ -540,7 +540,7 @@ The procedure is as follows:
540540
1. Follow instructions [13-16 in `Project Setup` above](#configureRenaming), applying them to the static library target.
541541
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):
542542

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

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

0 commit comments

Comments
 (0)