Alpha 1.0.24: edit last seen and invite privacy.

This commit is contained in:
John Preston 2017-03-19 00:14:23 +03:00
parent 12cbf78191
commit 59636ac072
8 changed files with 24 additions and 20 deletions

View File

@ -406,7 +406,7 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
"lng_settings_blocked_users" = "Blocked users";
"lng_settings_last_seen_privacy" = "Last seen privacy";
"lng_settings_groups_invite_privacy" = "Groups invite privacy";
"lng_settings_groups_invite_privacy" = "Group invite settings";
"lng_settings_show_sessions" = "Show all sessions";
"lng_settings_reset" = "Terminate all other sessions";
"lng_settings_reset_sure" = "Are you sure you want to terminate\nall other sessions?";
@ -446,10 +446,10 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
"lng_edit_privacy_nobody" = "Nobody";
"lng_edit_privacy_exceptions" = "Add exceptions";
"lng_edit_privacy_lastseen_title" = "Last Seen time privacy";
"lng_edit_privacy_lastseen_title" = "Last seen privacy";
"lng_edit_privacy_lastseen_everyone" = "Anyone can see my Last Seen time";
"lng_edit_privacy_lastseen_contacts" = "Only contacts can see my Last Seen time";
"lng_edit_privacy_lastseen_nobody" = "No one can see my Last Seen time";
"lng_edit_privacy_lastseen_nobody" = "Nobody can see my Last Seen time";
"lng_edit_privacy_lastseen_description" = "Important: you won't be able to see Last Seen times for people with whom you don't share your Last Seen time. Approximate last seen will be shown instead (recently, within a week, within a month).";
"lng_edit_privacy_lastseen_always" = "Always share with{count:| # user| # users}";
"lng_edit_privacy_lastseen_never" = "Never share with{count:| # user| # users}";
@ -457,7 +457,7 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
"lng_edit_privacy_lastseen_always_title" = "Always share with";
"lng_edit_privacy_lastseen_never_title" = "Never share with";
"lng_edit_privacy_groups_title" = "Group invite privacy";
"lng_edit_privacy_groups_title" = "Group invite settings";
"lng_edit_privacy_groups_everyone" = "Anyone can invite me to groups and channels";
"lng_edit_privacy_groups_contacts" = "Only contacts can invite me to groups and channels";
"lng_edit_privacy_groups_description" = "You can restrict who can add you to groups and channels with granular precision.";

View File

@ -9,7 +9,7 @@
<Identity Name="TelegramDesktop"
ProcessorArchitecture="x64"
Publisher="CN=Telegram Messenger LLP, O=Telegram Messenger LLP, L=London, C=GB"
Version="1.0.23.0" />
Version="1.0.24.0" />
<Properties>
<DisplayName>Telegram Desktop</DisplayName>
<PublisherDisplayName>Telegram Messenger LLP</PublisherDisplayName>

View File

@ -34,8 +34,8 @@ IDI_ICON1 ICON "..\\art\\icon256.ico"
//
VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,0,23,0
PRODUCTVERSION 1,0,23,0
FILEVERSION 1,0,24,0
PRODUCTVERSION 1,0,24,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
@ -52,10 +52,10 @@ BEGIN
BEGIN
VALUE "CompanyName", "Telegram Messenger LLP"
VALUE "FileDescription", "Telegram Desktop"
VALUE "FileVersion", "1.0.23.0"
VALUE "FileVersion", "1.0.24.0"
VALUE "LegalCopyright", "Copyright (C) 2014-2017"
VALUE "ProductName", "Telegram Desktop"
VALUE "ProductVersion", "1.0.23.0"
VALUE "ProductVersion", "1.0.24.0"
END
END
BLOCK "VarFileInfo"

View File

@ -25,8 +25,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
//
VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,0,23,0
PRODUCTVERSION 1,0,23,0
FILEVERSION 1,0,24,0
PRODUCTVERSION 1,0,24,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
@ -43,10 +43,10 @@ BEGIN
BEGIN
VALUE "CompanyName", "Telegram Messenger LLP"
VALUE "FileDescription", "Telegram Desktop Updater"
VALUE "FileVersion", "1.0.23.0"
VALUE "FileVersion", "1.0.24.0"
VALUE "LegalCopyright", "Copyright (C) 2014-2017"
VALUE "ProductName", "Telegram Desktop"
VALUE "ProductVersion", "1.0.23.0"
VALUE "ProductVersion", "1.0.24.0"
END
END
BLOCK "VarFileInfo"

View File

@ -24,7 +24,7 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
#define BETA_VERSION_MACRO (0ULL)
constexpr int AppVersion = 1000023;
constexpr str_const AppVersionStr = "1.0.23";
constexpr int AppVersion = 1000024;
constexpr str_const AppVersionStr = "1.0.24";
constexpr bool AppAlphaVersion = true;
constexpr uint64 AppBetaVersion = BETA_VERSION_MACRO;

View File

@ -637,8 +637,8 @@ void Messenger::checkMapVersion() {
if (Local::oldMapVersion() < AppVersion) {
if (Local::oldMapVersion()) {
QString versionFeatures;
if ((cAlphaVersion() || cBetaVersion()) && Local::oldMapVersion() < 1000023) {
versionFeatures = QString::fromUtf8("\xE2\x80\x94 Edit list of blocked users in Settings.");
if ((cAlphaVersion() || cBetaVersion()) && Local::oldMapVersion() < 1000024) {
versionFeatures = QString::fromUtf8("\xE2\x80\x94 Added Last Seen and Group Invite privacy settings.");
} else if (!(cAlphaVersion() || cBetaVersion()) && Local::oldMapVersion() < 1000012) {
versionFeatures = langNewVersionText();
} else {

View File

@ -1,6 +1,6 @@
AppVersion 1000023
AppVersion 1000024
AppVersionStrMajor 1.0
AppVersionStrSmall 1.0.23
AppVersionStr 1.0.23
AppVersionStrSmall 1.0.24
AppVersionStr 1.0.24
AlphaChannel 1
BetaVersion 0

View File

@ -1,3 +1,7 @@
1.0.24 alpha (19.03.17)
- Added Last Seen and Group Invite privacy settings.
1.0.23 alpha (15.03.17)
- Edit list of blocked users in Settings.