Skip to content

Commit

Permalink
chore(release): 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vzhd1701 committed Dec 29, 2021
1 parent 4faf234 commit b048d5a
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 8 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
## [0.2.0](https://github.com/vzhd1701/gridplayer/compare/v0.1.6...v0.2.0) (2021-12-29)

### Features

- add internationalization support ([2c436e6](https://github.com/vzhd1701/gridplayer/commit/2c436e60c66101405204520c164f0a9f460d110e))
- add option to disable overlay timeout ([4d0782a](https://github.com/vzhd1701/gridplayer/commit/4d0782aa1ee46c20068bc9022ac2cee6e8c9a966))
- add option to loop through videos in directory ([cd78f48](https://github.com/vzhd1701/gridplayer/commit/cd78f48ff0466226951a5e4449e66f4cbad84d8e))
- add option to rename videos and set custom color ([a2cba33](https://github.com/vzhd1701/gridplayer/commit/a2cba335c7cc45995b4d5f204cff1b1b5d8b36f7))
- add Russian translation ([e1d81c3](https://github.com/vzhd1701/gridplayer/commit/e1d81c33bdd29fcd3b045dc01f0deef707f738ce))

### Bug Fixes

- set proper name for about dialog ([c9bbda5](https://github.com/vzhd1701/gridplayer/commit/c9bbda5ca2088352c67444c4442953e8c411d4a9))

### [0.1.6](https://github.com/vzhd1701/gridplayer/compare/v0.1.5...v0.1.6) (2021-12-01)

### Bug Fixes
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,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.6/GridPlayer-0.1.6-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.6/GridPlayer-0.1.6-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.2.0/GridPlayer-0.2.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.2.0/GridPlayer-0.2.0-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.6/GridPlayer-0.1.6-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.2.0/GridPlayer-0.2.0-x86_64.AppImage)

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

Expand All @@ -48,12 +48,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.6-x86_64.AppImage
$ chmod +x GridPlayer-0.2.0-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.6/GridPlayer.0.1.6.dmg)
[![Download DMG](https://raw.githubusercontent.com/vzhd1701/gridplayer/master/resources/public/dl_dmg.png)](https://github.com/vzhd1701/gridplayer/releases/download/v0.2.0/GridPlayer.0.2.0.dmg)

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

Expand Down
4 changes: 2 additions & 2 deletions gridplayer/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
__author_name__ = "vzhd1701"
__author_contact__ = "[email protected]"
__app_id__ = "com.vzhd1701.gridplayer"
__version__ = "0.1.6"
__version_date__ = "2021-12-01"
__version__ = "0.2.0"
__version_date__ = "2021-12-29"
__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"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "gridplayer"
version = "0.1.6"
version = "0.2.0"
description = "Play videos side-by-side"
authors = ["vzhd1701 <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit b048d5a

Please sign in to comment.