ObjFW  Check-in [d9f6da2eab]

Overview
Comment:Change Info.plists to make the App Store happy
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: d9f6da2eab8b030601b8f59e355841e3eefe383144ae53bea7064e8bdd63d51d
User & Date: js on 2017-10-19 23:11:49
Other Links: manifest | tags
Context
2017-10-20
20:22
Update buildsys check-in: 5a7cde8a42 user: js tags: trunk
2017-10-19
23:11
Change Info.plists to make the App Store happy check-in: d9f6da2eab user: js tags: trunk
22:21
Update buildsys check-in: 9aa0c20c41 user: js tags: trunk
Changes

Modified configure.ac from [abcd477ebc] to [1919a82c3d].

1



2
3
4
5
6
7
8
AC_INIT(ObjFW, 0.91-dev, js@heap.zone)



BUILDSYS_INIT

AS_IF([test configure.ac -nt configure], [
	AC_MSG_ERROR([configure.ac is newer than configure! Run autoreconf!])
])

AC_CONFIG_SRCDIR(src)

>
>
>







1
2
3
4
5
6
7
8
9
10
11
AC_INIT(ObjFW, 0.91-dev, js@heap.zone)
dnl This may only be set to 0.91 once 0.91 is released
AC_SUBST(BUNDLE_VERSION, 0.90.9900)
AC_SUBST(BUNDLE_SHORT_VERSION, 0.90)
BUILDSYS_INIT

AS_IF([test configure.ac -nt configure], [
	AC_MSG_ERROR([configure.ac is newer than configure! Run autoreconf!])
])

AC_CONFIG_SRCDIR(src)

Modified src/Info.plist.in from [a61eb805c6] to [125685d722].

9
10
11
12
13
14
15
16
17
18


19
20
	<key>CFBundleIdentifier</key>
	<string>zone.heap.objfw</string>
	<key>CFBundleInfoDictionaryVersion</key>
	<string>6.0</string>
	<key>CFBundlePackageType</key>
	<string>FMWK</string>
	<key>CFBundleVersion</key>
	<string>@PACKAGE_VERSION@</string>
	<key>CFBundleShortVersionString</key>
	<string>@PACKAGE_VERSION@</string>


</dict>
</plist>







|

|
>
>


9
10
11
12
13
14
15
16
17
18
19
20
21
22
	<key>CFBundleIdentifier</key>
	<string>zone.heap.objfw</string>
	<key>CFBundleInfoDictionaryVersion</key>
	<string>6.0</string>
	<key>CFBundlePackageType</key>
	<string>FMWK</string>
	<key>CFBundleVersion</key>
	<string>@BUNDLE_VERSION@</string>
	<key>CFBundleShortVersionString</key>
	<string>@BUNDLE_SHORT_VERSION@</string>
	<key>MinimumOSVersion</key>
	<string>9.0</string>
</dict>
</plist>

Modified src/bridge/Info.plist.in from [a5d863afa6] to [b45cb6eacb].

9
10
11
12
13
14
15
16
17
18


19
20
	<key>CFBundleIdentifier</key>
	<string>zone.heap.objfw.bridge</string>
	<key>CFBundleInfoDictionaryVersion</key>
	<string>6.0</string>
	<key>CFBundlePackageType</key>
	<string>FMWK</string>
	<key>CFBundleVersion</key>
	<string>@PACKAGE_VERSION@</string>
	<key>CFBundleShortVersionString</key>
	<string>@PACKAGE_VERSION@</string>


</dict>
</plist>







|

|
>
>


9
10
11
12
13
14
15
16
17
18
19
20
21
22
	<key>CFBundleIdentifier</key>
	<string>zone.heap.objfw.bridge</string>
	<key>CFBundleInfoDictionaryVersion</key>
	<string>6.0</string>
	<key>CFBundlePackageType</key>
	<string>FMWK</string>
	<key>CFBundleVersion</key>
	<string>@BUNDLE_VERSION@</string>
	<key>CFBundleShortVersionString</key>
	<string>@BUNDLE_SHORT_VERSION@</string>
	<key>MinimumOSVersion</key>
	<string>9.0</string>
</dict>
</plist>