Overview
Comment: | iOS: Restore the bundle identifier
This should not have been changed, as that would result in a new app on |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
5d6baa0a57580be88cbc0569e44441d2 |
User & Date: | js on 2021-03-14 00:05:48 |
Other Links: | manifest | tags |
Context
2021-03-14
| ||
00:16 | iOS: Adjust to ObjFW changes check-in: 604513acba user: js tags: trunk | |
00:05 | iOS: Restore the bundle identifier check-in: 5d6baa0a57 user: js tags: trunk | |
2020-09-09
| ||
02:06 | Adjust to ObjFW changes check-in: 020bc36b4a user: js tags: trunk | |
Changes
Modified iOS/CryptoPassphrase.xcodeproj/project.pbxproj from [65ce5beb52] to [8846ec3382].
︙ | ︙ | |||
377 378 379 380 381 382 383 | FRAMEWORK_SEARCH_PATHS = ( "$(inherited)", "$(PROJECT_DIR)/ObjFW/Frameworks", ); HEADER_SEARCH_PATHS = ObjFW/include; INFOPLIST_FILE = Info.plist; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; | > | | 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 | FRAMEWORK_SEARCH_PATHS = ( "$(inherited)", "$(PROJECT_DIR)/ObjFW/Frameworks", ); HEADER_SEARCH_PATHS = ObjFW/include; INFOPLIST_FILE = Info.plist; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; MARKETING_VERSION = 1.3; PRODUCT_BUNDLE_IDENTIFIER = "zone.heap.scrypt-pwgen"; PRODUCT_NAME = "$(TARGET_NAME)"; SWIFT_OBJC_BRIDGING_HEADER = bridge.h; SWIFT_OPTIMIZATION_LEVEL = "-Onone"; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; }; name = Debug; |
︙ | ︙ | |||
402 403 404 405 406 407 408 | FRAMEWORK_SEARCH_PATHS = ( "$(inherited)", "$(PROJECT_DIR)/ObjFW/Frameworks", ); HEADER_SEARCH_PATHS = ObjFW/include; INFOPLIST_FILE = Info.plist; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; | > | | 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 | FRAMEWORK_SEARCH_PATHS = ( "$(inherited)", "$(PROJECT_DIR)/ObjFW/Frameworks", ); HEADER_SEARCH_PATHS = ObjFW/include; INFOPLIST_FILE = Info.plist; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; MARKETING_VERSION = 1.3; PRODUCT_BUNDLE_IDENTIFIER = "zone.heap.scrypt-pwgen"; PRODUCT_NAME = "$(TARGET_NAME)"; SWIFT_OBJC_BRIDGING_HEADER = bridge.h; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; }; name = Release; }; |
︙ | ︙ |
Modified iOS/Info.plist from [60cd019a28] to [80aae73f38].
︙ | ︙ | |||
13 14 15 16 17 18 19 | <key>CFBundleInfoDictionaryVersion</key> <string>6.0</string> <key>CFBundleName</key> <string>$(PRODUCT_NAME)</string> <key>CFBundlePackageType</key> <string>APPL</string> <key>CFBundleShortVersionString</key> | | | 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | <key>CFBundleInfoDictionaryVersion</key> <string>6.0</string> <key>CFBundleName</key> <string>$(PRODUCT_NAME)</string> <key>CFBundlePackageType</key> <string>APPL</string> <key>CFBundleShortVersionString</key> <string>$(MARKETING_VERSION)</string> <key>CFBundleVersion</key> <string>1</string> <key>LSRequiresIPhoneOS</key> <true/> <key>UIFileSharingEnabled</key> <true/> <key>UILaunchStoryboardName</key> |
︙ | ︙ |