-
-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
19 changed files
with
275 additions
and
105 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,115 @@ | ||
{ | ||
"app-id": "dev.geopjr.Tuba", | ||
"runtime": "org.gnome.Platform", | ||
"runtime-version": "master", | ||
"sdk": "org.gnome.Sdk", | ||
"command": "dev.geopjr.Tuba", | ||
"finish-args": [ | ||
"--device=dri", | ||
"--share=ipc", | ||
"--share=network", | ||
"--socket=fallback-x11", | ||
"--socket=wayland", | ||
"--socket=pulseaudio" | ||
], | ||
"cleanup": [ | ||
"/include", | ||
"/lib/pkgconfig", | ||
"/man", | ||
"/share/doc", | ||
"/share/gtk-doc", | ||
"/share/man", | ||
"/share/pkgconfig", | ||
"/share/vala", | ||
"*.la", | ||
"*.a" | ||
], | ||
"modules": [ | ||
{ | ||
"name": "libsass", | ||
"buildsystem": "meson", | ||
"cleanup": [ | ||
"*" | ||
], | ||
"sources": [ | ||
{ | ||
"type": "git", | ||
"url": "https://github.com/lazka/libsass.git", | ||
"commit": "302397c0c8ae2d7ab02f45ea461c2c3d768f248e" | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "sassc", | ||
"buildsystem": "meson", | ||
"cleanup": [ | ||
"*" | ||
], | ||
"sources": [ | ||
{ | ||
"type": "git", | ||
"url": "https://github.com/lazka/sassc.git", | ||
"commit": "82803377c33247265d779af034eceb5949e78354" | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "gtk", | ||
"buildsystem": "meson", | ||
"config-opts": [ | ||
"-Dbuildtype=release", | ||
"-Dprint-cups=disabled", | ||
"-Dbuild-demos=false", | ||
"-Dbuild-testsuite=false", | ||
"-Dbuild-examples=false", | ||
"-Dbuild-tests=false" | ||
], | ||
"cleanup": [ | ||
"/bin/gtk*" | ||
], | ||
"sources": [ | ||
{ | ||
"type": "git", | ||
"url": "https://gitlab.gnome.org/GNOME/gtk.git", | ||
"tag": "4.17.2" | ||
}, | ||
{ | ||
"type": "patch", | ||
"path": "listview_lower_min_recycler.patch" | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "libspelling", | ||
"buildsystem": "meson", | ||
"config-opts": [ | ||
"-Ddocs=false" | ||
], | ||
"sources": [ | ||
{ | ||
"type": "git", | ||
"url": "https://gitlab.gnome.org/GNOME/libspelling.git", | ||
"tag": "0.4.5" | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "tuba", | ||
"builddir": true, | ||
"buildsystem": "meson", | ||
"config-opts": [ | ||
"-Ddevel=true", | ||
"--libdir=lib" | ||
], | ||
"sources": [ | ||
{ | ||
"type": "dir", | ||
"path": "../" | ||
} | ||
] | ||
} | ||
], | ||
"build-options": { | ||
"env": {} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
diff --git a/gtk/gtklistview.c b/gtk/gtklistview.c | ||
--- gtk/gtklistview.c | ||
+++ gtk/gtklistview.c | ||
@@ -33,9 +33,9 @@ | ||
/* Maximum number of list items created by the listview. | ||
* For debugging, you can set this to G_MAXUINT to ensure | ||
* there's always a list item for every row. | ||
*/ | ||
-#define GTK_LIST_VIEW_MAX_LIST_ITEMS 200 | ||
+#define GTK_LIST_VIEW_MAX_LIST_ITEMS 20 | ||
|
||
/* Extra items to keep above + below every tracker */ | ||
#define GTK_LIST_VIEW_EXTRA_ITEMS 2 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.