Adding upstream version 20250312.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
16d75ef64d
commit
bfa9ea3cc4
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>
|
||||
|
||||
* Releasing version 20250212.
|
||||
|
|
|
@ -1 +1 @@
|
|||
20250212
|
||||
20250312
|
||||
|
|
|
@ -36,6 +36,9 @@ install: build
|
|||
mkdir -p $(DESTDIR)/usr/share/gnome-shell/extensions
|
||||
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
|
||||
rm -f $(DESTDIR)/usr/share/gnome-shell/extensions/$(UUID)/LICENSE
|
||||
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
|
||||
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:
|
||||
rm -rf $(DESTDIR)/usr/share/gnome-shell/extensions/$(UUID)
|
||||
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 {
|
||||
enable() {
|
||||
if (!Main.layoutManager._startingUp) {
|
||||
return;
|
||||
}
|
||||
|
||||
Main.layoutManager.connectObject(
|
||||
'startup-complete',
|
||||
() => Main.overview.hide(),
|
||||
this
|
||||
);
|
||||
if (Main.layoutManager._startingUp)
|
||||
Main.layoutManager.connectObject('startup-complete', () => Main.overview.hide(), this);
|
||||
}
|
||||
|
||||
disable() {
|
||||
|
|
|
@ -1,9 +1,8 @@
|
|||
{
|
||||
"_generated": "Generated by SweetTooth, do not edit",
|
||||
"description": "No overview at start-up. Nothing more.",
|
||||
"name": "No overview at start-up",
|
||||
"original-authors": ["fthx"],
|
||||
"shell-version": ["46", "47"],
|
||||
"shell-version": ["48"],
|
||||
"url": "https://github.com/fthx/no-overview",
|
||||
"uuid": "no-overview@fthx",
|
||||
"version": 999
|
||||
|
|
|
@ -38,6 +38,7 @@ install: build
|
|||
|
||||
# removing unused files
|
||||
rm -f $(DESTDIR)/usr/share/gnome-shell/extensions/$(UUID)/LICENSE
|
||||
rm -f $(DESTDIR)/usr/share/gnome-shell/extensions/$(UUID)/schemas/meson.build
|
||||
|
||||
uninstall:
|
||||
rm -rf $(DESTDIR)/usr/share/gnome-shell/extensions/$(UUID)
|
||||
|
|
Loading…
Add table
Reference in a new issue