Skip to content

Commit 32ecf76

Browse files
committed
Patch release [v4.4.1.0]
- Added an option to play a sound when the download finishes, you can also specify a custom sound - Fixed a small bug with the history re-sorting in the wrong order
1 parent 6e63278 commit 32ecf76

25 files changed

Lines changed: 259 additions & 62 deletions
300 Bytes
Loading
8.19 KB
Binary file not shown.
488 Bytes
Loading
117 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.

changelog.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
~ v4.4.1.0
2+
- Added an option to play a sound when the download finishes, you can also specify a custom sound
3+
- Fixed a small bug with the history re-sorting in the wrong order
4+
15
~ v4.4.0.0
26
- Added a settings menu
37
- Added a QoL feature that skips the download process automatically if the raw file is detected (this is helpful if the user chose an undesired format and wants to change it without redownloading the entire video)

src/MediaDownloader/MediaDownloader/Init.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,9 @@ static void Main()
6666
CONFIG = ReadConfig("MediaDownloader\\config\\config.cfg");
6767
else
6868
{
69-
CONFIG.HISTORY_ENABLE = true;
69+
CONFIG.COMPLETE_SOUND_ENABLE = true;
7070
CONFIG.NOTIFICATIONS_ENABLE = true;
71+
CONFIG.HISTORY_ENABLE = true;
7172
CONFIG.TRUSTED_URLS = "youtube.com,youtu.be,twitter.com,instagram.com";
7273
}
7374

src/MediaDownloader/MediaDownloader/MainMenu.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
using static MediaDownloader.Updater.UpdateChecker;
2020
using static MediaDownloader.Updater.ResourceReader;
2121

22-
2322
namespace MediaDownloader
2423
{
2524
public partial class MainMenu : Form
@@ -257,7 +256,7 @@ private void HistoryLoadButton_Click(object sender, EventArgs e)
257256

258257
private void HistoryRefreshButton_Click(object sender, EventArgs e)
259258
{
260-
ReadQueueItemPackToListBox(HistoryListBox, HISTORY, false);
259+
ReadQueueItemPackToListBox(HistoryListBox, HISTORY, true);
261260
}
262261

263262
private void HistoryRemoveButton_Click(object sender, EventArgs e)

src/MediaDownloader/MediaDownloader/MediaDownloader.csproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@
9494
<Compile Include="Init.cs" />
9595
<Compile Include="Properties\AssemblyInfo.cs" />
9696
<Compile Include="Scripts\Tools\Shell.cs" />
97+
<Compile Include="Scripts\Tools\Sounds.cs" />
9798
<Compile Include="Scripts\Tools\Strings.cs" />
9899
<Compile Include="Updater\UpdateChecker.cs" />
99100
<Compile Include="Updater\ResourceReader.cs" />
@@ -144,7 +145,10 @@
144145
</ItemGroup>
145146
<ItemGroup>
146147
<Content Include="logo.ico" />
148+
<EmbeddedResource Include="Resources\download_complete_error.wav" />
149+
<EmbeddedResource Include="Resources\download_complete_success.wav" />
147150
<None Include="Resources\settings_background.png" />
151+
<None Include="Resources\folder_gray.png" />
148152
<None Include="Resources\loading_icon.gif" />
149153
<None Include="Resources\checkmark.png" />
150154
<None Include="Resources\crossmark.png" />

0 commit comments

Comments
 (0)