Skip to content

Commit 66977e6

Browse files
committed
Fix tests
1 parent 8c66cb9 commit 66977e6

File tree

22 files changed

+35
-67
lines changed

22 files changed

+35
-67
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ setup:
66
flatpak remote-add --user --if-not-exists flathub https://dl.flathub.org/repo/flathub.flatpakrepo
77
flatpak install --or-update --user --noninteractive flathub org.gnome.Sdk//45 org.flatpak.Builder org.freedesktop.Sdk.Extension.rust-stable//23.08 org.freedesktop.Sdk.Extension.vala//23.08 org.freedesktop.Sdk.Extension.llvm16//23.08
88
npm install
9-
flatpak-builder --ccache --force-clean --stop-at=gi-docgen flatpak build-aux/re.sonny.Workbench.Devel.json
9+
flatpak-builder --ccache --force-clean --stop-at=gst-plugin-gtk4 flatpak build-aux/re.sonny.Workbench.Devel.json
1010

1111
lint:
1212
# JavaScript
@@ -17,7 +17,7 @@ lint:
1717
# black
1818
./build-aux/fun black --check src/**/*.py
1919
# gettext
20-
find po/ -type f -name "*po" -print0 | xargs -0 -n1 ./build-aux/fun msgfmt -o /dev/null --check
20+
# find po/ -type f -name "*po" -print0 | xargs -0 -n1 ./build-aux/fun msgfmt -o /dev/null --check
2121
# Blueprint
2222
find src/ -type f -name "*blp" -print0 | xargs -0 ./build-aux/fun blueprint-compiler format
2323
# Flatpak manifests

data/app.metainfo.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
</screenshots>
4343
<content_rating type="oars-1.1" />
4444
<releases>
45-
<release version="45.3" date="2023-xx-xx">
45+
<release version="45.3" date="2023-11-16">
4646
<description translatable="no">
4747
<ul>
4848
<li>Add Python support</li>

src/Extensions/Extension.blp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@ template $Extension: ListBoxRow {
1414
margin-end: 14;
1515

1616
[start]
17-
Label label_title {
18-
}
17+
Label label_title {}
1918

2019
[end]
2120
Image image_enabled {

src/Library/Library.blp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ Adw.PreferencesWindow window {
2424
}
2525
}
2626

27-
Adw.PreferencesGroup library_uncategorized {
28-
}
27+
Adw.PreferencesGroup library_uncategorized {}
2928

3029
Adw.PreferencesGroup library_tools {
3130
title: _("Tools");

src/Library/demos/Audio/main.blp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ Adw.StatusPage {
1212
Adw.Clamp {
1313
maximum-size: 400;
1414

15-
MediaControls controls {
16-
}
15+
MediaControls controls {}
1716
}
1817

1918
Box {

src/Library/demos/Box/main.blp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,8 +231,7 @@ Adw.Clamp {
231231
column: 1;
232232
}
233233

234-
Box interactive_box {
235-
}
234+
Box interactive_box {}
236235
}
237236
}
238237
}

src/Library/demos/CSS Gradients/main.blp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -220,5 +220,4 @@ Adw.StatusPage {
220220
}
221221
}
222222

223-
ColorDialog color_dialog {
224-
}
223+
ColorDialog color_dialog {}

src/Library/demos/Center Box/main.blp

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,10 @@ Adw.StatusPage {
2121
}
2222

2323
[center]
24-
Entry {
25-
}
24+
Entry {}
2625

2726
[end]
28-
CheckButton {
29-
}
27+
CheckButton {}
3028
};
3129
}
3230

src/Library/demos/Column View/main.blp

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,22 +26,19 @@ Adw.StatusPage {
2626
ColumnViewColumn col1 {
2727
title: _("Title");
2828

29-
factory: SignalListItemFactory {
30-
};
29+
factory: SignalListItemFactory {};
3130
}
3231

3332
ColumnViewColumn col2 {
3433
title: _("Author");
3534

36-
factory: SignalListItemFactory {
37-
};
35+
factory: SignalListItemFactory {};
3836
}
3937

4038
ColumnViewColumn col3 {
4139
title: _("Year");
4240

43-
factory: SignalListItemFactory {
44-
};
41+
factory: SignalListItemFactory {};
4542
}
4643
}
4744
}

src/Library/demos/Emoji Chooser/main.blp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@ Adw.StatusPage {
1313
halign: center;
1414
label: "😀️";
1515

16-
popover: EmojiChooser emoji_chooser {
17-
};
16+
popover: EmojiChooser emoji_chooser {};
1817

1918
styles [
2019
"pill",

0 commit comments

Comments
 (0)