Skip to content
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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file. _(The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).)_

## [33] - 2026-05-10

### Added

- Show devcontainer names below Docker container menu entries in smaller italic text when detected.
- Show devcontainer local folder in a hover tooltip.

## [32] - 2026-04-27

Added Gnome 50 support
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

nitpick (typo): Consider using the canonical capitalization "GNOME" instead of "Gnome".

Using "GNOME" here matches the project's official capitalization and aligns with upstream naming.

Expand Down
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
# Simple bash script to build the GNOME Shell extension
echo "Zipping the extension..."
glib-compile-schemas schemas
zip -r easy_docker_containers@red.software.systems.zip . -x *.git* -x *.idea* -x *.history* -x *.*~ -x *.sh -x *.vscode/*
zip -r easy_docker_containers@red.software.systems.zip . -x "*.git*" -x "*.idea*" -x "*.history*" -x "*.*~" -x "*.sh" -x "*.vscode/*" -x "schemas/gschemas.compiled" -x "venv/*"
echo "Building is done."
89 changes: 89 additions & 0 deletions icons/docker-devcontainer-info-symbolic.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
88 changes: 88 additions & 0 deletions icons/docker-devcontainer-recreate-symbolic.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"uuid": "easy_docker_containers@red.software.systems",
"description": "A GNOME Shell extension (GNOME Panel applet) to be able to generally control your available Docker containers.",
"url": "https://github.com/RedSoftwareSystems/easy_docker_containers",
"version": 32,
"settings-schema": "red.software.systems.easy_docker_containers",
"version": 33,
"settings-schema": "org.gnome.shell.extensions.easy_docker_containers",
"shell-version": ["45", "46", "47", "48", "49", "50"]
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist>
<schema id="red.software.systems.easy_docker_containers" path="/red/software/systems/easy_docker_containers/">
<schema id="org.gnome.shell.extensions.easy_docker_containers" path="/org/gnome/shell/extensions/easy_docker_containers/">
<!-- See also: https://docs.gtk.org/glib/gvariant-format-strings.html -->
<key name="refresh-delay" type="i">
<default>2</default>
Expand Down
Loading