Skip to content

Commit

Permalink
2.1.1
Browse files Browse the repository at this point in the history
Version number in titlebar
2.1.1
  • Loading branch information
TCNOco committed Jan 26, 2021
1 parent b46d134 commit e280589
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion osu-cleaner/Form1.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* TcNo-osu-cleaner
* Version: 2.00
* Version: 2.1.1
* Original project: henntix
* Updated & Styling: TechNobo (https://tcno.co)
*/
Expand All @@ -26,6 +26,7 @@ namespace osu_cleaner
{
public partial class MainApp : DarkForm
{
private readonly string versionNumber = "2.1.1";
private readonly ContextMenuStrip _collectionRoundMenuStrip = new ContextMenuStrip();
private long _filesSize;
private long _forRemovalSize;
Expand All @@ -42,6 +43,8 @@ public MainApp()

private void MainApp_Load(object sender, EventArgs e)
{
this.Text = "cln! (osu!Cleaner by TechNobo) v" + versionNumber;

directoryPath.Text = GetOsuPath();
_worker = new BackgroundWorker()
{
Expand Down
4 changes: 2 additions & 2 deletions osu-cleaner/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.1.0.0")]
[assembly: AssemblyFileVersion("2.1.0.0")]
[assembly: AssemblyVersion("2.1.1.0")]
[assembly: AssemblyFileVersion("2.1.1.0")]
2 changes: 1 addition & 1 deletion osu-cleaner/TcNo-osu-cleaner.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<IsWebBootstrapper>false</IsWebBootstrapper>
<PublishUrl>publish\</PublishUrl>
<Install>true</Install>
<InstallFrom>Disk</InstallFrom>
Expand All @@ -24,7 +25,6 @@
<MapFileExtensions>true</MapFileExtensions>
<ApplicationRevision>0</ApplicationRevision>
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
<IsWebBootstrapper>false</IsWebBootstrapper>
<UseApplicationTrust>false</UseApplicationTrust>
<BootstrapperEnabled>true</BootstrapperEnabled>
</PropertyGroup>
Expand Down

0 comments on commit e280589

Please sign in to comment.