extensions-app: Rename executable
We kept the old binary name when overhauling the tool for the Extensions app to avoid unnecessary churn for packagers/distributors. However we now have a reason to "free" the old name, so rename the binary to match the (sub)project name. https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1220
This commit is contained in:
parent
3ba4304da9
commit
b02e3719b3
@ -3,7 +3,7 @@
|
|||||||
"runtime": "org.gnome.Platform",
|
"runtime": "org.gnome.Platform",
|
||||||
"runtime-version": "master",
|
"runtime-version": "master",
|
||||||
"sdk": "org.gnome.Sdk",
|
"sdk": "org.gnome.Sdk",
|
||||||
"command": "gnome-shell-extension-prefs",
|
"command": "gnome-extensions-app",
|
||||||
"tags": ["nightly"],
|
"tags": ["nightly"],
|
||||||
"desktop-file-name-prefix": "(Nightly) ",
|
"desktop-file-name-prefix": "(Nightly) ",
|
||||||
"finish-args": [
|
"finish-args": [
|
||||||
|
@ -39,7 +39,7 @@ function toggleState(action) {
|
|||||||
var Application = GObject.registerClass(
|
var Application = GObject.registerClass(
|
||||||
class Application extends Gtk.Application {
|
class Application extends Gtk.Application {
|
||||||
_init() {
|
_init() {
|
||||||
GLib.set_prgname('gnome-shell-extension-prefs');
|
GLib.set_prgname('gnome-extensions-app');
|
||||||
super._init({ application_id: 'org.gnome.Extensions' });
|
super._init({ application_id: 'org.gnome.Extensions' });
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@ project('gnome-extensions-app',
|
|||||||
)
|
)
|
||||||
|
|
||||||
app_id = 'org.gnome.Extensions'
|
app_id = 'org.gnome.Extensions'
|
||||||
prgname = 'gnome-shell-extension-prefs'
|
prgname = 'gnome-extensions-app'
|
||||||
|
|
||||||
gnome = import('gnome')
|
gnome = import('gnome')
|
||||||
i18n = import('i18n')
|
i18n = import('i18n')
|
||||||
|
Loading…
Reference in New Issue
Block a user