Rebranded the app for iOS

This commit is contained in:
Matheus Gomes
2025-06-09 19:26:12 +02:00
committed by Konstantin Pastbin
parent 51b669cfd1
commit d4e1d53c40
85 changed files with 506 additions and 1309 deletions

View File

@@ -23,7 +23,7 @@ final class MailComposer: NSObject {
func body() -> String {
let appInfo = AppInfo.shared()
return String(format: "\n\n\n\n- %@ (%@)\n- Organic Maps %@-%@\n- %@-%@\n- %@\n",
return String(format: "\n\n\n\n- %@ (%@)\n- CoMaps %@-%@\n- %@-%@\n- %@\n",
appInfo.deviceModel, UIDevice.current.systemVersion,
appInfo.bundleVersion, appInfo.buildNumber,
Locale.current.languageCode ?? "",
@@ -35,7 +35,7 @@ final class MailComposer: NSObject {
UIApplication.shared.hideLoadingOverlay {
sendEmailWith(subject: subject(),
body: body(),
toRecipients: [SocialMedia.organicMapsEmail.link],
toRecipients: [SocialMedia.CoMapsEmail.link],
attachmentFileURL: logFileURL)
}
}