Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

prepare 1.52.2 #2574

Merged
merged 3 commits into from
Jan 31, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
# Delta Chat iOS Changelog

## Unreleased
## v1.52.2
2025-01

- Add option to "Save" a message to the messages' context menu (#2527)
- Saved messages are marked by a little star (#2527)
- In the "Saved Messages" chat, messages are shown in context and have an option to go to the original (#2527)
- New group consistency algorithm (#2564)
- The app now requires less storage deduplicating newly received/sent files (#2564)
- Show 'unconnected' and 'updating' states in account switcher (#2553)
- Show 'unconnected' and 'updating' states in profile switcher (#2553)
- Add 'Paste from Clipboard' to onboarding QR code scanners (#2559)
- Detect Stickers when dropped, pasted or picked from Gallery (#2535)
- Modernize menus (#2545, #2558)
Expand All @@ -16,7 +17,7 @@
- Fix adding sticker from keyboard on iOS 18 (#2569)
- Fix: In 'View Log', hide keyboard when scrolling down (#2541)
- Fix: Experimental location sharing now ends at the specified interval even if you don't move (#2537)
- Fix crash on account deletion (#2554)
- Fix crash on profile deletion (#2554)
- Fix hiding of the bottom bar when archive is opened (#2560)
- Fix: Show error message when voice recording permissions are missing (#2555)
- Fix rare issue where some messages are not synced between multiple devices (#2564)
Expand Down
8 changes: 4 additions & 4 deletions deltachat-ios.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -2166,7 +2166,7 @@
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
CODE_SIGN_IDENTITY = "iPhone Developer";
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 120;
CURRENT_PROJECT_VERSION = 121;
DEBUG_INFORMATION_FORMAT = dwarf;
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
Expand All @@ -2186,7 +2186,7 @@
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
MARKETING_VERSION = 1.50.5;
MARKETING_VERSION = 1.52.2;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos;
Expand Down Expand Up @@ -2231,7 +2231,7 @@
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
CODE_SIGN_IDENTITY = "iPhone Developer";
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 120;
CURRENT_PROJECT_VERSION = 121;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
Expand All @@ -2245,7 +2245,7 @@
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
MARKETING_VERSION = 1.50.5;
MARKETING_VERSION = 1.52.2;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
SWIFT_COMPILATION_MODE = wholemodule;
Expand Down
8 changes: 6 additions & 2 deletions deltachat-ios/Controller/ChatListViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -140,10 +140,14 @@ class ChatListViewController: 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 deviceMsgLabel = "update_1_46e_ios"
let deviceMsgLabel = "update_1_52m_ios"
if !dcAccounts.isFreshlyAdded(id: dcContext.id) {
let msg = dcContext.newMessage(viewType: DC_MSG_TEXT)
msg.text = String.localizedStringWithFormat(String.localized("update_1_46_ios"), "https://get.delta.chat/#changelogs")
msg.text = "What's new?\n\n"
+ "⭐️ Long tap messages to save them\n"
+ "✨ Improved drag'n'drop integration\n"
+ "💫 Revamped profile switcher and menus\n\n"
+ "And under the hood: Less storage needed, more stable groups ... read more about recent changes at 👉 https://delta.chat/blog"
dcContext.addDeviceMessage(label: deviceMsgLabel, msg: msg)
} else {
dcContext.addDeviceMessage(label: deviceMsgLabel, msg: nil)
Expand Down
Loading