Skip to content

Commit

Permalink
version bump v1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Tensei committed May 14, 2021
1 parent 2015f5f commit f1e2a4f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
3 changes: 2 additions & 1 deletion anidow/Pages/AnimeBytesRssViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,8 @@ public async Task Track(AnimeBytesTorrentItem item)
}

var resolution = string.Empty;
var parts = item.TorrentProperty.Split('|', StringSplitOptions.RemoveEmptyEntries).Select(p => p.Trim())
var parts = item.TorrentProperty.Split('|', StringSplitOptions.RemoveEmptyEntries)
.Select(p => p.Trim())
.ToList();
if (parts.Contains("1080p"))
{
Expand Down
3 changes: 1 addition & 2 deletions anidow/Pages/SettingsViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,7 @@ public void NumberValidationTextBox(object sender, TextCompositionEventArgs e)

public void RefreshTimeTextChanged(object sender, TextChangedEventArgs e)
{
var textBox = (TextBox) sender;
if (string.IsNullOrWhiteSpace(textBox.Text))
if (sender is TextBox textBox && string.IsNullOrWhiteSpace(textBox.Text))
{
textBox.Text = "1";
}
Expand Down
2 changes: 1 addition & 1 deletion anidow/anidow.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<ApplicationIcon>anidown_28v_icon.ico</ApplicationIcon>
<LangVersion>9</LangVersion>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<Version>1.1.2</Version>
<Version>1.1.3</Version>
<Authors>Tensei</Authors>
<Company>MemeLabs</Company>
<PackageProjectUrl>https://github.com/MemeLabs/Anidow</PackageProjectUrl>
Expand Down

0 comments on commit f1e2a4f

Please sign in to comment.