Merging upstream version 20250312:
- updates no-overview for GNOME 48 (Closes: #1100049) - compiles missing schemas (Closes: #1099496) Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
ee9cb584ef
commit
3a6bf5b067
7 changed files with 21 additions and 12 deletions
|
@ -1,3 +1,13 @@
|
||||||
|
2025-03-12 Daniel Baumann <daniel.baumann@progress-linux.org>
|
||||||
|
|
||||||
|
* Releasing version 20250312.
|
||||||
|
|
||||||
|
[ Daniel Baumann ]
|
||||||
|
* Updating 48/no-overview to version 48 [36f1f8a].
|
||||||
|
* Removing further unused files in vertical-workspaces extension.
|
||||||
|
* Adding manual compilation of schemas for just-perfection.
|
||||||
|
* Adding manual compilation of schemas for middleclickclose.
|
||||||
|
|
||||||
2025-02-12 Daniel Baumann <daniel.baumann@progress-linux.org>
|
2025-02-12 Daniel Baumann <daniel.baumann@progress-linux.org>
|
||||||
|
|
||||||
* Releasing version 20250212.
|
* Releasing version 20250212.
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
20250212
|
20250312
|
||||||
|
|
|
@ -36,6 +36,9 @@ install: build
|
||||||
mkdir -p $(DESTDIR)/usr/share/gnome-shell/extensions
|
mkdir -p $(DESTDIR)/usr/share/gnome-shell/extensions
|
||||||
unzip $(EXTENSION)/*.zip -d $(DESTDIR)/usr/share/gnome-shell/extensions/$(UUID)
|
unzip $(EXTENSION)/*.zip -d $(DESTDIR)/usr/share/gnome-shell/extensions/$(UUID)
|
||||||
|
|
||||||
|
# compiling schema
|
||||||
|
glib-compile-schemas $(DESTDIR)/usr/share/gnome-shell/extensions/$(UUID)/schemas
|
||||||
|
|
||||||
# removing unused files
|
# removing unused files
|
||||||
rm -f $(DESTDIR)/usr/share/gnome-shell/extensions/$(UUID)/LICENSE
|
rm -f $(DESTDIR)/usr/share/gnome-shell/extensions/$(UUID)/LICENSE
|
||||||
rm -f $(DESTDIR)/usr/share/gnome-shell/extensions/$(UUID)/CHANGELOG.md
|
rm -f $(DESTDIR)/usr/share/gnome-shell/extensions/$(UUID)/CHANGELOG.md
|
||||||
|
|
|
@ -36,6 +36,9 @@ install: build
|
||||||
mkdir -p $(DESTDIR)/usr/share/gnome-shell/extensions
|
mkdir -p $(DESTDIR)/usr/share/gnome-shell/extensions
|
||||||
unzip $(EXTENSION)/*.zip -d $(DESTDIR)/usr/share/gnome-shell/extensions/$(UUID)
|
unzip $(EXTENSION)/*.zip -d $(DESTDIR)/usr/share/gnome-shell/extensions/$(UUID)
|
||||||
|
|
||||||
|
# compiling schema
|
||||||
|
glib-compile-schemas $(DESTDIR)/usr/share/gnome-shell/extensions/$(UUID)/schemas
|
||||||
|
|
||||||
uninstall:
|
uninstall:
|
||||||
rm -rf $(DESTDIR)/usr/share/gnome-shell/extensions/$(UUID)
|
rm -rf $(DESTDIR)/usr/share/gnome-shell/extensions/$(UUID)
|
||||||
rmdir --ignore-fail-on-non-empty --parents $(DESTDIR) || true
|
rmdir --ignore-fail-on-non-empty --parents $(DESTDIR) || true
|
||||||
|
|
|
@ -9,15 +9,8 @@ import * as Main from 'resource:///org/gnome/shell/ui/main.js';
|
||||||
|
|
||||||
export default class NoOverviewExtension {
|
export default class NoOverviewExtension {
|
||||||
enable() {
|
enable() {
|
||||||
if (!Main.layoutManager._startingUp) {
|
if (Main.layoutManager._startingUp)
|
||||||
return;
|
Main.layoutManager.connectObject('startup-complete', () => Main.overview.hide(), this);
|
||||||
}
|
|
||||||
|
|
||||||
Main.layoutManager.connectObject(
|
|
||||||
'startup-complete',
|
|
||||||
() => Main.overview.hide(),
|
|
||||||
this
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
disable() {
|
disable() {
|
||||||
|
|
|
@ -1,9 +1,8 @@
|
||||||
{
|
{
|
||||||
"_generated": "Generated by SweetTooth, do not edit",
|
|
||||||
"description": "No overview at start-up. Nothing more.",
|
"description": "No overview at start-up. Nothing more.",
|
||||||
"name": "No overview at start-up",
|
"name": "No overview at start-up",
|
||||||
"original-authors": ["fthx"],
|
"original-authors": ["fthx"],
|
||||||
"shell-version": ["46", "47"],
|
"shell-version": ["48"],
|
||||||
"url": "https://github.com/fthx/no-overview",
|
"url": "https://github.com/fthx/no-overview",
|
||||||
"uuid": "no-overview@fthx",
|
"uuid": "no-overview@fthx",
|
||||||
"version": 999
|
"version": 999
|
||||||
|
|
|
@ -38,6 +38,7 @@ install: build
|
||||||
|
|
||||||
# removing unused files
|
# removing unused files
|
||||||
rm -f $(DESTDIR)/usr/share/gnome-shell/extensions/$(UUID)/LICENSE
|
rm -f $(DESTDIR)/usr/share/gnome-shell/extensions/$(UUID)/LICENSE
|
||||||
|
rm -f $(DESTDIR)/usr/share/gnome-shell/extensions/$(UUID)/schemas/meson.build
|
||||||
|
|
||||||
uninstall:
|
uninstall:
|
||||||
rm -rf $(DESTDIR)/usr/share/gnome-shell/extensions/$(UUID)
|
rm -rf $(DESTDIR)/usr/share/gnome-shell/extensions/$(UUID)
|
||||||
|
|
Loading…
Add table
Reference in a new issue