Skip to content

Commit 217aed7

Browse files
committed
Update metadata
1 parent 62c513c commit 217aed7

File tree

5 files changed

+16
-17
lines changed

5 files changed

+16
-17
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,4 @@ install
1212
Workbench.flatpak
1313

1414
/subprojects/blueprint-compiler
15+
.fenv

Workbench.doap

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,10 @@
44
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
55
xmlns:foaf="http://xmlns.com/foaf/0.1/"
66
xmlns:gnome="http://api.gnome.org/doap-extensions#"
7-
xmlns="http://usefulinc.com/ns/doap#"
8-
>
7+
xmlns="http://usefulinc.com/ns/doap#">
98
<name>Workbench</name>
109
<shortdesc>Learn and prototype with GNOME technologies</shortdesc>
11-
<description
12-
>Workbench goal is to let you experiment with GNOME technologies, no matter if tinkering for the first time or building and testing a custom GTK widget.</description>
10+
<description>Workbench goal is to let you experiment with GNOME technologies, no matter if tinkering for the first time or building and testing a custom GTK widget.</description>
1311

1412
<homepage rdf:resource="https://workbench.sonny.re" />
1513
<bug-database rdf:resource="https://workbench.sonny.re/feedback" />
@@ -19,6 +17,7 @@
1917
<foaf:Person>
2018
<foaf:name>Sonny Piers</foaf:name>
2119
<foaf:mbox rdf:resource="mailto:[email protected]" />
20+
<gnome:userid>sonnyp</gnome:userid>
2221
<foaf:account>
2322
<foaf:OnlineAccount>
2423
<foaf:accountServiceHomepage rdf:resource="https://github.com/" />
@@ -27,9 +26,7 @@
2726
</foaf:account>
2827
<foaf:account>
2928
<foaf:OnlineAccount>
30-
<foaf:accountServiceHomepage
31-
rdf:resource="https://gitlab.gnome.org"
32-
/>
29+
<foaf:accountServiceHomepage rdf:resource="https://gitlab.gnome.org"/>
3330
<foaf:accountName>sonny</foaf:accountName>
3431
</foaf:OnlineAccount>
3532
</foaf:account>

data/app.metainfo.xml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@
1515
<ul>
1616
<li>realtime GTK/CSS preview</li>
1717
<li>library of examples</li>
18-
<li>1000+ icons</li>
1918
<li>JavaScript and Vala support</li>
2019
<li>XML and Blueprint for describing user interface</li>
2120
<li>syntax highlighting, undo/redo, autosave, session restore</li>
22-
<li>code formatter</li>
21+
<li>code formatter, linter</li>
2322
<li>console logs</li>
23+
<li>1000+ icons</li>
2424
</ul>
2525
</description>
2626
<url type="homepage">https://workbench.sonny.re</url>
@@ -46,15 +46,16 @@
4646
</screenshots>
4747
<content_rating type="oars-1.1" />
4848
<releases>
49-
<release version="43.2" date="2022-12-xx">
49+
<release version="43.3" date="2023-01-xx">
5050
<description>
5151
<ul>
5252
<li>Switching between XML and Blueprint will now convert between the two</li>
5353
<li>Add support for JavaScript diagnostics and linting</li>
5454
<li>Optimize Blueprint preview</li>
5555
<li>Blueprint 0.6.0</li>
5656
<li>Fix preview of non GtkBuildable</li>
57-
<li>Prevent all GtkBuilder related crash</li>
57+
<li>Prevent GtkBuilder related crashes</li>
58+
<li>Reset top-level windows on update</li>
5859
</ul>
5960
</description>
6061
</release>

src/Library/demos/Welcome/main.blp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Box welcome {
3737
icon-size: normal;
3838
}
3939
Label {
40-
label: "Edit Style and UI to reload the Preview";
40+
label: "Edit Style or UI to reload the Preview";
4141
}
4242
}
4343

@@ -75,24 +75,24 @@ Box welcome {
7575
Box {
7676
margin-bottom: 12;
7777
Image {
78-
icon-name: "user-bookmarks-symbolic";
78+
icon-name: "library-symbolic";
7979
margin-end: 12;
8080
icon-size: normal;
8181
}
8282
Label {
83-
label: "Checkout the Bookmarks menu to learn and get help";
83+
label: "Browse the Library for demos and examples";
8484
}
8585
}
8686

8787
Box {
8888
margin-bottom: 12;
8989
Image {
90-
icon-name: "open-book-symbolic";
90+
icon-name: "user-bookmarks-symbolic";
9191
margin-end: 12;
9292
icon-size: normal;
9393
}
9494
Label {
95-
label: "Browse the Library for demos and examples";
95+
label: "Checkout the Bookmarks menu to learn and get help";
9696
}
9797
}
9898
}

src/window.blp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,7 @@ menu menu_app {
511511
item {
512512
label: _("Matrix");
513513
action: "app.open_uri";
514-
target: "https://matrix.to/#/#workbench:matrix.org";
514+
target: "https://matrix.to/#/#workbench:gnome.org";
515515
}
516516
}
517517
}

0 commit comments

Comments
 (0)