Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release/0.3.0 #7

Merged
merged 17 commits into from
Nov 19, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 3 additions & 41 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,43 +1,5 @@
.DS_Store
build
###BrightScript specific
dist/apps
dist/
out/

#Rooibos generated
rooibosFunctionMap.brs

### Eclipse project files

.metadata
bin/
tmp/
*.tmp
*.bak
*.swp
*~.nib
local.properties
.settings/
.loadpath
.recommenders

# Eclipse Core
.project
.classpath

# External tool builders
.externalToolBuilders/

# Locally stored "Eclipse launch configurations"
*.launch

node_modules/
out
**/roku_modules/
package-lock.json

!.vscode
node_modules
.vscode/.env
dist/

.history
**/roku_modules/**
59 changes: 29 additions & 30 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,32 +1,31 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "brightscript",
"request": "launch",
"name": "Roku Youtube App",
"preLaunchTask": "roku-youtube",
"internalConsoleOptions": "neverOpen",
"envFile": "${workspaceFolder}/.vscode/.env",
"host": "${env:ROKU_DEV_TARGET}",
"password": "${env:ROKU_DEVPASSWORD}",
"outDir": "${workspaceFolder}/out",
"rootDir": "${workspaceFolder}/build",
"consoleOutput": "normal",
"stopOnEntry": false,
"retainDeploymentArchive": true,
"retainStagingFolder": true,
"autoRunSgDebugCommands": [],
"files": [
"manifest",
"*.*",
"**/*.*",
"!*.zip",
"!**/*.zip"
]
}
]
"version": "0.2.0",
"configurations": [
{
"type": "brightscript",
"request": "launch",
"envFile": "${workspaceFolder}/.vscode/.env",
"host": "${env:ROKU_DEV_TARGET}",
"password": "${env:ROKU_DEVPASSWORD}",
"stopOnEntry": false,
"enableDebuggerAutoRecovery": false,
"stopDebuggerOnAppExit": false,
"rootDir": "${workspaceFolder}/dist/build",
"preLaunchTask": "build",
"name": "Launch playlet (dev)",
"injectRdbOnDeviceComponent": true
},
{
"type": "brightscript",
"request": "launch",
"host": "${env:ROKU_DEV_TARGET}",
"password": "${env:ROKU_DEVPASSWORD}",
"stopOnEntry": false,
"enableDebuggerAutoRecovery": false,
"stopDebuggerOnAppExit": false,
"rootDir": "${workspaceFolder}/dist/build",
"preLaunchTask": "build-prod",
"name": "Launch playlet (prod)"
}
]
}
155 changes: 0 additions & 155 deletions .vscode/settings.json

This file was deleted.

46 changes: 23 additions & 23 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "roku-youtube",
"type": "shell",
"command": "npm run build",
"problemMatcher": [],
"presentation": {
"echo": true,
"reveal": "silent",
"focus": false,
"panel": "shared",
"showReuseMessage": false,
"clear": true
},
"group": {
"kind": "build",
"isDefault": true
}
}
]
"version": "2.0.0",
"tasks": [
{
"label": "build",
"presentation": {
"close": true,
"reveal": "silent",
"revealProblems": "onProblem"
},
"script": "build",
"type": "npm"
},
{
"label": "build-prod",
"presentation": {
"close": true,
"reveal": "silent",
"revealProblems": "onProblem"
},
"script": "build:prod",
"type": "npm"
}
]
}
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@ 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.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.3.0] - 2022-11-19
### Changed
- App name! new name: **Playlet**

### Added
- Nav bar / menu
- Web server now always on
- Settings page with QR Code
- API Refactor
- New UI

## [0.2.0] - 2022-11-06
### Added
- QrCode component to take user to invidious token page
Expand Down
Loading