Skip to content

Commit

Permalink
Merge branch 'master' into rc-01-03-25
Browse files Browse the repository at this point in the history
  • Loading branch information
vicwomg committed Jan 13, 2025
2 parents a69e495 + fbb6385 commit 2e8c8fe
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{".":"1.8.0"}
{".":"1.9.0"}
15 changes: 15 additions & 0 deletions pikaraoke/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## [1.9.0](https://github.com/vicwomg/pikaraoke/compare/1.8.0...1.9.0) (2025-01-08)


### Features

* support splash screen background video ([#464](https://github.com/vicwomg/pikaraoke/issues/464)) ([5774208](https://github.com/vicwomg/pikaraoke/commit/5774208b95ff8530f564ae62c52af69eba4e65bf))


### Bug Fixes

* allow mp4 files in create_random_playlist, add max_songs param ([5c2db91](https://github.com/vicwomg/pikaraoke/commit/5c2db915dc2a72dde93fd2c9f922b598a2a7e027))
* missing delayed halt function ([9cf7ab8](https://github.com/vicwomg/pikaraoke/commit/9cf7ab87e9a67d5a042cc2f97f48e9b789f39ba5))
* tmp directory is not writeable in android [#549](https://github.com/vicwomg/pikaraoke/issues/549) ([b06367b](https://github.com/vicwomg/pikaraoke/commit/b06367b69d7a0dace7c9555f46353028bacb4cd1))
* volume_change logging error, remove logging in bg_playlist ([147364c](https://github.com/vicwomg/pikaraoke/commit/147364cb59c48623e25f02f83e24fe1401692f53))

## [1.8.0](https://github.com/vicwomg/pikaraoke/compare/1.7.0...1.8.0) (2025-01-03)


Expand Down
3 changes: 1 addition & 2 deletions pikaraoke/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from pikaraoke import karaoke
from pikaraoke.constants import LANGUAGES
from pikaraoke.lib.args import parse_pikaraoke_args
from pikaraoke.lib.current_app import broadcast_event, get_karaoke_instance
from pikaraoke.lib.current_app import get_karaoke_instance
from pikaraoke.lib.ffmpeg import is_ffmpeg_installed
from pikaraoke.lib.file_resolver import delete_tmp_dir
from pikaraoke.lib.get_platform import get_platform
Expand Down Expand Up @@ -221,7 +221,6 @@ def main():
# Close running processes when done
if driver is not None:
driver.close()

delete_tmp_dir()
sys.exit()

Expand Down
2 changes: 1 addition & 1 deletion pikaraoke/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.8.0" # {x-release-please-version}
__version__ = "1.9.0" # {x-release-please-version}
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pikaraoke"
version = "1.8.0"
version = "1.9.0"
description = "Youtube-based Karaoke machine for Raspberry Pi, OSX, Windows, and Linux"
authors = ["Vic Wong"]
readme = "docs/README.md"
Expand Down

0 comments on commit 2e8c8fe

Please sign in to comment.