Skip to content

Commit 6a26303

Browse files
authored
Radio3.0 v2.9.0: Vertical maximization of the Settings Window becomes optional (#6957)
1 parent 958f274 commit 6a26303

18 files changed

+1528
-1298
lines changed

Radio3.0@claudiux/files/Radio3.0@claudiux/CHANGELOG.md

+12-8
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,30 @@
1-
### 2.8.3~20250302
1+
### v2.9.0~20250305
2+
* Vertical maximization of the Settings Window becomes optional.
3+
* Fixes #6955.
4+
5+
### v2.8.3~20250302
26
* Improved tooltip management.
37

4-
### 2.8.2~20250218
8+
### v2.8.2~20250218
59
* Improved tooltip layout.
610

7-
### 2.8.1~20250217
11+
### v2.8.1~20250217
812
* Updates the sample station list.
913

10-
### 2.8.0~20250217
14+
### v2.8.0~20250217
1115
* New option to load a sample station list when there is no station in the list.
1216
* Some minor changes.
1317

14-
### 2.7.8~20250205
18+
### v2.7.8~20250205
1519
* Improves applet startup.
1620

17-
### 2.7.7~20250204
21+
### v2.7.7~20250204
1822
* Code improvement.
1923

20-
### 2.7.4~20250116
24+
### v2.7.4~20250116
2125
* mainloopTools library: improvements.
2226

23-
### 2.7.3~20250114
27+
### v2.7.3~20250114
2428
* Increases the size of the stream buffer for improved listening comfort.
2529
* Settings: Sets the default value for each multimedia key bind.
2630

Radio3.0@claudiux/files/Radio3.0@claudiux/applet.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -1343,6 +1343,7 @@ class WebRadioReceiverAndRecorder extends TextIconApplet {
13431343
}
13441344

13451345
get_user_settings() {
1346+
this.settings.bind("maximize-vertically", "maximize_vertically");
13461347
this.settings.bind("image-resolution", "res", () => { this.reload_songArt() });
13471348
this.settings.bind("radiopp-is-here", "radiopp_is_here");
13481349
this.radiopp_is_here = radioppConfigFilePath != null;
@@ -6130,7 +6131,8 @@ class WebRadioReceiverAndRecorder extends TextIconApplet {
61306131
spawnCommandLineAsync('xdg-open "%s"'.format(MANUAL_HTML))
61316132
}
61326133

6133-
configureApplet(tab=0, maximize_vertically=true) {
6134+
configureApplet(tab=0) {
6135+
let maximize_vertically = this.maximize_vertically;
61346136
this.menu.close(false);
61356137

61366138
let nemo_size_prefixes = get_nemo_size_prefixes();

Radio3.0@claudiux/files/Radio3.0@claudiux/metadata.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"description": "The Ultimate Internet Radio Receiver & Recorder for Cinnamon",
33
"max-instances": 1,
4-
"version": "2.8.3",
4+
"version": "2.9.0",
55
"uuid": "Radio3.0@claudiux",
66
"name": "Radio3.0",
77
"author": "claudiux",

0 commit comments

Comments
 (0)