Skip to content

Commit

Permalink
Release v.0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
alxnull committed Jan 6, 2024
1 parent 825e9d2 commit e29af9a
Show file tree
Hide file tree
Showing 9 changed files with 30 additions and 13 deletions.
16 changes: 16 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Vividl Changelog

### v.0.8.0 (2024-01)
- **New:** Allow specifying preferred video resolution in settings & fetch window.
- **New:** Support for editing video download names before download.
- **New:** Add notification log window & notifications button in status bar.
- **New:** Cache links of unfinished downloads between app restarts by default.
- **New:** Add "best audio-only download" to default download formats.
- **New:** Chinese translation.
- **Updated:** Rewrite of download format selection to better target yt-dlp.
- **Updated:** Remove invalid formats from download customization window; order by format preference.
- **Updated:** Japanese translation
- **Fixed:** Overwrite/ re-download handling for "Best direct download".
- **Fixed:** App crashed when exporting video links with unavailable videos.
- **Fixed:** Scrolling of settings window for larger text sizes.
- **Fixed:** Settings not correctly saved when closed via "Exit" menu or changed in different tab.
- **Fixed:** Video info parsing errors causing app crashes during fetching.

### v.0.7.0 (2023-03)
- **New:** Add drag & drop support for importing URLs.
- **New:** Add GPU acceleration option for AMD (AMF) and Intel (QSV) GPUs.
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
BSD 3-Clause License

Copyright (c) 2020-2023, Bluegrams.
Copyright (c) 2020-2024, Bluegrams.
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion Vividl/App.config
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
<value>Light</value>
</setting>
<setting name="PreferRecoding" serializeAs="String">
<value>True</value>
<value>False</value>
</setting>
<setting name="ArchiveFilename" serializeAs="String">
<value>.archive.txt</value>
Expand Down
6 changes: 3 additions & 3 deletions Vividl/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Bluegrams")]
[assembly: AssemblyProduct("Vividl")]
[assembly: AssemblyCopyright("Copyright © 2020-2023 Bluegrams")]
[assembly: AssemblyCopyright("Copyright © 2020-2024 Bluegrams")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand Down Expand Up @@ -45,5 +45,5 @@
// app, or any theme specific resource dictionaries)
)]

[assembly: AssemblyVersion("0.7.1.0")]
[assembly: AssemblyFileVersion("0.7.1.0")]
[assembly: AssemblyVersion("0.8.0.0")]
[assembly: AssemblyFileVersion("0.8.0.0")]
2 changes: 1 addition & 1 deletion Vividl/Properties/Settings.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Vividl/Properties/Settings.settings
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<Value Profile="(Default)">Light</Value>
</Setting>
<Setting Name="PreferRecoding" Roaming="true" Type="System.Boolean" Scope="User">
<Value Profile="(Default)">True</Value>
<Value Profile="(Default)">False</Value>
</Setting>
<Setting Name="ArchiveFilename" Roaming="true" Type="System.String" Scope="User">
<Value Profile="(Default)">.archive.txt</Value>
Expand Down
3 changes: 2 additions & 1 deletion Vividl/Vividl.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@
<Reference Include="XAMLMarkupExtensions, Version=2.1.3.0, Culture=neutral, PublicKeyToken=c726e0262981a1eb, processorArchitecture=MSIL">
<HintPath>..\packages\XAMLMarkupExtensions.2.1.3\lib\net48\XAMLMarkupExtensions.dll</HintPath>
</Reference>
<Reference Include="YoutubeDLSharp, Version=1.1.0.242, Culture=neutral, processorArchitecture=MSIL">
<Reference Include="YoutubeDLSharp, Version=1.1.0.246, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\YoutubeDLSharp.1.1.0\lib\net45\YoutubeDLSharp.dll</HintPath>
</Reference>
</ItemGroup>
Expand Down Expand Up @@ -334,6 +334,7 @@
<SubType>Designer</SubType>
</EmbeddedResource>
<EmbeddedResource Include="Properties\Resources.sv.resx" />
<EmbeddedResource Include="Properties\Resources.zh-CN.resx" />
<None Include="Lib\DownloadBinaries.ps1" />
<None Include="packages.config">
<SubType>Designer</SubType>
Expand Down
6 changes: 3 additions & 3 deletions VividlSetup/VividlSetup.vdproj
Original file line number Diff line number Diff line change
Expand Up @@ -292,15 +292,15 @@
{
"Name" = "8:Microsoft Visual Studio"
"ProductName" = "8:Vividl"
"ProductCode" = "8:{17D403E3-8F25-4AFE-9867-A44EDDA375A0}"
"PackageCode" = "8:{ACF90E7D-169D-46AE-AB43-43DF4A22890A}"
"ProductCode" = "8:{D050F0D8-5C8E-4273-BA11-78063C45A873}"
"PackageCode" = "8:{09540D94-C3F9-49DC-A8EE-CEF19D475501}"
"UpgradeCode" = "8:{424347EB-A135-4241-98B1-F2476CA4F959}"
"AspNetVersion" = "8:4.0.30319.0"
"RestartWWWService" = "11:FALSE"
"RemovePreviousVersions" = "11:TRUE"
"DetectNewerInstalledVersion" = "11:TRUE"
"InstallAllUsers" = "11:FALSE"
"ProductVersion" = "8:0.7.1"
"ProductVersion" = "8:0.8.0"
"Manufacturer" = "8:Bluegrams"
"ARPHELPTELEPHONE" = "8:"
"ARPHELPLINK" = "8:https://sourceforge.net/projects/vividl/support"
Expand Down
4 changes: 2 additions & 2 deletions choco/vividl.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<metadata>
<!-- == PACKAGE SPECIFIC SECTION == -->
<id>vividl</id>
<version>0.7.1</version>
<version>0.8.0</version>
<owners>alxnull</owners>
<!-- ============================== -->

Expand All @@ -14,7 +14,7 @@
<authors>alxnull</authors>
<projectUrl>https://vividl.sourceforge.io/</projectUrl>
<iconUrl>https://raw.githubusercontent.com/Bluegrams/Vividl/master/img/icon.png</iconUrl>
<copyright>© 2020-2023 Bluegrams</copyright>
<copyright>© 2020-2024 Bluegrams</copyright>
<licenseUrl>https://github.com/bluegrams/Vividl/blob/master/LICENSE.txt</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<projectSourceUrl>https://github.com/bluegrams/Vividl</projectSourceUrl>
Expand Down

0 comments on commit e29af9a

Please sign in to comment.