Browse Source

prepare 1.32.0 (#1657)

* update changelog for 1.32.0

* bump version to 1.32.0

* add 1.32 device message

* add 'search in help' to device message

* fix typo

* remove the little bold accessibility statement
bjoern 2 năm trước cách đây
mục cha
commit
2c3c284d52

+ 3 - 1
CHANGELOG.md

@@ -1,11 +1,13 @@
 # Delta Chat iOS Changelog
 
-## UNRELEASED
+## v1.32.0
 2022-07
 
+* show post address in mailinglist's profile
 * AEAP: show confirmation dialog before changing e-mail address
 * AEAP: add a device message after changing e-mail address
 * AEAP replaces e-mail addresses only in verified groups for now
+* fix openening experimental encrypted accounts
 * fix: handle updates for not yet downloaded webxdc instances
 * fix: better information on several configuration and non-delivery errors
 * fix accessibility hint in multi-select chat list title

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

@@ -1748,13 +1748,13 @@
 				CODE_SIGN_ENTITLEMENTS = DcShare/DcShare.entitlements;
 				CODE_SIGN_IDENTITY = "iPhone Developer";
 				CODE_SIGN_STYLE = Automatic;
-				CURRENT_PROJECT_VERSION = 74;
+				CURRENT_PROJECT_VERSION = 75;
 				DEVELOPMENT_TEAM = 8Y86453UA8;
 				ENABLE_BITCODE = NO;
 				INFOPLIST_FILE = DcShare/Info.plist;
 				IPHONEOS_DEPLOYMENT_TARGET = 11.0;
 				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
-				MARKETING_VERSION = 1.31.0;
+				MARKETING_VERSION = 1.32.0;
 				MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
 				MTL_FAST_MATH = YES;
 				PRODUCT_BUNDLE_IDENTIFIER = chat.delta.DcShare;
@@ -1773,13 +1773,13 @@
 				CODE_SIGN_ENTITLEMENTS = DcShare/DcShare.entitlements;
 				CODE_SIGN_IDENTITY = "iPhone Developer";
 				CODE_SIGN_STYLE = Automatic;
-				CURRENT_PROJECT_VERSION = 74;
+				CURRENT_PROJECT_VERSION = 75;
 				DEVELOPMENT_TEAM = 8Y86453UA8;
 				ENABLE_BITCODE = NO;
 				INFOPLIST_FILE = DcShare/Info.plist;
 				IPHONEOS_DEPLOYMENT_TARGET = 11.0;
 				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
-				MARKETING_VERSION = 1.31.0;
+				MARKETING_VERSION = 1.32.0;
 				MTL_FAST_MATH = YES;
 				PRODUCT_BUNDLE_IDENTIFIER = chat.delta.DcShare;
 				PRODUCT_NAME = "Delta Chat";
@@ -1913,7 +1913,7 @@
 				CODE_SIGN_ENTITLEMENTS = "deltachat-ios/deltachat-ios.entitlements";
 				CODE_SIGN_IDENTITY = "iPhone Developer";
 				CODE_SIGN_STYLE = Automatic;
-				CURRENT_PROJECT_VERSION = 74;
+				CURRENT_PROJECT_VERSION = 75;
 				DEVELOPMENT_TEAM = 8Y86453UA8;
 				ENABLE_BITCODE = NO;
 				HEADER_SEARCH_PATHS = (
@@ -1930,7 +1930,7 @@
 					"$(PROJECT_DIR)/deltachat-ios/libraries/deltachat-core-rust/target/universal/release",
 					"$(PROJECT_DIR)/deltachat-ios/libraries/deltachat-core-rust/target/universal/debug",
 				);
-				MARKETING_VERSION = 1.31.0;
+				MARKETING_VERSION = 1.32.0;
 				OTHER_CFLAGS = (
 					"$(inherited)",
 					"-isystem",
@@ -1987,7 +1987,7 @@
 				CODE_SIGN_ENTITLEMENTS = "deltachat-ios/deltachat-ios.entitlements";
 				CODE_SIGN_IDENTITY = "iPhone Developer";
 				CODE_SIGN_STYLE = Automatic;
-				CURRENT_PROJECT_VERSION = 74;
+				CURRENT_PROJECT_VERSION = 75;
 				DEVELOPMENT_TEAM = 8Y86453UA8;
 				ENABLE_BITCODE = NO;
 				HEADER_SEARCH_PATHS = (
@@ -2004,7 +2004,7 @@
 					"$(PROJECT_DIR)/deltachat-ios/libraries/deltachat-core-rust/target/universal/release",
 					"$(PROJECT_DIR)/deltachat-ios/libraries/deltachat-core-rust/target/universal/debug",
 				);
-				MARKETING_VERSION = 1.31.0;
+				MARKETING_VERSION = 1.32.0;
 				OTHER_CFLAGS = (
 					"$(inherited)",
 					"-isystem",

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

@@ -101,9 +101,13 @@ 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 = String.localized("update_1_30")
-        //dcContext.addDeviceMessage(label: "update_1_30a_ios", msg: msg)
+        let msg = dcContext.newMessage(viewType: DC_MSG_TEXT)
+        msg.text = "1.32 Highlights: ✨\n\n"
+            +   "• Multi-select in chat list\n"
+            +   "• Reply privately\n"
+            +   "• Search in full message view\n"
+            +   "• Search in help"
+        dcContext.addDeviceMessage(label: "update_1_32m_ios", msg: msg)
     }
 
     override func willMove(toParent parent: UIViewController?) {