Преглед на файлове

prepare 1.38.2 (#1908)

* update CHANGELOG for 1.38.2

* localize device message

* bump version to 1.38.2
bjoern преди 1 година
родител
ревизия
42e8fca435
променени са 3 файла, в които са добавени 21 реда и са изтрити 15 реда
  1. 11 0
      CHANGELOG.md
  2. 8 8
      deltachat-ios.xcodeproj/project.pbxproj
  3. 2 7
      deltachat-ios/Controller/ChatListController.swift

+ 11 - 0
CHANGELOG.md

@@ -1,5 +1,16 @@
 # Delta Chat iOS Changelog
 
+## v1.38.2
+2023-06
+
+* improve group membership consistency
+* fix verification issues because of email addresses compared case-sensitive sometimes
+* fix empty lines in HTML view
+* fix empty links in HTML view
+* update translations
+* update to core117.0
+
+
 ## v1.37.0 Testflight
 2023-06
 

+ 8 - 8
deltachat-ios.xcodeproj/project.pbxproj

@@ -1816,7 +1816,7 @@
 				CODE_SIGN_ENTITLEMENTS = DcShare/DcShare.entitlements;
 				CODE_SIGN_IDENTITY = "iPhone Developer";
 				CODE_SIGN_STYLE = Automatic;
-				CURRENT_PROJECT_VERSION = 89;
+				CURRENT_PROJECT_VERSION = 90;
 				DEVELOPMENT_TEAM = 8Y86453UA8;
 				ENABLE_BITCODE = NO;
 				FRAMEWORK_SEARCH_PATHS = (
@@ -1831,7 +1831,7 @@
 					"@executable_path/Frameworks",
 					"@executable_path/../../Frameworks",
 				);
-				MARKETING_VERSION = 1.37.0;
+				MARKETING_VERSION = 1.38.2;
 				MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
 				MTL_FAST_MATH = YES;
 				OTHER_CFLAGS = (
@@ -1862,7 +1862,7 @@
 				CODE_SIGN_ENTITLEMENTS = DcShare/DcShare.entitlements;
 				CODE_SIGN_IDENTITY = "iPhone Developer";
 				CODE_SIGN_STYLE = Automatic;
-				CURRENT_PROJECT_VERSION = 89;
+				CURRENT_PROJECT_VERSION = 90;
 				DEVELOPMENT_TEAM = 8Y86453UA8;
 				ENABLE_BITCODE = NO;
 				FRAMEWORK_SEARCH_PATHS = (
@@ -1877,7 +1877,7 @@
 					"@executable_path/Frameworks",
 					"@executable_path/../../Frameworks",
 				);
-				MARKETING_VERSION = 1.37.0;
+				MARKETING_VERSION = 1.38.2;
 				MTL_FAST_MATH = YES;
 				OTHER_CFLAGS = (
 					"$(inherited)",
@@ -2028,7 +2028,7 @@
 				CODE_SIGN_ENTITLEMENTS = "deltachat-ios/deltachat-ios.entitlements";
 				CODE_SIGN_IDENTITY = "iPhone Developer";
 				CODE_SIGN_STYLE = Automatic;
-				CURRENT_PROJECT_VERSION = 89;
+				CURRENT_PROJECT_VERSION = 90;
 				DEVELOPMENT_TEAM = 8Y86453UA8;
 				ENABLE_BITCODE = NO;
 				HEADER_SEARCH_PATHS = (
@@ -2047,7 +2047,7 @@
 					"$(PROJECT_DIR)/deltachat-ios/libraries/deltachat-core-rust/deltachat-ffi",
 					"$(PROJECT_DIR)/deltachat-ios/libraries",
 				);
-				MARKETING_VERSION = 1.37.0;
+				MARKETING_VERSION = 1.38.2;
 				OTHER_CFLAGS = (
 					"$(inherited)",
 					"-isystem",
@@ -2101,7 +2101,7 @@
 				CODE_SIGN_ENTITLEMENTS = "deltachat-ios/deltachat-ios.entitlements";
 				CODE_SIGN_IDENTITY = "iPhone Developer";
 				CODE_SIGN_STYLE = Automatic;
-				CURRENT_PROJECT_VERSION = 89;
+				CURRENT_PROJECT_VERSION = 90;
 				DEVELOPMENT_TEAM = 8Y86453UA8;
 				ENABLE_BITCODE = NO;
 				HEADER_SEARCH_PATHS = (
@@ -2120,7 +2120,7 @@
 					"$(PROJECT_DIR)/deltachat-ios/libraries/deltachat-core-rust/deltachat-ffi",
 					"$(PROJECT_DIR)/deltachat-ios/libraries",
 				);
-				MARKETING_VERSION = 1.37.0;
+				MARKETING_VERSION = 1.38.2;
 				OTHER_CFLAGS = (
 					"$(inherited)",
 					"-isystem",

+ 2 - 7
deltachat-ios/Controller/ChatListController.swift

@@ -135,13 +135,8 @@ class ChatListController: UITableViewController {
         // update messages - for new messages, do not reuse or modify strings but create new ones.
         // it is not needed to keep all past update messages, however, when deleted, also the strings should be deleted.
         let msg = dcContext.newMessage(viewType: DC_MSG_TEXT)
-        msg.text = "1.37 is out:\n\n"
-            +  "🖼🔍 Ever searching for an image and could not remember the chat? Then the \"All Media\" button is yours!\n\n"
-            +   "🧹 \"Clear Chat\" from the profiles\n\n"
-            +   "📎 Removed upper size limit of attachments\n\n"
-            +   "🗜️ PNG images (screenshots!) are now compressed as well\n\n"
-            +   "... and more at https://get.delta.chat/#changelogs"
-        dcContext.addDeviceMessage(label: "update_1_37b_ios", msg: msg)
+        msg.text = String.localizedStringWithFormat(String.localized("update_1_38_ios"), "https://get.delta.chat/#changelogs")
+        dcContext.addDeviceMessage(label: "update_1_38b_ios", msg: msg)
     }
 
     override func willMove(toParent parent: UIViewController?) {