Debian Janitor
68b7915bc6
Remove constraints unnecessary since buster (oldstable)
...
* gnome-shell-extensions: Drop versioned constraint on gnome-shell-common in Replaces.
* gnome-shell-extensions: Drop versioned constraint on gnome-shell-common in Breaks.
Changes-By: deb-scrub-obsolete
2022-11-29 10:14:04 +00:00
Jeremy Bicha
f6e66faf8f
releasing package gnome-shell-extensions version 43.1-1
debian/43.1-1
2022-11-22 14:15:06 -05:00
Jeremy Bicha
ee0bb2c636
New upstream release
2022-11-22 14:13:09 -05:00
Jeremy Bicha
1edb245e85
Update upstream source from tag 'upstream/43.1'
...
Update to upstream version '43.1'
with Debian dir 8c75b5968c
2022-11-22 14:13:08 -05:00
Jeremy Bicha
6bee46bf1a
New upstream version 43.1
upstream/43.1
2022-11-22 14:13:08 -05:00
Florian Müllner
de48d02c62
Bump version to 43.1
...
Update NEWS.
43.1
2022-10-22 18:11:14 +02:00
Florian Müllner
ac3e095e27
Update sass submodule
2022-10-22 18:09:45 +02:00
mowemcfc
95a58358f8
build: Change zip export script shebang to use bash
...
The use of () array syntax and $() (which are not available in Bourne
shell) command substitution implies that this script is meant to be
executed using bash.
Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/244 >
2022-10-22 15:02:56 +02:00
Florian Müllner
cc72a34973
window-list: Explicitly dispose settings on destroy
...
This will not only disconnect the signal handler, but also remove
any bindings. This works around a crash that happens if a setting
that triggers the binding changes at the same time as a setting
that rebuilds the window list; in that case, the binding handler
runs after gjs has dropped its wrapper object, but before the
binding is removed automaticalled when the object is finalized.
https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/issues/416
Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/243 >
2022-09-30 19:55:44 +02:00
Jeremy Bicha
7a010d5a72
releasing package gnome-shell-extensions version 43.0-2
debian/43.0-2
2022-09-27 19:14:00 -04:00
Jeremy Bicha
9e4b7488b3
releasing package gnome-shell-extensions version 43.0-1
debian/43.0-1
2022-09-19 10:57:47 -04:00
Jeremy Bicha
18cf40a521
New upstream release
2022-09-19 10:57:27 -04:00
Jeremy Bicha
ed6d806617
Update upstream source from tag 'upstream/43.0'
...
Update to upstream version '43.0'
with Debian dir d0bf484be0
2022-09-19 10:57:27 -04:00
Jeremy Bicha
f4347d240a
New upstream version 43.0
upstream/43.0
2022-09-19 10:57:25 -04:00
Sabri Ünal
77b35dcda3
Update Turkish translation
2022-09-18 08:11:02 +00:00
Florian Müllner
6ebb41b1e8
Bump version to 43.0
...
Update NEWS.
43.0
2022-09-17 18:41:49 +02:00
Florian Müllner
11cb22bd24
Update sass submodule
2022-09-17 18:40:47 +02:00
Aleksandr Melman
6fc3f5cea2
Update Russian translation
2022-09-17 16:18:03 +00:00
Zurab Kargareteli
c8484e77d3
Update Georgian translation
2022-09-14 14:37:50 +00:00
Pawan Chitrakar
98c5d4a739
Update Nepali translation
2022-09-07 21:15:50 +00:00
Jeremy Bicha
4f5e421539
releasing package gnome-shell-extensions version 43~rc-1
debian/43_rc-1
2022-09-06 14:39:08 -04:00
Jeremy Bicha
72868ac7c5
New upstream release
2022-09-06 14:38:17 -04:00
Jeremy Bicha
5dea503cbd
Update upstream source from tag 'upstream/43_rc'
...
Update to upstream version '43~rc'
with Debian dir eda3854675
2022-09-06 14:38:17 -04:00
Jeremy Bicha
81b8ad4499
New upstream version 43~rc
upstream/43_rc
2022-09-06 14:38:13 -04:00
Florian Müllner
01d3d8fd6d
Bump version to 43.rc
...
Update NEWS.
43.rc
2022-09-04 15:25:43 +02:00
Florian Müllner
47c2834ffa
Update sass submodule
2022-09-04 15:24:50 +02:00
Jeremy Bicha
8f8292afb3
releasing package gnome-shell-extensions version 43~beta-1
debian/43_beta-1
2022-08-21 10:59:29 -04:00
Jeremy Bicha
d505f75c9b
New upstream release
2022-08-21 10:59:17 -04:00
Jeremy Bicha
a8a2729531
Update upstream source from tag 'upstream/43_beta'
...
Update to upstream version '43~beta'
with Debian dir 54ab7f9898
2022-08-21 10:59:17 -04:00
Jeremy Bicha
aeee81a82c
New upstream version 43~beta
upstream/43_beta
2022-08-21 10:59:16 -04:00
Florian Müllner
9f88e98d1b
extensions: Stop monkey-patching signal methods
...
gnome-shell added an EventEmitter class that can be used as base
for any non-GObject class that needs to emit signals.
Use that instead of the old monkey-patching.
Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/240 >
2022-08-20 19:03:36 +02:00
Florian Müllner
4b7055d0da
places-menu: Mark PlacesManager as exported
...
For some reason eslint failed to complain about this.
Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/240 >
2022-08-20 19:03:36 +02:00
Florian Müllner
563d7770d3
lint: Sync with gnome-shell
...
gnome-shell started transitioning to gjs' object spacing rule,
i.e. `{foo: 42}` instead of `{ foo: 42 }`.
We have a much smaller code base than the shell and aren't using
a secondary "allowed-but-deprecated" configuration that allows a
gradual transition, so just pull the switch and update to the new
style.
Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/240 >
2022-08-20 19:00:32 +02:00
Florian Müllner
d62b58b1d9
Bump version to 43.beta
...
Update NEWS.
43.beta
2022-08-10 20:03:20 +02:00
Florian Müllner
4f78bb96a7
Update sass submodule
2022-08-10 20:03:20 +02:00
Florian Müllner
c94678e2be
classic: Adjust to quick settings
...
The aggregate menu has been replaced with quick settings. Adjust
the session mode definition accordingly.
Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/238 >
2022-08-10 16:21:13 +02:00
Nart Tlisha
3c515d42f2
Update Abkhazian translation
2022-07-26 10:45:41 +00:00
Jeremy Bicha
9306ee7a5d
releasing package gnome-shell-extensions version 42.3-1
debian/42.3-1
2022-07-13 17:49:11 +02:00
Jeremy Bicha
e8c8c7d940
New upstream release
2022-07-13 17:48:52 +02:00
Jeremy Bicha
871c9c39dc
Update upstream source from tag 'upstream/42.3'
...
Update to upstream version '42.3'
with Debian dir 1a2f6557b5
2022-07-13 17:46:11 +02:00
Jeremy Bicha
fcefdc3271
New upstream version 42.3
upstream/42.3
2022-07-13 17:46:10 +02:00
Florian Müllner
bb5869f8df
ci: Instruct gitlab to checkout submodules
...
... instead of doing it in the script.
This will become important when we switch to a CI image with an
updated meson version that no longer checks out submodules as
part of the dist command.
Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/237 >
2022-07-11 00:33:47 +02:00
Florian Müllner
faaa66eb3f
ci: Don't define image globally
...
This has been deprecated in favor of defining the default image
in the default section.
Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/237 >
2022-07-11 00:33:47 +02:00
Florian Müllner
14c60eb954
Bump version to 43.alpha
...
Update NEWS.
43.alpha
2022-07-10 14:36:37 +02:00
Florian Müllner
0234cd74f7
Update sass submodule
2022-07-10 14:36:37 +02:00
Florian Müllner
f637e81c8c
native-window-placement: Minor style fix
...
JSDoc prefer "object" over "Object", so update the doc comment
accordingly.
2022-07-10 14:20:25 +02:00
Marco Ciampa
ea82830a9f
Update it.po, corrected the file-manager name File.
2022-07-06 12:51:16 +00:00
Florian Müllner
8b62c38e20
Bump version to 42.3
...
Update NEWS.
42.3
2022-07-02 18:41:28 +02:00
Florian Müllner
4667b4704d
window-list: Open menu on long press
...
Right-click isn't available on touch, so implement long-press as
an alternative.
https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/issues/146
Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/233 >
2022-06-20 14:45:58 +02:00
Florian Müllner
fe60614b41
window-list: Fix primary button action on touch
...
If a click event was triggered via touch rather than a pointer
device, the button parameter is 0 rather than a mouse button
number.
Account for that to make sure that touch events are not misinterpreted
as right clicks.
https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/issues/146
Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/233 >
2022-06-20 14:45:58 +02:00