Skip to content

Commit

Permalink
0.2.4 -> 0.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
BKSalman committed Feb 23, 2023
1 parent ddcb0b0 commit 9cb425e
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 9 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
# Changelog

## Unversioned
## unversioned

## 0.2.5

- Bugfix: Update the packaged yt-dlp version for windows, that will solve [this issue](https://github.com/BKSalman/ytdlp-gui/issues/13)
- Minor: Show message in modal when yt-dlp binary is missing

## 0.2.4
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ytdlp-gui"
version = "0.2.4"
version = "0.2.5"
edition = "2021"
description = "a GUI for yt-dlp written in Rust"
license = "GPL-3.0"
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@ the default file looks like this:
```toml
# Optional
# This is the directory of the bin, not the bin itself
bin_path = "<some_cool_path>" # if not set the command will be `yt-dlp <app_args>`
# bin_path = "<some_cool_path>" # (0.2.4)

bin_dir = "<some_cool_path>" # (0.2.5+) if not set the command will be `yt-dlp <app_args>`

# Optional
download_folder = "<some_cool_path>" # default = "~/Videos"
Expand Down
2 changes: 1 addition & 1 deletion aur/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

pkgname=ytdlp-gui
_pkgname=ytdlp-gui
pkgver=0.2.4
pkgver=0.2.5
pkgrel=2
pkgdesc="a GUI for yt-dlp written in Rust"
url="https://github.com/BKSalman"
Expand Down
8 changes: 4 additions & 4 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ impl YtGUI {

args.push(self.config.options.video_format.options().to_string());

println!("{args:#?}");
info!("{args:#?}");
}
1 => {
// Audio tab
Expand Down Expand Up @@ -147,7 +147,7 @@ impl YtGUI {
command::Message::Stop => {
match self.command.kill() {
Ok(_) => {
info!("killed the child")
info!("killed child process")
}
Err(e) => {
info!("{e}")
Expand All @@ -160,7 +160,7 @@ impl YtGUI {
command::Message::Finished => {
match self.command.kill() {
Ok(_) => {
info!("killed the child")
info!("killed child process")
}
Err(e) => {
info!("{e}")
Expand Down Expand Up @@ -294,7 +294,7 @@ impl Application for YtGUI {
event
{
if self.command.kill().is_ok() {
info!("killed the child");
info!("killed child process");
}
self.config
.update_config_file()
Expand Down

0 comments on commit 9cb425e

Please sign in to comment.