diff --git a/README.md b/README.md index a6fe609..485c450 100644 --- a/README.md +++ b/README.md @@ -213,12 +213,12 @@ Install directly from the [Gnome Shell Extensions site](https://extensions.gnome.org/extension/5943/soft-brightness-plus/). Or download the [zip -file](https://github.com/jkitching/soft-brightness/releases/download/v36/soft-brightness-plus@joelkitching.com.v36.shell-extension.zip) +file](https://github.com/jkitching/soft-brightness/releases/download/v38/soft-brightness-plus@joelkitching.com.v38.shell-extension.zip) from the GitHub [releases page](https://github.com/jkitching/soft-brightness-plus/releases) and run: ``` shell -gnome-extensions install soft-brightness-plus@joelkitching.com.v36.shell-extension.zip +gnome-extensions install soft-brightness-plus@joelkitching.com.v38.shell-extension.zip ``` ## Building from source @@ -241,6 +241,16 @@ gnome-extensions install soft-brightness-plus@joelkitching.com.v36.shell-extensi ## Changelog +### Version 38 +#### April 9, 2024 + +- Update MouseSpriteContent in src/cursor.js to match + changes in gnome-shell/js/ui/magnifier.js. +- Rename Clutter.Container terminology in function calls + and signal names from "actor" to "child". +- Fix a bug which would access a previously-removed + property when changing the "use-backlight" setting. + ### Version 37 #### November 17, 2023 diff --git a/meson-gse.build b/meson-gse.build index 8d60ab2..9c6c510 100644 --- a/meson-gse.build +++ b/meson-gse.build @@ -17,7 +17,7 @@ gse_project({soft-brightness-plus}, {joelkitching.com}, - {36}, + {38}, { gse_sources += files('src/utils.js', 'src/cursor.js', 'src/logger.js') gse_libs += [] diff --git a/meson.build b/meson.build index 8431dac..67b8479 100644 --- a/meson.build +++ b/meson.build @@ -36,7 +36,7 @@ # Boilerplate project('soft-brightness-plus', - version: '36', + version: '38', meson_version: '>= 0.50.0', license: 'GPL3' )