@girs/bamf-3 4.3.0 → 4.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/bamf-3.d.ts +5 -0
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|

|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
GJS TypeScript type definitions for Bamf-3 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v4.
|
|
8
|
+
GJS TypeScript type definitions for Bamf-3 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v4.4.0.
|
|
9
9
|
|
|
10
10
|
## Install
|
|
11
11
|
|
package/bamf-3.d.ts
CHANGED
|
@@ -176,6 +176,7 @@ export namespace Bamf {
|
|
|
176
176
|
/**
|
|
177
177
|
* Used to fetch the bus name and the object path of the remote application menu.
|
|
178
178
|
* @returns `true` if found, `false` otherwise.
|
|
179
|
+
* @deprecated since 0.5.0
|
|
179
180
|
*/
|
|
180
181
|
get_application_menu(): [boolean, string, string];
|
|
181
182
|
|
|
@@ -208,6 +209,7 @@ export namespace Bamf {
|
|
|
208
209
|
* Used to fetch the application contains a Window with given `xid`.
|
|
209
210
|
* @param xid an X11 Window ID
|
|
210
211
|
* @returns a {@link Bamf.Window} for the passed `xid` or `null` if not found.
|
|
212
|
+
* @since 0.5.2
|
|
211
213
|
*/
|
|
212
214
|
get_window_for_xid(xid: number): Window;
|
|
213
215
|
|
|
@@ -853,6 +855,7 @@ export namespace Bamf {
|
|
|
853
855
|
vfunc_is_urgent(): boolean;
|
|
854
856
|
|
|
855
857
|
/**
|
|
858
|
+
* @since 0.4.0
|
|
856
859
|
* @virtual
|
|
857
860
|
*/
|
|
858
861
|
vfunc_is_user_visible(): boolean;
|
|
@@ -967,6 +970,7 @@ export namespace Bamf {
|
|
|
967
970
|
|
|
968
971
|
/**
|
|
969
972
|
* @returns a boolean useful for determining if a particular view is "user visible". User visible is a concept relating to whether or not a window should be shown in a launcher tasklist.
|
|
973
|
+
* @since 0.4.0
|
|
970
974
|
*/
|
|
971
975
|
is_user_visible(): boolean;
|
|
972
976
|
|
|
@@ -974,6 +978,7 @@ export namespace Bamf {
|
|
|
974
978
|
* Note: Makes sever dbus calls the first time this is called on a view.
|
|
975
979
|
* Dbus messaging is reduced afterwards.
|
|
976
980
|
* @returns Returns a list of {@link Bamf.View} which is owned by the {@link Bamf.View} and should not freed or modified after usage.
|
|
981
|
+
* @since 0.5.2
|
|
977
982
|
*/
|
|
978
983
|
peek_children(): View[];
|
|
979
984
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@girs/bamf-3",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.4.0",
|
|
4
4
|
"description": "GJS TypeScript type definitions for Bamf-3",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "bamf-3.js",
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
"test": "tsc --project tsconfig.json"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@girs/gjs": "^4.
|
|
35
|
-
"@girs/gobject-2.0": "^4.
|
|
36
|
-
"@girs/glib-2.0": "^4.
|
|
34
|
+
"@girs/gjs": "^4.4.0",
|
|
35
|
+
"@girs/gobject-2.0": "^4.4.0",
|
|
36
|
+
"@girs/glib-2.0": "^4.4.0" },
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"typescript": "*"
|
|
39
39
|
},
|