Skip to content

Commit

Permalink
[Radio3.0@claudiux] v1.16.1 - Slight improvements
Browse files Browse the repository at this point in the history
[Radio3.0@claudiux] v1.16.1 - Slight improvements
  • Loading branch information
claudiux authored Feb 14, 2024
2 parents 311beca + 250a69c commit 108b8b9
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 11 deletions.
3 changes: 3 additions & 0 deletions Radio3.0@claudiux/files/Radio3.0@claudiux/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### v1.16.1~20240214
* Slight improvements in settings and context menu.

### v1.16.0~20240214
* Bugfixes.

Expand Down
8 changes: 6 additions & 2 deletions Radio3.0@claudiux/files/Radio3.0@claudiux/applet.js
Original file line number Diff line number Diff line change
Expand Up @@ -817,10 +817,14 @@ class R3WebpageMenuItem extends PopupBaseMenuItem {
super(params);
this.parent = parent;

let boxIconLabel = new BoxLayout({ style: 'spacing: 1em' });
let web_icon = new Icon({ icon_name: 'web-browser', icon_type: IconType.SYMBOLIC, style_class: 'popup-menu-icon' });
boxIconLabel.add_actor(web_icon);
let label = new Label({ text: _("Radio3.0 web page...") });
this.addActor(label);
boxIconLabel.add_actor(label);
this.addActor(boxIconLabel);

let stars = new BoxLayout({ style: 'spacing: .25em' });
let stars = new BoxLayout({ style: 'spacing: 0.25em' });
let star_icon = new Icon({ icon_name: 'starred', icon_type: IconType.SYMBOLIC, style_class: 'popup-menu-icon' });
let star_count = new Label({ text: score.toString() });
stars.add_actor(star_icon);
Expand Down
2 changes: 1 addition & 1 deletion Radio3.0@claudiux/files/Radio3.0@claudiux/metadata.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"description": "The Ultimate Internet Radio Receiver & Recorder for Cinnamon",
"max-instances": 1,
"version": "1.16.0",
"version": "1.16.1",
"uuid": "Radio3.0@claudiux",
"name": "Radio3.0",
"author": "claudiux",
Expand Down
33 changes: 25 additions & 8 deletions Radio3.0@claudiux/files/Radio3.0@claudiux/settings-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -434,6 +434,7 @@
"id": "name",
"title": "Station or Category",
"type": "string",
"expand-width": true,
"default": ""
},
{
Expand All @@ -454,30 +455,35 @@
"id": "url",
"title": "Streaming URL (empty for a category)",
"type": "string",
"expand-width": true,
"default": ""
},
{
"id": "uuid",
"title": "Unique identifier",
"type": "string",
"expand-width": true,
"default": ""
},
{
"id": "homepage",
"title": "Home page",
"type": "string",
"expand-width": true,
"default": ""
},
{
"id": "tags",
"title": "Tags",
"type": "string",
"expand-width": true,
"default": ""
},
{
"id": "favicon",
"title": "Favicon",
"type": "string",
"expand-width": true,
"default": ""
},
{
Expand Down Expand Up @@ -613,7 +619,8 @@
{
"id": "name",
"title": "Title",
"type": "string"
"type": "string",
"expand-width": true
},
{
"id": "bitrate",
Expand All @@ -632,7 +639,8 @@
{
"id": "url",
"title": "Streaming URL",
"type": "string"
"type": "string",
"expand-width": true
}
],
"default": [
Expand Down Expand Up @@ -692,6 +700,7 @@
"id": "name",
"title": "Station",
"type": "string",
"expand-width": true,
"default": ""
},
{
Expand All @@ -717,32 +726,38 @@
{
"id": "tags",
"title": "Tags",
"type": "string"
"type": "string",
"expand-width": true
},
{
"id": "url",
"title": "Streaming URL",
"type": "string"
"type": "string",
"expand-width": true
},
{
"id": "country",
"title": "Country",
"type": "string"
"type": "string",
"expand-width": true
},
{
"id": "uuid",
"title": "Unique identifier",
"type": "string"
"type": "string",
"expand-width": true
},
{
"id": "homepage",
"title": "Home page",
"type": "string"
"type": "string",
"expand-width": true
},
{
"id": "favicon",
"title": "Favicon",
"type": "string",
"expand-width": true,
"default": ""
}
],
Expand Down Expand Up @@ -1284,12 +1299,14 @@
{
"id": "station",
"title": "Station",
"type": "string"
"type": "string",
"expand-width": true
},
{
"id": "uuid",
"title": "Identifier",
"type": "string",
"expand-width": true,
"default": ""
}
],
Expand Down

0 comments on commit 108b8b9

Please sign in to comment.