Skip to content

Commit 717abac

Browse files
committed
Rename project
1 parent e5859d9 commit 717abac

17 files changed

+18
-18
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Telegram_theme_creator
1+
# TelegramThemeCreator
22

33
Telegram theme creator it is an app that creates dark variant of themes with required hue for Telegram.
44

@@ -8,7 +8,7 @@ Telegram theme creator it is an app that creates dark variant of themes with req
88

99
## Using
1010

11-
In Telegram app: Menu->Settings->Chat settings->Matrix theme->Launch theme editor->Save file(colors.tdesktop-palette) near Telegram_theme_creator.exe file and start app. Choose colour by pressing on hue line or use Wondows's 10 system accent colour and press button Create theme. In the same folder will appear file Your_theme.tdesktop-theme that you can use.
11+
In Telegram app: Menu->Settings->Chat settings->Matrix theme->Launch theme editor->Save file(colors.tdesktop-palette) near TelegramThemeCreator.exe file and start app. Choose colour by pressing on hue line or use Wondows's 10 system accent colour and press button Create theme. In the same folder will appear file Your_theme.tdesktop-theme that you can use.
1212

1313
## License
1414

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio 15
44
VisualStudioVersion = 15.0.28307.168
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Telegram_theme_creator", "Telegram_theme_creator\Telegram_theme_creator.csproj", "{6FD0C0B6-D082-42B4-874A-7A5C211294F5}"
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TelegramThemeCreator", "TelegramThemeCreator\TelegramThemeCreator.csproj", "{6FD0C0B6-D082-42B4-874A-7A5C211294F5}"
77
EndProject
88
Global
99
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
<Application x:Class="Telegram_theme_creator.App"
1+
<Application x:Class="TelegramThemeCreator.App"
22
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
33
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4-
xmlns:local="clr-namespace:Telegram_theme_creator"
4+
xmlns:local="clr-namespace:TelegramThemeCreator"
55
StartupUri="MainWindow.xaml">
66
<Application.Resources>
77

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
using System.Threading.Tasks;
77
using System.Windows;
88

9-
namespace Telegram_theme_creator
9+
namespace TelegramThemeCreator
1010
{
1111
/// <summary>
1212
/// Interaction logic for App.xaml
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System.Text;
55
using System.Threading.Tasks;
66

7-
namespace Telegram_theme_creator
7+
namespace TelegramThemeCreator
88
{
99
public enum HexFormat { RGB, ARGB, RGBA, BGR, BGRA, ABGR }
1010
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
<Window x:Name="MainWindow1" x:Class="Telegram_theme_creator.MainWindow"
1+
<Window x:Name="MainWindow1" x:Class="TelegramThemeCreator.MainWindow"
22
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
33
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
44
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
55
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
6-
xmlns:local="clr-namespace:Telegram_theme_creator"
6+
xmlns:local="clr-namespace:TelegramThemeCreator"
77
mc:Ignorable="d"
88
Title="Telegram theme creator" ResizeMode="CanMinimize" Icon="Icon1.ico" WindowStartupLocation="CenterScreen" Width="490" Height="140" Background="#FF282828" Initialized="MainWindow1_Initialized" WindowStyle="None" AllowsTransparency="True">
99
<Grid Margin="0,0,0,1" HorizontalAlignment="Left" Width="490" Height="140">
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
using System.Diagnostics;
2020
using System.IO.Compression;
2121

22-
namespace Telegram_theme_creator
22+
namespace TelegramThemeCreator
2323
{
2424
/// <summary>
2525
/// Interaction logic for MainWindow.xaml

Telegram_theme_creator/Properties/AssemblyInfo.cs renamed to TelegramThemeCreator/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
// General Information about an assembly is controlled through the following
88
// set of attributes. Change these attribute values to modify the information
99
// associated with an assembly.
10-
[assembly: AssemblyTitle("Telegram_theme_creator")]
10+
[assembly: AssemblyTitle("TelegramThemeCreator")]
1111
[assembly: AssemblyDescription("")]
1212
[assembly: AssemblyConfiguration("")]
1313
[assembly: AssemblyCompany("")]
14-
[assembly: AssemblyProduct("Telegram_theme_creator")]
14+
[assembly: AssemblyProduct("TelegramThemeCreator")]
1515
[assembly: AssemblyCopyright("Copyright © 2019")]
1616
[assembly: AssemblyTrademark("")]
1717
[assembly: AssemblyCulture("")]

0 commit comments

Comments
 (0)