1
0
Fork 0

Adding upstream version 20250312.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-03-12 09:52:15 +01:00
parent 16d75ef64d
commit bfa9ea3cc4
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
7 changed files with 21 additions and 12 deletions

View file

@ -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.

View file

@ -1 +1 @@
20250212 20250312

View file

@ -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

View file

@ -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

View file

@ -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() {

View file

@ -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

View file

@ -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)