Skip to content
Merged
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: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ Among other things, Workbench comes with
- Declarative user interface syntax
- Autosave, sessions and projects
- Code linter and formatter
- Offline documentation
- Terminal output
- 1000+ icons

Expand Down
8 changes: 1 addition & 7 deletions data/app.metainfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
<li>Declarative user interface syntax</li>
<li>Autosave, sessions and projects</li>
<li>Code linter and formatter</li>
<li>Offline documentation</li>
<li>Terminal output</li>
<li>1000+ icons</li>
</ul>
Expand All @@ -42,9 +41,6 @@
<screenshot>
<image>https://raw.githubusercontent.com/workbenchdev/Workbench/main/data/screenshot-extensions.png</image>
</screenshot>
<screenshot>
<image>https://raw.githubusercontent.com/workbenchdev/Workbench/main/data/screenshot-manuals.png</image>
</screenshot>
</screenshots>
<content_rating type="oars-1.1" />
<releases>
Expand All @@ -53,13 +49,11 @@
<ul>
<li>Add Python support</li>
<li>Add Blueprint formatter support</li>
<li>Replace Manuals with "Biblioteca" available on Flathub</li>
<li>Show which languages are available for each Library entry</li>
<li>Allow opening Library entries in a specific language</li>
<li>Make Library faster to launch</li>
<li>Each Workbench window has its own title</li>
<li>Documentation viewer now sync the sidebar selection with navigation</li>
<li>Add fuzzy search to documentation viewer</li>
<li>Add search result tags to documentation viewer</li>
<li>Do not exit if Library is the last window open</li>
<li>Library: Port entries to libadwaita SpinRow</li>
<li>Library: Fix "Preferences Window" adaptiveness</li>
Expand Down
Binary file removed data/screenshot-manuals.png
Binary file not shown.
8 changes: 0 additions & 8 deletions po/POTFILES
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,6 @@ src/IconLibrary/IconWidget.js
src/IconLibrary/main.blp
src/IconLibrary/main.js
src/sessions.js
src/DocumentationViewer.blp
src/DocumentationViewer.js
src/langs/css/css.js
src/langs/python/Builder.js

Expand All @@ -74,11 +72,5 @@ troll/src/builder.js
troll/src/main.js
src/Extensions/Extensions.blp
src/Extensions/Extensions.js
src/Manuals/DocumentationViewer.blp
src/Manuals/Shortcuts.blp
src/Manuals/Shortcuts.js
src/Manuals/DocumentationViewer.js
src/Library/EntryRow.blp
src/Library/EntryRow.js

src/Manuals/fzy.js
6 changes: 0 additions & 6 deletions src/Extensions/Extensions.blp
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,6 @@ Adw.Window window {
hint: _("To enable Vala support, run the following command in your Console or Terminal");
command: "flatpak install flathub org.freedesktop.Sdk.Extension.vala//23.08";
}

$Extension extension_documentation {
title: _("Documentation");
hint: _("To enable documentation, run the following command in your Console or Terminal");
command: "flatpak install flathub org.gnome.Sdk.Docs//45";
}
}

Label restart_hint {
Expand Down
12 changes: 1 addition & 11 deletions src/Extensions/Extensions.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,22 +30,16 @@ export default function Extensions({ application }) {
picture_illustration,
extension_rust,
extension_vala,
extension_documentation,
restart_hint,
all_set_hint,
} = build(Interface);

picture_illustration.set_resource(illustration);

extension_rust.enabled = isRustEnabled();
extension_documentation.enabled = isDocumentationEnabled();
extension_vala.enabled = isValaEnabled();

for (const extension of [
extension_rust,
extension_documentation,
extension_vala,
]) {
for (const extension of [extension_rust, extension_vala]) {
if (!extension.enabled) {
all_set_hint.set_visible(false);
restart_hint.set_visible(true);
Expand Down Expand Up @@ -78,7 +72,3 @@ export function isRustEnabled() {
export function isValaEnabled() {
return extensions.includes("org.freedesktop.Sdk.Extension.vala");
}

export function isDocumentationEnabled() {
return extensions.includes("org.gnome.Sdk.Docs");
}
166 changes: 0 additions & 166 deletions src/Manuals/DocumentationViewer.blp

This file was deleted.

Loading