Skip to content

Commit

Permalink
1.6.7 (279)
Browse files Browse the repository at this point in the history
  • Loading branch information
denis15yo committed Jul 26, 2024
1 parent e6893e4 commit b2d6d85
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 3 deletions.
4 changes: 3 additions & 1 deletion Telegram/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,9 @@ alternate_icon_folders = [
"CommunityWatercolor",
"Premium",
"PremiumBlack",
"PremiumTurbo"
"PremiumTurbo",
"NewBlack",
"NewWhite"
]

[
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ class ThemeSettingsAppIconItemNode: ListViewItemNode, ItemListItemNode {
case "New2":
name = "Nicegram Light"
case "New3":
name = item.strings.Appearance_AppIconDefault
name = "NG 2023"
case "NicegramAlt":
name = "Special"
case "CommunityClassic":
Expand All @@ -396,6 +396,10 @@ class ThemeSettingsAppIconItemNode: ListViewItemNode, ItemListItemNode {
name = item.strings.Appearance_AppIconBlack
case "PremiumTurbo":
name = item.strings.Appearance_AppIconTurbo
case "NewBlack":
name = item.strings.Appearance_AppIconDefault
case "NewWhite":
name = "New White"
default:
name = icon.name
}
Expand Down
4 changes: 3 additions & 1 deletion submodules/TelegramUI/Sources/AppDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -983,7 +983,9 @@ private class UserInterfaceStyleObserverWindow: UIWindow {
if #available(iOS 10.3, *) {
var icons = [
// MARK: Nicegram, default AppIcon changed
PresentationAppIcon(name: "New3", imageName: "New3", isDefault: buildConfig.isAppStoreBuild),
PresentationAppIcon(name: "NewBlack", imageName: "NewBlack", isDefault: buildConfig.isAppStoreBuild),
PresentationAppIcon(name: "NewWhite", imageName: "NewWhite"),
PresentationAppIcon(name: "New3", imageName: "New3"),
PresentationAppIcon(name: "BlueIcon", imageName: "BlueIcon"),
PresentationAppIcon(name: "BlackIcon", imageName: "BlackIcon"),
// PresentationAppIcon(name: "BlueClassicIcon", imageName: "BlueClassicIcon"),
Expand Down

0 comments on commit b2d6d85

Please sign in to comment.