Skip to content

Commit

Permalink
šŸŒ» Bump version to v1.11.0 and update screenshots and README
Browse files Browse the repository at this point in the history
  • Loading branch information
database64128 committed May 3, 2022
1 parent 24c516e commit 6094584
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# šŸŽžā¬‡ Cube YouTube Downloader - `youtube-dl-wpf`

[![Build](https://github.com/database64128/youtube-dl-wpf/workflows/Build/badge.svg)](https://github.com/database64128/youtube-dl-wpf/actions?query=workflow%3ABuild)
[![Release](https://github.com/database64128/youtube-dl-wpf/workflows/Release/badge.svg)](https://github.com/database64128/youtube-dl-wpf/actions?query=workflow%3ARelease)
[![Build](https://github.com/database64128/youtube-dl-wpf/actions/workflows/build.yml/badge.svg)](https://github.com/database64128/youtube-dl-wpf/actions/workflows/build.yml)
[![Release](https://github.com/database64128/youtube-dl-wpf/actions/workflows/release.yml/badge.svg)](https://github.com/database64128/youtube-dl-wpf/actions/workflows/release.yml)

A simple GUI wrapper for [`youtube-dl`](https://github.com/ytdl-org/youtube-dl) and [`yt-dlp`](https://github.com/yt-dlp/yt-dlp).

Expand Down
4 changes: 2 additions & 2 deletions YoutubeDl.Wpf/YoutubeDl.Wpf.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
<ApplicationManifest>app.manifest</ApplicationManifest>
<Product>Cube YouTube Downloader</Product>
<Authors>database64128</Authors>
<Version>1.10.0</Version>
<Version>1.11.0</Version>
<ApplicationIcon>CubeYouTubeDownloader.ico</ApplicationIcon>
<Description>A simple GUI wrapper for https://github.com/ytdl-org/youtube-dl.</Description>
<Description>WPF GUI for https://github.com/ytdl-org/youtube-dl and https://github.com/yt-dlp/yt-dlp.</Description>
<Copyright>Ā© 2022 database64128</Copyright>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageProjectUrl>https://github.com/database64128/youtube-dl-wpf</PackageProjectUrl>
Expand Down
Binary file modified home.webp
Binary file not shown.
Binary file modified settings.webp
Binary file not shown.

5 comments on commit 6094584

@bachig26
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i think the new presets have some issue, like previously the container (example. mkv) and format (example. 137+140) can be selected separately but with this new update to set this kind of preference, user needs to create a custom preset, which might annoy most of the time, as the container and the format listed under preset instead of two separate category.

@bachig26
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

also under the custom preset option while editing the format and container, there is no drop-down list function to show the list of the items available, this makes it hard to create the preset, and need to go to the main preset drop-down and lookup the values and come back to enter the values.

I feel like this needs to changed.

@database64128
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

which might annoy most of the time

In the long run, it should be easier to switch back and forth between presets than to separately select container and format. Also Iā€™m curious why you want 137+140 in mkv.

there is no drop-down list function to show the list of the items available, this makes it hard to create the preset, and need to go to the main preset drop-down and lookup the values and come back to enter the values.

If you want to create a custom preset based on a builtin preset, select the builtin preset and click ā€œduplicateā€, then edit it.

Thereā€™s no need to look up builtin presets, because builtin presets are just my opinionated defaults. They do not reflect the full capabilities of the backend.

Thereā€™s no drop-down list in the preset editor, because the format and container fields actually correspond to the specified format and container. Previously the predefined containers and formats are actually of the same Format type in code, because some formats have to specify a container, or even extra arguments.

In my opinion the new layout is easier to understand, customize and use. And it actually reflects the logic behind it, thus the code is also much cleaner.

@bachig26
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

also, in the previous version the logs used to reset at every new downloads, but in this one, it's not.

furthermore, there are new logs that can be seen from the app every time launch as new at front referring to the some backend connections are notifications which was never there before.
is it possible disable the logs in the settings, or will it be implemented in future?

@database64128
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

also, in the previous version the logs used to reset at every new downloads, but in this one, it's not.

This was intentional. In older versions, the logs were actually called "output", which kind of makes sense to clear the "output" before each new run.

Starting with this version, a logging framework is used to propagate the logs. It doesn't make sense anymore to clear the logs.

furthermore, there are new logs that can be seen from the app every time launch as new at front referring to the some backend connections are notifications which was never there before.

https://stackoverflow.com/questions/30352447/using-reactiveuis-bindto-to-update-a-xaml-property-generates-a-warning These warnings probably should have been at debug level. I'll check with RxUI developers to see if we can change the log level of these messages.

is it possible disable the logs in the settings, or will it be implemented in future?

Do you really want to completely disable logging? Format listings are also only displayed in logs.

Also please use discussions or issues for these types of questions. It's easier for other users to discover and participate, and for me to keep track of.

Please sign in to comment.