mirror of
https://github.com/jeremysrand/ListenerApp.git
synced 2024-12-21 13:29:53 +00:00
Add a missing privacy message to the plist. Map new line to carriage return for the GS.
This commit is contained in:
parent
083c938e0d
commit
52855a1e01
@ -164,7 +164,7 @@ struct ContentView: View {
|
||||
if (commonChars < self.textHeard.count) {
|
||||
stringToSend = String(repeating: "\u{7f}", count: self.textHeard.count - commonChars)
|
||||
}
|
||||
stringToSend.append(contentsOf: latestText.suffix(latestText.count - commonChars))
|
||||
stringToSend.append(contentsOf: latestText.suffix(latestText.count - commonChars).replacingOccurrences(of: "\n", with: "\r"))
|
||||
|
||||
if (stringToSend.count > 0) {
|
||||
// TODO - Handle strings to send that are longer than 64K (doubt that would happen though)
|
||||
|
@ -17,9 +17,11 @@
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.0</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>87</string>
|
||||
<string>93</string>
|
||||
<key>LSRequiresIPhoneOS</key>
|
||||
<true/>
|
||||
<key>NSMicrophoneUsageDescription</key>
|
||||
<string>This app uses the microphone in order to do speech recognition</string>
|
||||
<key>NSSpeechRecognitionUsageDescription</key>
|
||||
<string>The app uses speech recognition to dictate text to your Apple IIgs</string>
|
||||
<key>UIApplicationSceneManifest</key>
|
||||
|
Loading…
Reference in New Issue
Block a user