소스 검색

Merge pull request #1003 from deltachat/prep-1.14.1

prep 1.14.1
bjoern 4 년 전
부모
커밋
45140f7540
3개의 변경된 파일35개의 추가작업 그리고 18개의 파일을 삭제
  1. 14 0
      CHANGELOG.md
  2. 8 8
      deltachat-ios.xcodeproj/project.pbxproj
  3. 13 10
      deltachat-ios/Controller/ChatListController.swift

+ 14 - 0
CHANGELOG.md

@@ -1,5 +1,19 @@
 # Delta Chat iOS Changelog
 
+## 1.14.1
+2020-11
+
+* new swipe-to-reply option
+* show impact of the "Delete messages from server" option more clearly
+* fix: do not fetch from INBOX if "Watch Inbox folder" is disabled
+  and do not fetch messages arriving before re-enabling
+* fix: do not use STARTTLS when PLAIN connection is requested
+  and do not allow downgrade if STARTTLS is not available
+* fix: make "nothing found" hints always visible
+* fix: update selected avatars immediately
+* update translations
+
+
 ## 1.14.0
 2020-11
 

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

@@ -1436,13 +1436,13 @@
 				CODE_SIGN_ENTITLEMENTS = DcShare/DcShare.entitlements;
 				CODE_SIGN_IDENTITY = "iPhone Developer";
 				CODE_SIGN_STYLE = Automatic;
-				CURRENT_PROJECT_VERSION = 44;
+				CURRENT_PROJECT_VERSION = 45;
 				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.14.0;
+				MARKETING_VERSION = 1.14.1;
 				MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
 				MTL_FAST_MATH = YES;
 				PRODUCT_BUNDLE_IDENTIFIER = chat.delta.DcShare;
@@ -1461,13 +1461,13 @@
 				CODE_SIGN_ENTITLEMENTS = DcShare/DcShare.entitlements;
 				CODE_SIGN_IDENTITY = "iPhone Developer";
 				CODE_SIGN_STYLE = Automatic;
-				CURRENT_PROJECT_VERSION = 44;
+				CURRENT_PROJECT_VERSION = 45;
 				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.14.0;
+				MARKETING_VERSION = 1.14.1;
 				MTL_FAST_MATH = YES;
 				PRODUCT_BUNDLE_IDENTIFIER = chat.delta.DcShare;
 				PRODUCT_NAME = "Delta Chat";
@@ -1601,7 +1601,7 @@
 				CODE_SIGN_ENTITLEMENTS = "deltachat-ios/deltachat-ios.entitlements";
 				CODE_SIGN_IDENTITY = "iPhone Developer";
 				CODE_SIGN_STYLE = Automatic;
-				CURRENT_PROJECT_VERSION = 44;
+				CURRENT_PROJECT_VERSION = 45;
 				DEVELOPMENT_TEAM = 8Y86453UA8;
 				ENABLE_BITCODE = NO;
 				HEADER_SEARCH_PATHS = (
@@ -1618,7 +1618,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.14.0;
+				MARKETING_VERSION = 1.14.1;
 				OTHER_CFLAGS = (
 					"$(inherited)",
 					"-isystem",
@@ -1675,7 +1675,7 @@
 				CODE_SIGN_ENTITLEMENTS = "deltachat-ios/deltachat-ios.entitlements";
 				CODE_SIGN_IDENTITY = "iPhone Developer";
 				CODE_SIGN_STYLE = Automatic;
-				CURRENT_PROJECT_VERSION = 44;
+				CURRENT_PROJECT_VERSION = 45;
 				DEVELOPMENT_TEAM = 8Y86453UA8;
 				ENABLE_BITCODE = NO;
 				HEADER_SEARCH_PATHS = (
@@ -1692,7 +1692,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.14.0;
+				MARKETING_VERSION = 1.14.1;
 				OTHER_CFLAGS = (
 					"$(inherited)",
 					"-isystem",

+ 13 - 10
deltachat-ios/Controller/ChatListController.swift

@@ -76,16 +76,19 @@ 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 = DcMsg(viewType: DC_MSG_TEXT)
-        //msg.text = "new Delta Chat 1.10 features at a glance:\n"
-        //         + "\n"
-        //         + "⚡ faster\n"
-        //         + "💕 share to Delta Chat\n"
-        //         + "🤫 mute chats\n"
-        //         + "🖼️ reworked gallery\n"
-        //         + "\n"
-        //         + "more details at https://delta.chat/en/2020-06-24-releases"
-        //dcContext.addDeviceMessage(label: "update_1_10k_ios", msg: msg)
+        let msg = DcMsg(viewType: DC_MSG_TEXT)
+        msg.text = "Some highlights of the 1.14 update:\n"
+            + "\n"
+            + "🧹 Swipe to reply: "
+            + "To answer a concrete message, just swipe it right (not here! you cannot answer here :) "
+            + "You\'ll see a quote above the compose line and can continue writing your message as usual.\n"
+            + "\n"
+            + "🔥 Disappearing messages - the time has come :) "
+            + "Any chat can now be configured to delete sent and received messages after some time. "
+            + "Just select \"Disappearing messages\" from the chat\'s profile (again: not here)\n"
+            + "\n"
+            + "🎃 Finally, we\'ve again frightened many bugs! Lots were so scared, they won\'t come back."
+        dcContext.addDeviceMessage(label: "update_1_14c_ios", msg: msg)
 
         // create view
         updateTitle()