Skip to content
Merged
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Fixed

1. Add missing NSLocationAlwaysAndWhenInUseUsageDescription purpose string in Info.plist for iOS
Copy link
Preview

Copilot AI May 23, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[nitpick] The changelog uses a numbered list here but other entries may use bullet points. For consistency, consider switching to a hyphenated list (e.g., "- Add missing ...").

Copilot uses AI. Check for mistakes.


## [0.101.1] - 2025-03-21

### Fixed
Expand Down
2 changes: 2 additions & 0 deletions ios/App/App/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@
<string>Uses Bluetooth to connect and interact with GoPro Camera</string>
<key>NSCameraUsageDescription</key>
<string>Grant camera permission to allow the app to take images and videos of the unique moments that you want to keep.</string>
<key>NSLocationAlwaysAndWhenInUseUsageDescription</key>
<string>Grant GPS permission to allow the app to append location information to your photo automatically so that you or anyone who you share the photo with will know where the photo is taken.</string>
<key>NSLocationWhenInUseUsageDescription</key>
<string>Grant GPS permission when the app is in use to allow the app to append location information to your photo automatically so that you or anyone who you share the photo with will know where the photo is taken.</string>
Comment on lines +49 to 51
Copy link
Preview

Copilot AI May 23, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[nitpick] The phrase "anyone who you share the photo with" is slightly awkward. Consider revising to "anyone you share the photo with" for smoother grammar.

Suggested change
<string>Grant GPS permission to allow the app to append location information to your photo automatically so that you or anyone who you share the photo with will know where the photo is taken.</string>
<key>NSLocationWhenInUseUsageDescription</key>
<string>Grant GPS permission when the app is in use to allow the app to append location information to your photo automatically so that you or anyone who you share the photo with will know where the photo is taken.</string>
<string>Grant GPS permission to allow the app to append location information to your photo automatically so that you or anyone you share the photo with will know where the photo is taken.</string>
<key>NSLocationWhenInUseUsageDescription</key>
<string>Grant GPS permission when the app is in use to allow the app to append location information to your photo automatically so that you or anyone you share the photo with will know where the photo is taken.</string>

Copilot uses AI. Check for mistakes.

<key>NSMicrophoneUsageDescription</key>
Expand Down
Loading