Files
andros 9e126297ac Groups follow/unfollow: bump to 1.2 and fix App Store version vars
- Groups tab: Follow/Following button per row, driven by #+GROUP: entries
  in the user's social.org. Orphaned groups (followed but not on current
  relay) appear at bottom with a distinct icon and "Not on current relay"
  caption.
- ProfileWriter: addGroup and removeGroup pure string helpers for managing
  #+GROUP: header lines.
- GroupsViewModel: load relay groups + own feed in parallel, merge into
  GroupDisplayItem list with isFollowed state; toggleFollow uses
  UploaderFactory so authentication is handled by the correct uploader.
- GroupsView: Follow button only shown when canFollow (publicFeedURL set);
  uses Button + navigationDestination(item:) instead of NavigationLink to
  avoid the iOS list auto-fire bug.
- Info.plist: CFBundleShortVersionString and CFBundleVersion now use build
  setting variables instead of hardcoded values, fixing App Store upload
  version mismatch.
- Bump MARKETING_VERSION to 1.2, CURRENT_PROJECT_VERSION to 10, and app
  category to Social Networking.
2026-05-16 11:31:30 +02:00

43 lines
1.2 KiB
Plaintext

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>$(DEVELOPMENT_LANGUAGE)</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>Org Social</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>$(MARKETING_VERSION)</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>ITSAppUsesNonExemptEncryption</key>
<false/>
<key>LSApplicationCategoryType</key>
<string>public.app-category.socialnetworking</string>
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<false/>
</dict>
<key>UIApplicationSceneManifest</key>
<dict>
<key>UIApplicationSupportsMultipleScenes</key>
<false/>
</dict>
<key>UILaunchStoryboardName</key>
<string></string>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
</array>
</dict>
</plist>