Skip to content

Commit 7aaa14d

Browse files
committed
chore(release): 0.5.1
1 parent 2371616 commit 7aaa14d

File tree

4 files changed

+12
-9
lines changed

4 files changed

+12
-9
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66

77
## [Unreleased]
88

9+
## [0.5.1] - 2023-06-05
10+
911
### Added
1012

1113
* Option to transform video (rotate, mirror, transpose) ([236b989](https://github.com/vzhd1701/gridplayer/commit/236b9895b9fc9b5ba7b9ccda503271466a108103))
@@ -253,7 +255,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
253255

254256
- Initial release
255257

256-
[Unreleased]: https://github.com/vzhd1701/gridplayer/compare/v0.5.0...HEAD
258+
[Unreleased]: https://github.com/vzhd1701/gridplayer/compare/v0.5.1...HEAD
259+
[0.5.1]: https://github.com/vzhd1701/gridplayer/compare/v0.5.0...v0.5.1
257260
[0.5.0]: https://github.com/vzhd1701/gridplayer/compare/v0.4.3...v0.5.0
258261
[0.4.3]: https://github.com/vzhd1701/gridplayer/compare/v0.4.2...v0.4.3
259262
[0.4.2]: https://github.com/vzhd1701/gridplayer/compare/v0.4.1...v0.4.2

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ Huge thanks to [every contributor](https://github.com/vzhd1701/gridplayer#transl
4343

4444
### Windows
4545

46-
[![Download Windows Installer](https://raw.githubusercontent.com/vzhd1701/gridplayer/master/resources/public/dl_windows_installer.png)](https://github.com/vzhd1701/gridplayer/releases/download/v0.5.0/GridPlayer-0.5.0-win64-install.exe)
47-
[![Download Windows Portable](https://raw.githubusercontent.com/vzhd1701/gridplayer/master/resources/public/dl_windows_portable.png)](https://github.com/vzhd1701/gridplayer/releases/download/v0.5.0/GridPlayer-0.5.0-win64-portable.zip)
46+
[![Download Windows Installer](https://raw.githubusercontent.com/vzhd1701/gridplayer/master/resources/public/dl_windows_installer.png)](https://github.com/vzhd1701/gridplayer/releases/download/v0.5.1/GridPlayer-0.5.1-win64-install.exe)
47+
[![Download Windows Portable](https://raw.githubusercontent.com/vzhd1701/gridplayer/master/resources/public/dl_windows_portable.png)](https://github.com/vzhd1701/gridplayer/releases/download/v0.5.1/GridPlayer-0.5.1-win64-portable.zip)
4848

4949
Via [scoop](https://scoop.sh/):
5050

@@ -58,7 +58,7 @@ $ scoop install gridplayer
5858

5959
[![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)
6060
[![Get it from the Snap Store](https://raw.githubusercontent.com/vzhd1701/gridplayer/master/resources/public/dl_snap.png)](https://snapcraft.io/gridplayer)
61-
[![Download AppImage](https://raw.githubusercontent.com/vzhd1701/gridplayer/master/resources/public/dl_appimage.png)](https://github.com/vzhd1701/gridplayer/releases/download/v0.5.0/GridPlayer-0.5.0-x86_64.AppImage)
61+
[![Download AppImage](https://raw.githubusercontent.com/vzhd1701/gridplayer/master/resources/public/dl_appimage.png)](https://github.com/vzhd1701/gridplayer/releases/download/v0.5.1/GridPlayer-0.5.1-x86_64.AppImage)
6262

6363
**For better system integration install via Flathub.**
6464

@@ -69,12 +69,12 @@ The AppImage was built using Ubuntu Focal Fossa libraries, so compatibility is U
6969
You may need to set execute permissions on AppImage file in order to run it:
7070

7171
```shell
72-
$ chmod +x GridPlayer-0.5.0-x86_64.AppImage
72+
$ chmod +x GridPlayer-0.5.1-x86_64.AppImage
7373
```
7474

7575
### MacOS
7676

77-
[![Download DMG](https://raw.githubusercontent.com/vzhd1701/gridplayer/master/resources/public/dl_dmg.png)](https://github.com/vzhd1701/gridplayer/releases/download/v0.5.0/GridPlayer.0.5.0.dmg)
77+
[![Download DMG](https://raw.githubusercontent.com/vzhd1701/gridplayer/master/resources/public/dl_dmg.png)](https://github.com/vzhd1701/gridplayer/releases/download/v0.5.1/GridPlayer.0.5.1.dmg)
7878

7979
**DMG image is not signed.** You will have to add an exception to run this app.
8080

gridplayer/version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
__author_name__ = "vzhd1701"
44
__author_contact__ = "vzhd1701@gmail.com"
55
__app_id__ = "com.vzhd1701.gridplayer"
6-
__version__ = "0.5.0"
7-
__version_date__ = "2023-05-18"
6+
__version__ = "0.5.1"
7+
__version_date__ = "2023-06-05"
88
__app_url__ = "https://github.com/vzhd1701/gridplayer"
99
__app_license_url__ = "https://github.com/vzhd1701/gridplayer/blob/master/LICENSE"
1010
__app_bugtracker_url__ = "https://github.com/vzhd1701/gridplayer/issues"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
44

55
[tool.poetry]
66
name = "gridplayer"
7-
version = "0.5.0"
7+
version = "0.5.1"
88
description = "Play videos side-by-side"
99
authors = ["vzhd1701 <vzhd1701@gmail.com>"]
1010
readme = "README.md"

0 commit comments

Comments
 (0)