Skip to content

Commit 8ec88e6

Browse files
authored
Reformat files for Blueprint 0.16 (#1001)
1 parent 987a9d4 commit 8ec88e6

File tree

11 files changed

+57
-51
lines changed

11 files changed

+57
-51
lines changed

.vscode/settings.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,7 @@
3030
"builddir"
3131
],
3232
"vala.languageServerPath": "${workspaceFolder}/.flatpak/vala-language-server.sh",
33-
"mesonbuild.configureOnOpen": false
33+
"mesonbuild.configureOnOpen": false,
34+
"mesonbuild.buildFolder": "_build",
35+
"mesonbuild.mesonPath": "${workspaceFolder}/.flatpak/meson.sh"
3436
}

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ lint:
4343
# CSS
4444
./build-aux/fun workbench-cli check css src/**/*.css
4545
# Flatpak manifests
46-
flatpak run --user --command=flatpak-builder-lint org.flatpak.Builder manifest --exceptions build-aux/re.sonny.Workbench.json
47-
flatpak run --user --command=flatpak-builder-lint org.flatpak.Builder manifest --exceptions build-aux/re.sonny.Workbench.Devel.json
46+
flatpak run --user --command=flatpak-builder-lint org.flatpak.Builder manifest --exceptions --user-exceptions ./build-aux/exceptions.json build-aux/re.sonny.Workbench.json
47+
flatpak run --user --command=flatpak-builder-lint org.flatpak.Builder manifest --exceptions --user-exceptions ./build-aux/exceptions.json build-aux/re.sonny.Workbench.Devel.json
4848

4949
unit:
5050
./build-aux/fun gjs -m ./troll/tst/bin.js test/*.test.js

build-aux/exceptions.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"re.sonny.Workbench": ["external-gitmodule-url-found"],
3+
"re.sonny.Workbench.Devel": ["external-gitmodule-url-found"]
4+
}

demos

Submodule demos updated 83 files

src/Extensions/Extension.blp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ template $Extension: ListBoxRow {
2121
icon-name: "re.sonny.Workbench-test-pass-symbolic";
2222

2323
styles [
24-
"success"
24+
"success",
2525
]
2626
}
2727
}
@@ -39,7 +39,7 @@ template $Extension: ListBoxRow {
3939
label: _("Run the following command");
4040

4141
styles [
42-
"dim-label"
42+
"dim-label",
4343
]
4444
}
4545

@@ -52,7 +52,7 @@ template $Extension: ListBoxRow {
5252
xalign: 0;
5353

5454
styles [
55-
"command_snippet"
55+
"command_snippet",
5656
]
5757
}
5858
}

src/Extensions/Extensions.blp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Adw.Dialog dialog {
3838
selection-mode: none;
3939

4040
styles [
41-
"boxed-list"
41+
"boxed-list",
4242
]
4343

4444
$Extension {
@@ -72,7 +72,7 @@ Adw.Dialog dialog {
7272
wrap: true;
7373

7474
styles [
75-
"dim-label"
75+
"dim-label",
7676
]
7777
}
7878

@@ -83,7 +83,7 @@ Adw.Dialog dialog {
8383
wrap: true;
8484

8585
styles [
86-
"dim-label"
86+
"dim-label",
8787
]
8888
}
8989
}

src/Library/EntryRow.blp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ template $EntryRow: Adw.ActionRow {
2828
Label description_label {
2929
styles [
3030
"dim-label",
31-
"caption"
31+
"caption",
3232
]
3333

3434
xalign: 0;

src/Library/Library.blp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Adw.Window window {
4646
label: _("Learn, Test, Remix");
4747

4848
styles [
49-
"title-1"
49+
"title-1",
5050
]
5151
}
5252

@@ -79,7 +79,7 @@ Adw.Window window {
7979
selection-mode: none;
8080

8181
styles [
82-
"boxed-list"
82+
"boxed-list",
8383
]
8484
}
8585

@@ -100,7 +100,7 @@ Adw.Window window {
100100
label: _("No results");
101101

102102
styles [
103-
"title-3"
103+
"title-3",
104104
]
105105
}
106106

@@ -109,7 +109,7 @@ Adw.Window window {
109109
halign: center;
110110

111111
styles [
112-
"pill"
112+
"pill",
113113
]
114114
}
115115
}
@@ -119,7 +119,7 @@ Adw.Window window {
119119
use-markup: true;
120120

121121
styles [
122-
"caption"
122+
"caption",
123123
]
124124
}
125125
}

src/Permissions/Permissions.blp

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Adw.Dialog dialog {
3737
label: _("Permissions Needed");
3838

3939
styles [
40-
"title-1"
40+
"title-1",
4141
]
4242
}
4343

@@ -55,7 +55,7 @@ Adw.Dialog dialog {
5555
xalign: 0;
5656

5757
styles [
58-
"command_snippet"
58+
"command_snippet",
5959
]
6060
}
6161

@@ -71,15 +71,15 @@ Adw.Dialog dialog {
7171
hexpand: true;
7272

7373
styles [
74-
"heading"
74+
"heading",
7575
]
7676
}
7777

7878
Button button_info {
7979
icon-name: "re.sonny.Workbench-external-link-symbolic";
8080

8181
styles [
82-
"flat"
82+
"flat",
8383
]
8484
}
8585
}
@@ -88,7 +88,7 @@ Adw.Dialog dialog {
8888
selection-mode: none;
8989

9090
styles [
91-
"boxed-list"
91+
"boxed-list",
9292
]
9393

9494
Adw.ActionRow {
@@ -101,7 +101,7 @@ Adw.Dialog dialog {
101101
subtitle: _("Grant for your account only");
102102

103103
styles [
104-
"property"
104+
"property",
105105
]
106106
}
107107

@@ -115,7 +115,7 @@ Adw.Dialog dialog {
115115
subtitle: _("Network access");
116116

117117
styles [
118-
"property"
118+
"property",
119119
]
120120
}
121121

@@ -129,7 +129,7 @@ Adw.Dialog dialog {
129129
subtitle: _("Record and play audio");
130130

131131
styles [
132-
"property"
132+
"property",
133133
]
134134
}
135135

@@ -143,7 +143,7 @@ Adw.Dialog dialog {
143143
subtitle: _("Access to input device such as gamepads");
144144

145145
styles [
146-
"property"
146+
"property",
147147
]
148148
}
149149
}

src/widgets/CodeFind.blp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ template $CodeFind: Revealer {
1111

1212
Box {
1313
styles [
14-
"toolbar"
14+
"toolbar",
1515
]
1616

1717
halign: center;
@@ -63,7 +63,7 @@ template $CodeFind: Revealer {
6363

6464
styles [
6565
"circular",
66-
"small"
66+
"small",
6767
]
6868

6969
clicked => $onClose();

0 commit comments

Comments
 (0)