From 2acea7dfde7365a16b16132b40db1e457c1e5540 Mon Sep 17 00:00:00 2001 From: vzhd1701 Date: Tue, 19 Oct 2021 16:32:00 +0500 Subject: [PATCH] chore(release): 0.1.1 --- CHANGELOG.md | 9 +++++++++ README.md | 10 +++++----- gridplayer/version.py | 4 ++-- pyproject.toml | 2 +- 4 files changed, 17 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0e95e26..a0d4dfc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1 +1,10 @@ +### [0.1.1](https://github.com/vzhd1701/gridplayer/compare/v0.1.0...v0.1.1) (2021-10-19) + +### Bug Fixes + +- add dark mode compatibility ([cd778e2](https://github.com/vzhd1701/gridplayer/commit/cd778e2b3841cfb0d2c28a74ee8134f43009c072)) +- add KDE black screen bug fix setting ([0997d3c](https://github.com/vzhd1701/gridplayer/commit/0997d3c377219b085c3088825a8a2d4ff34b6384)) +- prevent accidental playlist overwrite if placeholder is not available ([f686e6e](https://github.com/vzhd1701/gridplayer/commit/f686e6e05031764f262ce74e20ec43e6589387be)) +- show better message if VLC is not installed ([9b23823](https://github.com/vzhd1701/gridplayer/commit/9b23823864a102715d48d6fb149cbf2469ff6673)) + ## 0.1.0 (2021-10-13) diff --git a/README.md b/README.md index d839b5f..5ef1403 100644 --- a/README.md +++ b/README.md @@ -31,14 +31,14 @@ information about the position, sound volume, loops, aspect ratio, etc. ### Windows -[![Download Windows Installer](https://raw.githubusercontent.com/vzhd1701/gridplayer/master/resources/public/dl_windows_installer.png)](https://github.com/vzhd1701/gridplayer/releases/download/v0.1.0/GridPlayer-0.1.0-win64-install.exe) -[![Download Windows Portable](https://raw.githubusercontent.com/vzhd1701/gridplayer/master/resources/public/dl_windows_portable.png)](https://github.com/vzhd1701/gridplayer/releases/download/v0.1.0/GridPlayer-0.1.0-win64-portable.zip) +[![Download Windows Installer](https://raw.githubusercontent.com/vzhd1701/gridplayer/master/resources/public/dl_windows_installer.png)](https://github.com/vzhd1701/gridplayer/releases/download/v0.1.1/GridPlayer-0.1.1-win64-install.exe) +[![Download Windows Portable](https://raw.githubusercontent.com/vzhd1701/gridplayer/master/resources/public/dl_windows_portable.png)](https://github.com/vzhd1701/gridplayer/releases/download/v0.1.1/GridPlayer-0.1.1-win64-portable.zip) ### Linux [![Get it from the Flathub](https://raw.githubusercontent.com/vzhd1701/gridplayer/master/resources/public/dl_flathub.png)](https://flathub.org/apps/details/com.vzhd1701.gridplayer) [![Get it from the Snap Store](https://raw.githubusercontent.com/vzhd1701/gridplayer/master/resources/public/dl_snap.png)](https://snapcraft.io/gridplayer) -[![Download AppImage](https://raw.githubusercontent.com/vzhd1701/gridplayer/master/resources/public/dl_appimage.png)](https://github.com/vzhd1701/gridplayer/releases/download/v0.1.0/GridPlayer-0.1.0-x86_64.AppImage) +[![Download AppImage](https://raw.githubusercontent.com/vzhd1701/gridplayer/master/resources/public/dl_appimage.png)](https://github.com/vzhd1701/gridplayer/releases/download/v0.1.1/GridPlayer-0.1.1-x86_64.AppImage) **For better system integration install via Flathub.** @@ -47,12 +47,12 @@ information about the position, sound volume, loops, aspect ratio, etc. You may need to set execute permissions on AppImage file in order to run it: ```shell -$ chmod +x GridPlayer-0.1.0-x86_64.AppImage +$ chmod +x GridPlayer-0.1.1-x86_64.AppImage ``` ### MacOS -[![Download DMG](https://raw.githubusercontent.com/vzhd1701/gridplayer/master/resources/public/dl_dmg.png)](https://github.com/vzhd1701/gridplayer/releases/download/v0.1.0/GridPlayer.0.1.0.dmg) +[![Download DMG](https://raw.githubusercontent.com/vzhd1701/gridplayer/master/resources/public/dl_dmg.png)](https://github.com/vzhd1701/gridplayer/releases/download/v0.1.1/GridPlayer.0.1.1.dmg) **DMG image is not signed.** You will have to add an exception to run this app. diff --git a/gridplayer/version.py b/gridplayer/version.py index 0c6a7ea..207d6e5 100644 --- a/gridplayer/version.py +++ b/gridplayer/version.py @@ -3,8 +3,8 @@ __author_name__ = "vzhd1701" __author_contact__ = "vzhd1701@gmail.com" __app_id__ = "com.vzhd1701.gridplayer" -__version__ = "0.1.0" -__version_date__ = "2021-10-01" +__version__ = "0.1.1" +__version_date__ = "2021-10-19" __app_url__ = "https://github.com/vzhd1701/gridplayer" __app_license_url__ = "https://github.com/vzhd1701/gridplayer/blob/master/LICENSE" __app_bugtracker_url__ = "https://github.com/vzhd1701/gridplayer/issues" diff --git a/pyproject.toml b/pyproject.toml index 53162b7..34e0465 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "gridplayer" -version = "0.1.0" +version = "0.1.1" description = "Play videos side-by-side" authors = ["vzhd1701 "] readme = "README.md"