Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 47 #991

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:

- name: Install host dependencies
run: |
sudo apt-get update
sudo apt-get install flatpak mutter flatpak-builder

# Restore caches
Expand Down
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/*/**": true,
"**/.hg/store/**": true,
"**/node_modules/*/**": true,
"**/.flatpak": true,
"**/src/lib": true,
".flatpak": true,
Expand Down
2 changes: 1 addition & 1 deletion data/app.gschema.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<default>true</default>
</key>
<key name="typescript" type="b">
<default>false</default>
<default>true</default>
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vixalien I enable TypeScript by default because it's quite unintrusive currently and marked as "experimental support" in the release notes for now

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sure. It will also allow faster iteration and user feedback

</key>
</schema>
<schema id="@[email protected]" path="/re/sonny/Workbench/">
Expand Down
5 changes: 3 additions & 2 deletions data/app.metainfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,14 @@
</screenshots>
<content_rating type="oars-1.1" />
<releases>
<release version="47.0" date="2024-xx-xx">
<release version="47.0" date="2024-11-12">
<description translatable="no">
<ul>
<li>Use GNOME 47</li>
<li>Add code suggestions/completions support</li>
<li>Add initial TypeScript support</li>
<li>Add Language and Category filters to the Library</li>
<li>Add option to create new blank project</li>
<li>Add experimental TypeScript support</li>
</ul>
<p>Library:</p>
<ul>
Expand All @@ -59,6 +59,7 @@
<li>Add "List View with Sections" demo</li>
<li>Add "List View with a Tree" demo</li>
<li>Add "Bottom Sheet" demo</li>
<li>Add "Database" demo</li>
<li>Update "Spinner" to use AdwSpinner</li>
<li>Port "Dialog" to Python</li>
<li>Port "List View" to Python</li>
Expand Down
6 changes: 6 additions & 0 deletions src/window.blp
Original file line number Diff line number Diff line change
Expand Up @@ -604,6 +604,12 @@ menu menu_app {
section {
label: _("Learn");

item {
label: _("API References");
action: "app.open_uri";
target: "https://apps.gnome.org/Biblioteca/";
}

item {
label: _("Developer Documentation");
action: "app.open_uri";
Expand Down
Loading