Skip to content

Commit

Permalink
Release v0.25.6 (#456)
Browse files Browse the repository at this point in the history
* Release v0.25.6

* Lint fix

---------

Co-authored-by: github-action linter <githubaction@githubaction.com>
  • Loading branch information
iBicha and github-action linter authored Sep 12, 2024
1 parent 026a1d4 commit a0efb3b
Show file tree
Hide file tree
Showing 13 changed files with 41 additions and 16 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [0.25.6] - 2024-09-12

### Added

Expand Down
2 changes: 1 addition & 1 deletion docs/playlet-web-api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ openapi: 3.0.0

info:
title: Playlet Web API
version: 0.25.5
version: 0.25.6
description:
Playlet Web API is a RESTful API for controlling the Playlet app on
Roku devices. The API is intended to be used by the Playlet web app, but can
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "playlet",
"version": "0.25.5",
"version": "0.25.6",
"description": "Unofficial YouTube client for Roku",
"devDependencies": {
"@rokucommunity/bslint": "^0.8.24",
Expand Down
4 changes: 2 additions & 2 deletions playlet-app/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion playlet-app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "playlet-app",
"version": "0.25.5",
"version": "0.25.6",
"description": "Unofficial YouTube client for Roku",
"scripts": {
"prebuild": "rm -rf ../build/playlet-app",
Expand Down
2 changes: 1 addition & 1 deletion playlet-app/src/manifest
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title=Playlet
# Do not update version manually, it is auto updated from package.json
major_version=0
minor_version=25
build_version=00005
build_version=00006

ui_resolutions=hd
uri_resolution_autosub=$$RES$$,480p,720p,1080p
Expand Down
4 changes: 2 additions & 2 deletions playlet-lib/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion playlet-lib/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "playlet-lib",
"version": "0.25.5",
"version": "0.25.6",
"description": "Unofficial YouTube client for Roku",
"scripts": {
"prebuild": "rm -rf ../build/playlet-lib",
Expand Down
25 changes: 25 additions & 0 deletions playlet-lib/src/components/MainScene.transpiled.brs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
'import "pkg:/components/parts/AutoBind/AutoBind.part.bs"
'import "pkg:/components/parts/AutoBind/OnNodeReadyNoOp.bs"
'import "pkg:/source/utils/LoadingScreen.bs"
'import "pkg:/source/utils/Locale.bs"

function Init()
InitializeBindings() ' auto-generated!
Expand All @@ -19,6 +20,7 @@ function MainSceneContainerChanged()
InitEcpArgs()
m.scene.signalBeacon("AppLaunchComplete")
CopyLoadingMessagesToCache()
ShowAnnouncement()
end function

function StartWebServer()
Expand All @@ -29,4 +31,27 @@ function StartWebServer()
m.dialServer = m.top.findNode("DialServer")
m.dialServer.callfunc("StartServer", invalid)
end function

function ShowAnnouncement()
title = "Announcement"
message = [
"Hello again!"
"Invidious servers are actively getting blocked by YouTube."
"You might see the error message " + chr(34) + "This helps protect our community. Learn more" + chr(34) + " when playing a video."
"This is a known issue and the Invidious dev team is working to fix it."
"See more information at https://github.com/iv-org/invidious/issues/4734"
"We apologize for the inconvenience."
]
buttons = [
Tr("OK")
]
dialog = CreateObject("roSGNode", "SimpleDialog")
dialog.title = title
dialog.message = message
dialog.buttons = buttons
deviceInfo = CreateObject("roDeviceInfo")
displaySize = deviceInfo.GetDisplaySize()
dialog.width = displaySize.w - 180
m.top.getScene().dialog = dialog
end function
'//# sourceMappingURL=./MainScene.brs.map
2 changes: 1 addition & 1 deletion playlet-lib/src/manifest
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title=PlayletLib
# Do not update version manually, it is auto updated from package.json
major_version=0
minor_version=25
build_version=00005
build_version=00006

ui_resolutions=hd
uri_resolution_autosub=$$RES$$,480p,720p,1080p
Expand Down
4 changes: 2 additions & 2 deletions playlet-web/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion playlet-web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "playlet-web",
"version": "0.25.5",
"version": "0.25.6",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down

0 comments on commit a0efb3b

Please sign in to comment.