Skip to content

Commit

Permalink
0.2.3 -> 0.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
BKSalman committed Jan 20, 2023
1 parent 278d3b6 commit bd5bdfa
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
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.3"
version = "0.2.4"
edition = "2021"
description = "a GUI for yt-dlp written in Rust"
license = "GPL-3.0"
Expand Down
4 changes: 2 additions & 2 deletions 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.3
pkgver=0.2.4
pkgrel=1
pkgdesc="a GUI for yt-dlp written in Rust"
url="https://github.com/BKSalman"
Expand All @@ -15,7 +15,7 @@ provides=("ytdlp-gui")
conflicts=("ytdlp-gui")

source=("${url}/ytdlp-gui/archive/refs/tags/v${pkgver}.tar.gz")
sha256sums=("4de0ca30da2bb4b8114ee2e29f2e2c94b2d965c2a66b77ab813300ff5c587908")
sha256sums=("e97d2c771f115d8b1b4307183cdb0c77d051a8f8e3f0abf2207ca6a67ee00358")

build() {
cd "$_pkgname-${pkgver}"
Expand Down
4 changes: 2 additions & 2 deletions src/media_options.rs
Original file line number Diff line number Diff line change
Expand Up @@ -272,9 +272,9 @@ pub fn playlist_options(is_playlist: bool, download_folder: Option<PathBuf>) ->
args.push(
download_folder
.clone()
.expect("No Videos Directory")
.unwrap_or("~/Videos".into())
.to_str()
.expect("No Videos Directory")
.expect("download folder as str")
.to_string(),
);
args.push(String::from("-o"));
Expand Down

0 comments on commit bd5bdfa

Please sign in to comment.