diff --git a/packaging/aur/PKGBUILD b/packaging/aur/PKGBUILD index 4789697..8202890 100644 --- a/packaging/aur/PKGBUILD +++ b/packaging/aur/PKGBUILD @@ -1,6 +1,6 @@ # Maintainer: Typology pkgname=twitch-downloader-gui -pkgver=3.0.0 +pkgver=3.1.0 pkgrel=1 pkgdesc="Twitch VOD/Clip Downloader - Chat Download/Render/Replay - GUI Version" arch=('x86_64') diff --git a/packaging/debian/changelog b/packaging/debian/changelog index d95adf3..eb6e8ba 100644 --- a/packaging/debian/changelog +++ b/packaging/debian/changelog @@ -1,4 +1,4 @@ -twitch-downloader-gui (3.0.0-1) UNRELEASED; urgency=low +twitch-downloader-gui (3.1.0-1) UNRELEASED; urgency=low * Initial release. diff --git a/packaging/rpm/SPECS/twitch-downloader-gui.spec b/packaging/rpm/SPECS/twitch-downloader-gui.spec index 2c25cdf..3f0c2dc 100644 --- a/packaging/rpm/SPECS/twitch-downloader-gui.spec +++ b/packaging/rpm/SPECS/twitch-downloader-gui.spec @@ -1,5 +1,5 @@ Name: twitch-downloader-gui -Version: 3.0.0 +Version: 3.1.0 Release: 1%{?dist} Summary: GUI Linux App to download clips/vods/chats and render chat for Twitch diff --git a/src/ClipDownloader.c b/src/ClipDownloader.c index 9c65019..248041d 100644 --- a/src/ClipDownloader.c +++ b/src/ClipDownloader.c @@ -234,7 +234,7 @@ static int setQualities(char *id, uiCombobox *cBox) { uiComboboxClear(cBox); root = cJSON_Parse((char *)qualityRes->memory); qualities = cJSONUtils_GetPointer(root, "/0/data/clip/videoQualities"); - if ((!qualities) | cJSON_IsNull(qualities)) { + if ((!qualities) || cJSON_IsNull(qualities)) { validID = 0; goto err; } diff --git a/src/app.h b/src/app.h index 81f8d5f..c7cfbe3 100644 --- a/src/app.h +++ b/src/app.h @@ -5,4 +5,4 @@ #include "Preferences.h" #include "VodDownloader.h" #include "utils.h" -#define VERSION "3.0.0" +#define VERSION "3.1.0"