Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions MacOS/ProxyBridge/ProxyBridge.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@
"$(inherited)",
"@executable_path/../Frameworks",
);
MARKETING_VERSION = 3.0;
MARKETING_VERSION = 3.1;
PRODUCT_BUNDLE_IDENTIFIER = com.interceptsuite.ProxyBridge;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down Expand Up @@ -445,7 +445,7 @@
"$(inherited)",
"@executable_path/../Frameworks",
);
MARKETING_VERSION = 3.0;
MARKETING_VERSION = 3.1;
PRODUCT_BUNDLE_IDENTIFIER = com.interceptsuite.ProxyBridge;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down Expand Up @@ -487,7 +487,7 @@
"@executable_path/../Frameworks",
"@executable_path/../../../../Frameworks",
);
MARKETING_VERSION = 3.0;
MARKETING_VERSION = 3.1;
PRODUCT_BUNDLE_IDENTIFIER = com.interceptsuite.ProxyBridge.extension;
PRODUCT_NAME = "$(inherited)";
REGISTER_APP_GROUPS = YES;
Expand Down Expand Up @@ -528,7 +528,7 @@
"@executable_path/../Frameworks",
"@executable_path/../../../../Frameworks",
);
MARKETING_VERSION = 3.0;
MARKETING_VERSION = 3.1;
PRODUCT_BUNDLE_IDENTIFIER = com.interceptsuite.ProxyBridge.extension;
PRODUCT_NAME = "$(inherited)";
REGISTER_APP_GROUPS = YES;
Expand Down
8 changes: 4 additions & 4 deletions MacOS/ProxyBridge/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ fi
PROJECT_NAME="ProxyBridge"
SCHEME_NAME="ProxyBridge"
OUTPUT_DIR="$SCRIPT_DIR/output"
PKG_NAME="ProxyBridge-v3.0-Universal-Installer.pkg"
PKG_NAME="ProxyBridge-v3.1-Universal-Installer.pkg"
PKG_PATH="$OUTPUT_DIR/$PKG_NAME"
ARCHIVE_PATH="$SCRIPT_DIR/build/${PROJECT_NAME}.xcarchive"
EXPORT_PATH="$SCRIPT_DIR/build/Export"
Expand Down Expand Up @@ -110,7 +110,7 @@ cp -R "$EXPORT_PATH/$APP_NAME" "$COMPONENT_DIR/"
pkgbuild \
--root "$COMPONENT_DIR" \
--identifier "com.interceptsuite.${PROJECT_NAME}" \
--version "1.0.0" \
--version "3.1.0" \
--install-location "/Applications" \
"$TEMP_PKG"

Expand All @@ -125,7 +125,7 @@ cat > "$DISTRIBUTION_FILE" << 'EOF'
<title>ProxyBridge</title>
<license file="LICENSE"/>
<pkg-ref id="com.interceptsuite.ProxyBridge"/>
<options customize="never" require-scripts="false"/>
<options customize="never" require-scripts="false" hostArchitectures="arm64,x86_64"/>
<choices-outline>
<line choice="default">
<line choice="com.interceptsuite.ProxyBridge"/>
Expand All @@ -135,7 +135,7 @@ cat > "$DISTRIBUTION_FILE" << 'EOF'
<choice id="com.interceptsuite.ProxyBridge" visible="false">
<pkg-ref id="com.interceptsuite.ProxyBridge"/>
</choice>
<pkg-ref id="com.interceptsuite.ProxyBridge" version="1.0.0" onConclusion="none">temp.pkg</pkg-ref>
<pkg-ref id="com.interceptsuite.ProxyBridge" version="3.1.0" onConclusion="none">temp.pkg</pkg-ref>
</installer-gui-script>
EOF

Expand Down