A tiling window extension for GNOME Shell. Just move a window to the edges of the screen to create a tiling, otherwise move a window over another one, holding down the Control key. Grouped windows minimize, resize, raise and change workspace together. Move or maximize a window to remove it from the group.
Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.
Version | Status |
---|---|
69 | Active |
68 | Rejected |
67 | Rejected |
66 | Rejected |
65 | Active |
64 | Active |
63 | Active |
62 | Active |
61 | Active |
60 | Active |
59 | Active |
58 | Active |
57 | Active |
56 | Active |
55 | Active |
54 | Active |
53 | Rejected |
52 | Active |
51 | Active |
50 | Active |
49 | Active |
48 | Active |
47 | Active |
46 | Rejected |
45 | Active |
44 | Rejected |
43 | Active |
42 | Active |
41 | Active |
40 | Active |
39 | Active |
38 | Rejected |
37 | Rejected |
36 | Active |
35 | Rejected |
34 | Rejected |
33 | Active |
32 | Active |
31 | Active |
30 | Active |
29 | Active |
28 | Active |
27 | Active |
26 | Active |
25 | Active |
24 | Active |
23 | Active |
22 | Rejected |
21 | Rejected |
20 | Active |
19 | Rejected |
18 | Active |
17 | Rejected |
16 | Rejected |
15 | Active |
14 | Rejected |
13 | Active |
12 | Rejected |
11 | Active |
10 | Rejected |
9 | Active |
8 | Rejected |
7 | Rejected |
6 | Rejected |
5 | Rejected |
4 | Rejected |
3 | Active |
2 | Active |
1 | Rejected |
I've removed all the signal handlers on disable (before they were kept but ignored) and they're added again on enable. Then the overview methods are replaced with the original ones and all the internal variables are cleared.
I've removed all the signal handlers on disable (before they were kept but ignored) and they're added again on enable. Then the overview methods are replaced with the original ones (before they were kept and did pass through to the original ones) All the pending idle_add signal handlers are cancelled (they are executed only once and then removed because they return false). At the end all the internal variables are cleared, as in the constructor.
Thanks! 1. Please read #1 in the previous review. If you don't null out those variables, it means they are not going to be garbage collected after disable or uninstall. 2. For timeouts, as I said in the previous review, they should be removed on destroy or disable. Search for `timeout_add` in your code, all of those timeouts should be removed (#4 in version 66).