mirror of https://github.com/procxx/kepka.git
0.7.22 changelog
This commit is contained in:
parent
75cad6179d
commit
a301866560
|
@ -1,10 +1,10 @@
|
|||
@echo OFF
|
||||
|
||||
set "AppVersion=7020"
|
||||
set "AppVersionStrSmall=0.7.20"
|
||||
set "AppVersionStr=0.7.20"
|
||||
set "AppVersionStrFull=0.7.20.0"
|
||||
set "DevChannel=0"
|
||||
set "AppVersion=7021"
|
||||
set "AppVersionStrSmall=0.7.21"
|
||||
set "AppVersionStr=0.7.21"
|
||||
set "AppVersionStrFull=0.7.21.0"
|
||||
set "DevChannel=1"
|
||||
|
||||
if %DevChannel% neq 0 goto preparedev
|
||||
|
||||
|
|
|
@ -387,8 +387,8 @@ Copyright (c) 2014 John Preston, https://desktop.telegram.org
|
|||
"lng_context_copy_email" = "Copy email address";
|
||||
"lng_context_open_hashtag" = "Search by hashtag";
|
||||
"lng_context_copy_hashtag" = "Copy hashtag";
|
||||
"lng_context_open_mention" = "Open {user} profile";
|
||||
"lng_context_copy_mention" = "Copy mention";
|
||||
"lng_context_open_mention" = "Open profile";
|
||||
"lng_context_copy_mention" = "Copy username";
|
||||
"lng_context_open_image" = "Open Image";
|
||||
"lng_context_save_image" = "Save Image As..";
|
||||
"lng_context_forward_image" = "Forward Image";
|
||||
|
@ -487,8 +487,8 @@ Copyright (c) 2014 John Preston, https://desktop.telegram.org
|
|||
|
||||
"lng_new_version_wrap" = "Telegram Desktop was updated to version {version}\n\n{changes}\n\nFull version history is available here:\n{link}";
|
||||
"lng_new_version_minor" = "— Bug fixes and other minor improvements";
|
||||
"lng_new_version7020" = "— Lock your app with a passcode";
|
||||
"lng_new_version7020_appstore" = "— Lock your app with a passcode\n— Change the chat background\n— New «open with» menu for files\n— Added Korean language";
|
||||
"lng_new_version7022" = "— Reply to specific messages in groups\n— Mention @usernames in groups to notify multiple users";
|
||||
"lng_new_version7022_appstore" = "— Reply to specific messages in groups\n— Mention @usernames in groups to notify multiple users";
|
||||
|
||||
"lng_menu_insert_unicode" = "Insert Unicode control character";
|
||||
|
||||
|
|
|
@ -976,7 +976,7 @@ replyColor: #377aae;
|
|||
replyHeight: 49px;
|
||||
replyTop: 8px;
|
||||
replyBottom: 6px;
|
||||
replyIconPos: point(13px, 15px);
|
||||
replyIconPos: point(13px, 13px);
|
||||
replyIcon: sprite(174px, 195px, 24px, 24px);
|
||||
replyCancel: iconedButton(btnDefIconed) {
|
||||
icon: sprite(165px, 24px, 14px, 14px);
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 60 KiB After Width: | Height: | Size: 61 KiB |
Binary file not shown.
Before Width: | Height: | Size: 107 KiB After Width: | Height: | Size: 107 KiB |
|
@ -719,7 +719,7 @@ void HistoryList::showContextMenu(QContextMenuEvent *e, bool showFromTouch) {
|
|||
_menu->addAction(lang(lng_context_copy_email), this, SLOT(copyContextUrl()))->setEnabled(true);
|
||||
} else if (_contextMenuLnk && dynamic_cast<MentionLink*>(_contextMenuLnk.data())) {
|
||||
if (!_menu) _menu = new ContextMenu(historyWidget);
|
||||
_menu->addAction(lng_context_open_mention(lt_user, _contextMenuLnk->encoded()), this, SLOT(openContextUrl()))->setEnabled(true);
|
||||
_menu->addAction(lang(lng_context_open_mention), this, SLOT(openContextUrl()))->setEnabled(true);
|
||||
_menu->addAction(lang(lng_context_copy_mention), this, SLOT(copyContextUrl()))->setEnabled(true);
|
||||
} else if (_contextMenuLnk && dynamic_cast<HashtagLink*>(_contextMenuLnk.data())) {
|
||||
if (!_menu) _menu = new ContextMenu(historyWidget);
|
||||
|
|
Loading…
Reference in New Issue