Skip to content

Commit c12f6ee

Browse files
committed
version 16.4: new translations, bug fix windows suggestions in GNOME 48, and more
1 parent fa36325 commit c12f6ee

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+3976
-1456
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Have issues, you want to suggest a new feature or contribute? Please open a new
4141
| [⬇️](#smart-border-radius) **Smart border radius** | [⬇️](#windows-suggestions) **Windows Suggestions**
4242

4343
## 🎉🎉 Tiling Shell's AWESOME Supporters!
44-
Thank you to the :star2: **amazing** <a href="https://patreon.com/domferr"><img src="https://img.shields.io/badge/Patreons-F96854?logo=patreon&logoColor=white)" height="14px"/><a/> and **everyone** who donated on <a href="https://ko-fi.com/domferr"><img src="https://img.shields.io/badge/_Ko--fi-794bc4?logo=ko-fi&logoColor=white" height="14px"/><a/>! :medal_sports:Tomoyuki Kashiro and Markus Huggler on Patreon:medal_sports: and Nick, thy-fi, iatanas0v, Chris, wbezs, DaneshManoharan, Tamas, Ivan Banha and many more on Ko-fi! You are on a mission to **make Linux window management better for everyone**!
44+
Thank you to the :star2: **amazing** <a href="https://patreon.com/domferr"><img src="https://img.shields.io/badge/Patreons-F96854?logo=patreon&logoColor=white)" height="14px"/><a/> and **everyone** who donated on <a href="https://ko-fi.com/domferr"><img src="https://img.shields.io/badge/_Ko--fi-794bc4?logo=ko-fi&logoColor=white" height="14px"/><a/>! :medal_sports:Sean, Markus Huggler, Kostja Palović and Jesse Dhillon on Patreon:medal_sports: and Nick, thy-fi, iatanas0v, Chris, wbezs, DaneshManoharan, Tamas, Ivan Banha and many more on Ko-fi! You are on a mission to **make Linux window management better for everyone**!
4545

4646
### Tiling System ###
4747
When grabbing and moving a window, press <kbd>CTRL</kbd> key to show the tiling layout (you can choose another key from the preferences). When moving on a tile, it will highlight. Ungrab the window to place that window on the highlighted tile.

package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tilingshell",
3-
"version": "16.3",
3+
"version": "16.4",
44
"author": "Domenico Ferraro <ferraro.domenico125@gmail.com>",
55
"private": true,
66
"license": "GPL v2.0",
@@ -36,7 +36,6 @@
3636
"typescript-eslint": "^7.15.0"
3737
},
3838
"dependencies": {
39-
"@girs/gjs": "^3.3.0",
40-
"@girs/gnome-shell": "^46.0.0-beta6"
39+
"@girs/gnome-shell": "^48.0.2"
4140
}
4241
}
359 Bytes
Binary file not shown.
13.9 KB
Binary file not shown.
13.9 KB
Binary file not shown.
13.9 KB
Binary file not shown.
17 KB
Binary file not shown.
12.3 KB
Binary file not shown.

resources/metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"48"
1313
],
1414
"version": 99,
15-
"version-name": "16.3",
15+
"version-name": "16.4",
1616
"url": "https://github.com/domferr/tilingshell",
1717
"settings-schema": "org.gnome.shell.extensions.tilingshell",
1818
"gettext-domain": "tilingshell",

src/components/editor/editorDialog.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import * as Main from 'resource:///org/gnome/shell/ui/main.js';
1111
import {
1212
enableScalingFactorSupport,
1313
getMonitorScalingFactor,
14-
setWidgetOrientation,
14+
widgetOrientation,
1515
} from '@utils/ui';
1616
import { _ } from '../../translations';
1717

@@ -199,8 +199,8 @@ export default class EditorDialog extends ModalDialog.ModalDialog {
199199

200200
const legend = new St.BoxLayout({
201201
styleClass: 'legend',
202+
...widgetOrientation(true),
202203
});
203-
setWidgetOrientation(legend, true);
204204
legend.add_child(suggestion1);
205205
legend.add_child(suggestion2);
206206
legend.add_child(suggestion3);
@@ -241,8 +241,8 @@ export default class EditorDialog extends ModalDialog.ModalDialog {
241241
const box = new St.BoxLayout({
242242
xAlign: Clutter.ActorAlign.CENTER,
243243
styleClass: 'layout-button-container',
244+
...widgetOrientation(true),
244245
});
245-
setWidgetOrientation(box, true);
246246
this._layoutsBoxLayout.add_child(box);
247247
const btn = new LayoutButton(
248248
box,
@@ -286,8 +286,8 @@ export default class EditorDialog extends ModalDialog.ModalDialog {
286286
const box = new St.BoxLayout({
287287
xAlign: Clutter.ActorAlign.CENTER,
288288
styleClass: 'layout-button-container',
289+
...widgetOrientation(true),
289290
});
290-
setWidgetOrientation(box, true);
291291
this._layoutsBoxLayout.add_child(box);
292292
const newLayoutBtn = new LayoutButton(
293293
box,

0 commit comments

Comments
 (0)