Skip to content
This repository has been archived by the owner on Feb 5, 2022. It is now read-only.

Commit

Permalink
Bump to v2.1.0
Browse files Browse the repository at this point in the history
Bump to v2.1.0
  • Loading branch information
Skid authored Mar 16, 2020
2 parents 2762983 + 7fb214c commit d60a7e5
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Crunchyroll-Downloader/Models/DownloaderModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ public class DownloaderModel
public bool AreSubtitlesEnabled { get; set; }
public string Url { get; set; }
public string Language { get; set; } = "enUS";
public string Format { get; set; } = "srt";
public string Format { get; set; } = "ass";
public string SavePath { get; set; }
public Quality Quality { get; set; } = Quality.Best;
public bool IsMkv { get; set; }
Expand Down
8 changes: 4 additions & 4 deletions Crunchyroll-Downloader/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
[assembly: AssemblyTitle("Crunchyroll Downloader")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Tuto-Craft")]
[assembly: AssemblyCompany("Skid")]
[assembly: AssemblyProduct("")]
[assembly: AssemblyCopyright("Tuto-Craft Corporation Copyright © 2018")]
[assembly: AssemblyCopyright("Skid Copyright © 2020")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand Down Expand Up @@ -50,7 +50,7 @@
// 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.*")] meme
[assembly: AssemblyVersion("1.2.7.0")]
[assembly: AssemblyFileVersion("1.2.7.0")]
[assembly: AssemblyVersion("2.1.0.0")]
[assembly: AssemblyFileVersion("2.1.0.0")]
[assembly: NeutralResourcesLanguage("en")]

10 changes: 5 additions & 5 deletions Crunchyroll-Downloader/ViewModels/MainWindowViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,8 @@ public string DlStatus
}

public string[] AvailableFormats { get; } =
{
"srt",
"ass" // lol
{
"ass"
};

public string Format
Expand Down Expand Up @@ -113,8 +112,9 @@ public QualityItem SelectedQualityItem
GetCultureInfo("pt-BR"),
GetCultureInfo("it-IT"),
GetCultureInfo("de-DE"),
GetCultureInfo("ru-RU")
};
GetCultureInfo("ru-RU"),
GetCultureInfo("ar-ME")
};
private CultureInfo _selectedCultureInfo;

public CultureInfo SelectedLanguage
Expand Down
2 changes: 1 addition & 1 deletion Crunchyroll-Downloader/Views/AboutWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<Label Grid.Row="0" x:Name="label_1" Content="This tool is under the AGPLv3 license." HorizontalAlignment="Left" Margin="10,10,0,0" VerticalAlignment="Top" Foreground="White" Height="26" Width="207"/>
<Label Grid.Row="1" x:Name="label_2" Content="All informations on github." HorizontalAlignment="Left" Margin="10,10,0,0" VerticalAlignment="Top" Foreground="White" Height="26" Width="151"/>
<Label Grid.Row="2" x:Name="label_3" Content="https://github.com/skid9000/Crunchyroll-Downloader" HorizontalAlignment="Left" Margin="10,10,0,0" VerticalAlignment="Top" Foreground="White" Height="26" Width="295"/>
<Label Grid.Row="3" x:Name="label_4" Content="Version : v2.0.0" HorizontalAlignment="Left" Margin="10,10,0,0" VerticalAlignment="Top" Foreground="White" Height="26" Width="295"/>
<Label Grid.Row="3" x:Name="label_4" Content="Version : v2.1.0" HorizontalAlignment="Left" Margin="10,10,0,0" VerticalAlignment="Top" Foreground="White" Height="26" Width="295"/>
<WrapPanel Grid.Row="4" Margin="10,0">
<Button x:Name="button" Content="Update Youtube-DL" HorizontalAlignment="Left" Margin="0,15,44,0" VerticalAlignment="Top" Height="34" Width="160" Click="button_Click"/>
<Button x:Name="button2" Content="Re-Download Dependencies" HorizontalAlignment="Left" Margin="0,15,0,0" VerticalAlignment="Top" Height="34" Width="160" Click="button_Click2Async"/>
Expand Down

0 comments on commit d60a7e5

Please sign in to comment.