From 39d540ac4983894ef6cbb341192d41b44149847b Mon Sep 17 00:00:00 2001 From: vzhd1701 Date: Tue, 9 Nov 2021 16:10:41 +0500 Subject: [PATCH] chore(release): 0.1.3 --- CHANGELOG.md | 12 ++++++++++++ README.md | 10 +++++----- gridplayer/version.py | 4 ++-- pyproject.toml | 2 +- 4 files changed, 20 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7e01120..5dd4e06 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +### [0.1.3](https://github.com/vzhd1701/gridplayer/compare/v0.1.2...v0.1.3) (2021-11-09) + +### Features + +- add fit grid modes ([c19b22d](https://github.com/vzhd1701/gridplayer/commit/c19b22d725ed0137e5cdcb6bd3aa187392f9584a)) +- add grid size adjustment ([1dd4d61](https://github.com/vzhd1701/gridplayer/commit/1dd4d6116880c0ae12b14dbfa0d8a198493e125f)) + +### Bug Fixes + +- add missing jump seek actions ([caac5f5](https://github.com/vzhd1701/gridplayer/commit/caac5f5f6d924ecf6de530d90827ed4e641afb46)) +- fix hardware decoding in MacOS ([899ca3b](https://github.com/vzhd1701/gridplayer/commit/899ca3b97aafa93a72dd3c8c5fa7c7b696e3ebdf)) + ### [0.1.2](https://github.com/vzhd1701/gridplayer/compare/v0.1.1...v0.1.2) (2021-11-01) ### Bug Fixes diff --git a/README.md b/README.md index c82a132..3066b29 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.2/GridPlayer-0.1.2-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.2/GridPlayer-0.1.2-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.3/GridPlayer-0.1.3-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.3/GridPlayer-0.1.3-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.2/GridPlayer-0.1.2-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.3/GridPlayer-0.1.3-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.2-x86_64.AppImage +$ chmod +x GridPlayer-0.1.3-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.2/GridPlayer.0.1.2.dmg) +[![Download DMG](https://raw.githubusercontent.com/vzhd1701/gridplayer/master/resources/public/dl_dmg.png)](https://github.com/vzhd1701/gridplayer/releases/download/v0.1.3/GridPlayer.0.1.3.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 14e38f2..47a5209 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.2" -__version_date__ = "2021-11-01" +__version__ = "0.1.3" +__version_date__ = "2021-11-09" __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 f7cbecb..a43b885 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "gridplayer" -version = "0.1.2" +version = "0.1.3" description = "Play videos side-by-side" authors = ["vzhd1701 "] readme = "README.md"