Skip to content

Commit

Permalink
Merge pull request #11 from aabytt/newID
Browse files Browse the repository at this point in the history
New app id
  • Loading branch information
aabytt authored May 30, 2024
2 parents b4745d0 + aee0008 commit 0428876
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
asset_path: ${{github.workspace}}/org.webosbrew.custom-screensaver-aerial.manifest.json
asset_name: org.webosbrew.custom-screensaver-aerial.manifest.json
asset_path: ${{github.workspace}}/webos.custom-screensaver-aerial.manifest.json
asset_name: webos.custom-screensaver-aerial.manifest.json
asset_content_type: application/json
6 changes: 3 additions & 3 deletions appinfo.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "org.webosbrew.custom-screensaver-aerial",
"version": "1.0.5",
"vendor": "webosbrew.org",
"id": "webos.custom-screensaver-aerial",
"version": "1.0.6",
"vendor": "aabytt",
"title": "Aerial Screensaver",
"icon": "assets/icon130.png",
"largeIcon": "assets/icon130.png",
Expand Down
Binary file modified assets/icon130.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion assets/screensaver-main.qml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ WebOSWindow {
property int randomIndex
property int stalledCounter : 0
property string sourceAlt
property string basePath : "file:///media/developer/apps/usr/palm/applications/org.webosbrew.custom-screensaver-aerial/assets/"
property string basePath : "file:///media/developer/apps/usr/palm/applications/webos.custom-screensaver-aerial/assets/"
Component.onCompleted : {
init()
notificationsService.set('disable')
Expand Down
2 changes: 1 addition & 1 deletion assets/settings.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"localeLang": "en-GB","localeLangIndex": 8,"sourceType": "url-4K-SDR","sourceTypeIndex": 3,"osdOpacity": 55,"debug": false, "playLowerQuality": true}
{"localeLang": "en-GB","localeLangIndex": 8,"sourceType": "url-4K-SDR","sourceTypeIndex": 3,"osdOpacity": 60,"debug": false, "playLowerQuality": true}
3 changes: 1 addition & 2 deletions frontend/views/MainPanel.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ var
Item = require('moonstone/Item'),
ToggleItem = require('moonstone/ToggleItem'),
Group = require('enyo/Group');
var basePath = "/media/developer/apps/usr/palm/applications/org.webosbrew.custom-screensaver-aerial";
var basePath = "/media/developer/apps/usr/palm/applications/webos.custom-screensaver-aerial";
var applyPath = basePath + "/assets/apply.sh";
var linkPath = "/var/lib/webosbrew/init.d/50-custom-screensaver-aerial";
var settingsPath = basePath + "/assets/settings.json";
Expand All @@ -23,7 +23,6 @@ module.exports = kind({
name: 'MainPanel',
kind: Panel,
title: 'webOS Aerial Screensaver',
titleBelow: "webosbrew.org",
headerType: 'small',
components: [
{kind: FittableColumns, fit: true, components: [
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.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "org.webosbrew.custom-screensaver-aerial",
"version": "1.0.5",
"name": "webos.custom-screensaver-aerial",
"version": "1.0.6",
"main": "frontend/index.js",
"moduleDir": "frontend",
"scripts": {
Expand Down

0 comments on commit 0428876

Please sign in to comment.