Skip to content

Commit 20448de

Browse files
committed
Bump to version v2.1.1
Bump to version v2.1.1
1 parent a895e55 commit 20448de

File tree

6 files changed

+10
-23
lines changed

6 files changed

+10
-23
lines changed

DesktopApp/App.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ protected override void OnStartup(StartupEventArgs e)
4949
.CreateLogger();
5050

5151
Log.Information("=== Application Starting ===");
52-
Log.Information("Version: {Version}", "2.1.0");
52+
Log.Information("Version: {Version}", "2.1.1");
5353
Log.Information("OS: {OS}", Environment.OSVersion);
5454
Log.Information(".NET Version: {DotNetVersion}", Environment.Version);
5555

DesktopApp/Configuration/AppConfiguration.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ private static string GetDefaultVersion()
2525
{
2626
var assembly = System.Reflection.Assembly.GetExecutingAssembly();
2727
var version = assembly.GetName().Version;
28-
return version != null ? $"{version.Major}.{version.Minor}.{version.Build}" : "2.1.0";
28+
return version != null ? $"{version.Major}.{version.Minor}.{version.Build}" : "2.1.1";
2929
}
3030
}
3131

@@ -86,7 +86,7 @@ private static string GetDefaultUserAgent()
8686
{
8787
var assembly = System.Reflection.Assembly.GetExecutingAssembly();
8888
var version = assembly.GetName().Version;
89-
var versionString = version != null ? $"{version.Major}.{version.Minor}.{version.Build}" : "2.1.0";
89+
var versionString = version != null ? $"{version.Major}.{version.Minor}.{version.Build}" : "2.1.1";
9090
return $"IPTV-Desktop-Browser/{versionString}";
9191
}
9292
}

DesktopApp/Configuration/ConfigurationManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,6 +270,6 @@ private static string GetAssemblyVersion()
270270
{
271271
var assembly = Assembly.GetExecutingAssembly();
272272
var version = assembly.GetName().Version;
273-
return version != null ? $"{version.Major}.{version.Minor}.{version.Build}" : "2.1.0";
273+
return version != null ? $"{version.Major}.{version.Minor}.{version.Build}" : "2.1.1";
274274
}
275275
}

DesktopApp/DesktopApp.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
<Nullable>enable</Nullable>
77
<ImplicitUsings>enable</ImplicitUsings>
88
<UseWPF>true</UseWPF>
9-
<Version>2.1.0</Version>
10-
<AssemblyVersion>2.1.0</AssemblyVersion>
11-
<FileVersion>2.1.0</FileVersion>
12-
<InformationalVersion>2.1.0</InformationalVersion>
9+
<Version>2.1.1</Version>
10+
<AssemblyVersion>2.1.1</AssemblyVersion>
11+
<FileVersion>2.1.1</FileVersion>
12+
<InformationalVersion>2.1.1</InformationalVersion>
1313
<AssemblyName>iptv-desktop-browser</AssemblyName>
1414
<!-- Generate NuGet lock file so GitHub Actions dependency steps succeed -->
1515
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>

DesktopApp/appsettings.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"AppSettings": {
33
"ApplicationName": "IPTV Desktop Browser",
4-
"Version": "2.1.0"
4+
"Version": "2.1.1"
55
},
66

77
"GitHub": {
@@ -37,7 +37,7 @@
3737

3838
"Http": {
3939
"DefaultTimeoutSeconds": 30,
40-
"UserAgent": "IPTV-Desktop-Browser/2.1.0",
40+
"UserAgent": "IPTV-Desktop-Browser/2.1.1",
4141
"Timeouts": {
4242
"LoginRequestSeconds": 12,
4343
"M3uLoadSeconds": 30,

DesktopApp/packages.lock.json

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -116,12 +116,6 @@
116116
"Microsoft.Extensions.Primitives": "9.0.0"
117117
}
118118
},
119-
"Microsoft.NET.ILLink.Tasks": {
120-
"type": "Direct",
121-
"requested": "[9.0.9, )",
122-
"resolved": "9.0.9",
123-
"contentHash": "cHi1os/s6aobEgNkbOh/jW+ru//rHuedvj4PmTh2mMY7et/mJjqphBeXeKCesDvMd0+E2JyX9EPZZC4VRKslXg=="
124-
},
125119
"Serilog.Extensions.Hosting": {
126120
"type": "Direct",
127121
"requested": "[9.0.0, )",
@@ -370,13 +364,6 @@
370364
"resolved": "9.0.0",
371365
"contentHash": "qd01+AqPhbAG14KtdtIqFk+cxHQFZ/oqRSCoxU1F+Q6Kv0cl726sl7RzU9yLFGd4BUOKdN4XojXF0pQf/R6YeA=="
372366
}
373-
},
374-
"net9.0-windows7.0/win-x64": {
375-
"System.Diagnostics.EventLog": {
376-
"type": "Transitive",
377-
"resolved": "9.0.0",
378-
"contentHash": "qd01+AqPhbAG14KtdtIqFk+cxHQFZ/oqRSCoxU1F+Q6Kv0cl726sl7RzU9yLFGd4BUOKdN4XojXF0pQf/R6YeA=="
379-
}
380367
}
381368
}
382369
}

0 commit comments

Comments
 (0)