Skip to content

Commit

Permalink
v3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mohad12211 committed Feb 11, 2024
1 parent 89a0eda commit 116ee7c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packaging/aur/PKGBUILD
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Maintainer: Typology <mohammedkaabi64@gmail.com>
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')
Expand Down
2 changes: 1 addition & 1 deletion packaging/debian/changelog
Original file line number Diff line number Diff line change
@@ -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.

Expand Down
2 changes: 1 addition & 1 deletion packaging/rpm/SPECS/twitch-downloader-gui.spec
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion src/ClipDownloader.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down
2 changes: 1 addition & 1 deletion src/app.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
#include "Preferences.h"
#include "VodDownloader.h"
#include "utils.h"
#define VERSION "3.0.0"
#define VERSION "3.1.0"

0 comments on commit 116ee7c

Please sign in to comment.