From 1cb4961c63c64576e7f8c6fc203beedfd0e8fc7e Mon Sep 17 00:00:00 2001 From: Mike Richter Date: Wed, 23 Aug 2017 17:15:33 -0400 Subject: [PATCH 1/2] Update current verion to 1.2.0 #16144 --- CHANGELOG.md | 3 ++- Makefile | 2 +- README.md | 8 ++++---- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 80b6e904..e21db6ce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ Change Log ========== -1.1.1 +1.2.0 ----------------------- ### Enhancements: @@ -12,6 +12,7 @@ Change Log ### Changes: * Updated error messages when attempting to directly process static libraries. +* Xcode 7 and iOS 9 are no longer supported. 1.1.0 diff --git a/Makefile b/Makefile index 219df503..b566936b 100644 --- a/Makefile +++ b/Makefile @@ -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 diff --git a/README.md b/README.md index 17f2aa3a..b4c0e8f5 100644 --- a/README.md +++ b/README.md @@ -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" @@ -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. Edit the scheme (or add one) for this new target, renaming the scheme to `Apply Renaming to `. @@ -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" @@ -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). From a924a14188c98d85e26c4059c93ef6db2e73e002 Mon Sep 17 00:00:00 2001 From: Mike Richter Date: Thu, 24 Aug 2017 13:40:05 -0400 Subject: [PATCH 2/2] Keep iOS 9 support #16144 --- CHANGELOG.md | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e21db6ce..1c6b7047 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,7 +12,7 @@ Change Log ### Changes: * Updated error messages when attempting to directly process static libraries. -* Xcode 7 and iOS 9 are no longer supported. +* Xcode 7 is no longer supported. 1.1.0 diff --git a/README.md b/README.md index b4c0e8f5..5851491a 100644 --- a/README.md +++ b/README.md @@ -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