Skip to content

Commit

Permalink
Prepare for release 1.925
Browse files Browse the repository at this point in the history
  • Loading branch information
dardizzola committed Jul 1, 2024
1 parent 31eea90 commit 5a5f045
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 14 deletions.
2 changes: 1 addition & 1 deletion LaMuccaRossaVideoDownloader/App.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<ResourceDictionary Source="pack://application:,,,/MahApps.Metro;component/Styles/Themes/Light.Blue.xaml" />
<ResourceDictionary Source="/Resources/Styles.xaml"/>
<ResourceDictionary Source="/Languages/LanguagesList.xaml"/>
<ResourceDictionary Source="/Languages/English.xaml" />
<ResourceDictionary Source="/Languages/Italiano.xaml" />
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>
Expand Down
5 changes: 4 additions & 1 deletion LaMuccaRossaVideoDownloader/ChangelogAllVersions.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
Version 1.9.24:
Version 1.9.25:
- Pre Release for La Mucca Rossa

Version 1.9.24:
- Fixed videos not downloading

Version 1.9.23:
Expand Down
6 changes: 3 additions & 3 deletions LaMuccaRossaVideoDownloader/GlobalConsts.cs
Original file line number Diff line number Diff line change
Expand Up @@ -194,8 +194,8 @@ public static void SaveConsts()
public static void RestoreDefualts()
{
Log("Restoring defaults", "RestoreDefaults at GlobalConsts").Wait();
settings = new Objects.Settings("Dark", "Red", "English", Environment.GetFolderPath(Environment.SpecialFolder.MyVideos), false, false, true, TimeSpan.FromMinutes(1), true, 20, 2, true, true);
DownloadSettings = new DownloadSettings("mp3", false, YoutubeHelpers.High720, false, false, false, false, "192", false, "en", false, false, 0, 0, false, true, false, true, 4, "$title", false, "mkv");
settings = new Objects.Settings("Dark", "Red", "Italiano", Environment.GetFolderPath(Environment.SpecialFolder.MyVideos), false, false, true, TimeSpan.FromMinutes(1), true, 20, 2, true, true);
DownloadSettings = new DownloadSettings("mp3", false, YoutubeHelpers.High1080, false, false, false, false, "192", false, "it", false, false, 0, 0, false, true, false, true, 4, "$title", false, "mp4");
SaveConsts();
}
public static void LoadConsts()
Expand Down Expand Up @@ -272,7 +272,7 @@ private static void UpdateTheme()
}
private static void UpdateLanguage()
{
var toRemove = Application.Current.Resources.MergedDictionaries.First(x => x.Source.OriginalString.Contains("English"));
var toRemove = Application.Current.Resources.MergedDictionaries.First(x => x.Source.OriginalString.Contains("Italiano"));
ResourceDictionary r = new()
{
Source = new Uri($"/Languages/{settings.Language}.xaml", UriKind.Relative)
Expand Down
4 changes: 2 additions & 2 deletions LaMuccaRossaVideoDownloader/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
Version 1.9.24:
- Fixed videos not downloading
Version 1.9.25:
- Pre Release for La Mucca Rossa
2 changes: 1 addition & 1 deletion LaMuccaRossaVideoDownloader/latestVersion.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.924
1.925
2 changes: 1 addition & 1 deletion LaMuccaRossaVideoDownloader/latestVersionLink.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
https://github.com/dardizzola/LaMuccaRossaVideoDownloader/releases/download/1.9.24/LaMuccaRossaVideoDownloader.exe
https://github.com/dardizzola/LaMuccaRossaVideoDownloader/releases/download/1.9.25/LaMuccaRossaVideoDownloader.exe
2 changes: 1 addition & 1 deletion LaMuccaRossaVideoDownloader/latestVersionWithRevision.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.9.24
1.9.25
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
Questo programma, fornito gratuitamente da [La Mucca Rossa](https://muccarossa.com), serve per scaricare intere playlist o canali o anche singoli video da YouTube.


[Clicca qui per scaricare l'installer](https://github.com/dardizzola/LaMuccaRossaVideoDownloader/releases/download/1.9.24/LaMuccaRossaVideoDownloader.exe)
[Clicca qui per scaricare l'installer](https://github.com/dardizzola/LaMuccaRossaVideoDownloader/releases/download/1.9.25/LaMuccaRossaVideoDownloader.exe)

## Caratteristiche principali
- TOTALMENTE GRATUITA
Expand Down
6 changes: 3 additions & 3 deletions YPDSetup/YPDSetup.iss
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
AppId={{444538EE-4F35-4245-AEAE-6C149BB852B8}
AppName=La Mucca Rossa Video Downloader
AppVersion=1.9.24
AppVerName=La Mucca Rossa Video Downloader 1.9.24
AppVersion=1.9.25
AppVerName=La Mucca Rossa Video Downloader 1.9.25
AppPublisher=La Mucca Rossa
AppPublisherURL=https://muccarossa.com/
VersionInfoCompany=La Mucca Rossa
Expand All @@ -20,7 +20,7 @@ Password=PietroTest
DefaultDirName={commonpf}\La Mucca Rossa Video Downloader
DefaultGroupName=La Mucca Rossa Video Downloader
AllowNoIcons=yes
OutputDir=..\Installer Output\1.9.24\
OutputDir=..\Installer Output\1.9.25\
OutputBaseFilename=Setup.LaMuccaRossaVideoDownloader
SetupIconFile=..\YoutubePlaylistDownloader\finalIcon.ico
Compression=lzma
Expand Down

0 comments on commit 5a5f045

Please sign in to comment.