Skip to content

Commit dbc698a

Browse files
committed
Update libraries for Gnome 49
1 parent bbef7b6 commit dbc698a

File tree

6 files changed

+802
-600
lines changed

6 files changed

+802
-600
lines changed

package.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -47,20 +47,20 @@
4747
"typescript": "^4.8.4"
4848
},
4949
"dependencies": {
50-
"@girs/gjs": "4.0.0-beta.36",
51-
"@girs/gnome-shell": "48.0.4",
52-
"@girs/gnomedesktop-4.0": "^4.0.0-4.0.0-beta.36",
53-
"@girs/soup-3.0": "3.6.5-4.0.0-beta.36"
50+
"@girs/gjs": "4.0.0-beta.37",
51+
"@girs/gnome-shell": "49.0.1",
52+
"@girs/gnomedesktop-4.0": "^4.0.0-4.0.0-beta.37",
53+
"@girs/soup-3.0": "3.6.5-4.0.0-beta.37"
5454
},
5555
"resolutions": {
56-
"@girs/adw-1": "1.8.0-4.0.0-beta.36",
57-
"@girs/clutter-16": "16.0.0-4.0.0-beta.36",
58-
"@girs/gdk-4.0": "4.0.0-4.0.0-beta.36",
59-
"@girs/gdkpixbuf-2.0": "2.0.0-4.0.0-beta.36",
60-
"@girs/gio-2.0": "2.84.4-4.0.0-beta.36",
61-
"@girs/glib-2.0": "2.84.4-4.0.0-beta.36",
62-
"@girs/gobject-2.0": "2.84.4-4.0.0-beta.36",
63-
"@girs/gtk-4.0": "4.19.1-4.0.0-beta.36",
64-
"@girs/st-16": "16.0.0-4.0.0-beta.36"
56+
"@girs/adw-1": "1.8.0-4.0.0-beta.37",
57+
"@girs/clutter-17": "17.0.0-4.0.0-beta.37",
58+
"@girs/gdk-4.0": "4.0.0-4.0.0-beta.37",
59+
"@girs/gdkpixbuf-2.0": "2.0.0-4.0.0-beta.37",
60+
"@girs/gio-2.0": "2.86.0-4.0.0-beta.37",
61+
"@girs/glib-2.0": "2.86.0-4.0.0-beta.37",
62+
"@girs/gobject-2.0": "2.86.0-4.0.0-beta.37",
63+
"@girs/gtk-4.0": "4.20.1-4.0.0-beta.37",
64+
"@girs/st-17": "17.0.0-4.0.0-beta.37"
6565
}
6666
}

rollup.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const metadata: ExtensionMetadata = JSON.parse(data) as ExtensionMetadata;
2424
const explicitMappings = new Map<string, string>(
2525
Object.entries({
2626
'@girs/adw-1': 'gi://Adw',
27-
'@girs/clutter-16': 'gi://Clutter',
27+
'@girs/clutter-17': 'gi://Clutter',
2828
'@girs/gdk-4.0': 'gi://Gdk',
2929
'@girs/gdkpixbuf-2.0': 'gi://GdkPixbuf',
3030
'@girs/gio-2.0': 'gi://Gio',
@@ -33,7 +33,7 @@ const explicitMappings = new Map<string, string>(
3333
'@girs/gnomedesktop-4.0': 'gi://GnomeDesktop?version=4.0',
3434
'@girs/gtk-4.0': 'gi://Gtk',
3535
'@girs/soup-3.0': 'gi://Soup?version=3.0',
36-
'@girs/st-16': 'gi://St',
36+
'@girs/st-17': 'gi://St',
3737
})
3838
);
3939

src/main/resources/metadata.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
"45",
99
"46",
1010
"47",
11-
"48"
11+
"48",
12+
"49"
1213
],
1314
"gettext-domain": "github-manager@mackdk-on-github",
1415
"version": 1

src/main/typescript/widget/GitHubWidget.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
import Clutter from '@girs/clutter-16';
1+
import Clutter from '@girs/clutter-17';
22
import Gio from '@girs/gio-2.0';
33
import { Button } from '@girs/gnome-shell/dist/ui/panelMenu';
44
import GObject from '@girs/gobject-2.0';
5-
import St from '@girs/st-16';
5+
import St from '@girs/st-17';
66

77
import { GObjectMetaInfo, registerGObject } from '@github-manager/utils/gnome';
88

src/main/typescript/widget/WidgetController.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import Clutter from '@girs/clutter-16';
1+
import Clutter from '@girs/clutter-17';
22
import Gdk from '@girs/gdk-4.0';
33
import Gio from '@girs/gio-2.0';
44
import { Extension } from '@girs/gnome-shell/dist/extensions/extension';

0 commit comments

Comments
 (0)