summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Update (or drop) the Docker image used by Flatpak jobbarthalion/gnome-runtime-images-quayBartłomiej Piotrowski2022-08-051-1/+0
| | | | | | The gnome-runtime-images have been recently migrated to Quay. This is already reflected in the template. Please note this MR has been created semi-automatically. If it doesn't make sense, feel free to close it.
* meson: Remove redundant check for glib-mkenumsMarvin Schmidt2022-08-021-8/+0
| | | | | | | | | | | | | | | | | The usage of `gnome.mkenums_simple()` already assures that `glib-mkenums` is present: ``` [...] Configuring org.gnome.Logs.service using configuration Configuring version.xml using configuration Found pkg-config: /usr/host/bin/pkg-config (0.29.2) Program glib-compile-resources found: YES (/usr/host/bin/glib-compile-resources) Program glib-mkenums found: YES (/usr/host/bin/glib-mkenums) Program glib-mkenums found: YES (/usr/host/bin/glib-mkenums) Program msginit found: YES (/usr/host/bin/msginit) [...] ```
* Update Abkhazian translationNart Tlisha2022-07-291-16/+40
|
* Add Abkhazian translationNart Tlisha2022-07-252-0/+590
|
* Add Georgian translationZurab Kargareteli2022-07-102-0/+622
|
* Update Dutch translationNathan Follens2022-06-301-27/+31
|
* Update Dutch translationNathan Follens2022-06-301-134/+135
|
* help: Add localized Swedish imageAnders Jonsson2022-06-121-0/+0
|
* Update Portuguese translationHugo Carvalho2022-05-311-119/+119
|
* Update Portuguese translationHugo Carvalho2022-03-281-17/+18
| | | | (cherry picked from commit 81dc90988cfe397340795c0fe85e2c35075dbcdd)
* Adapt to libadwaita dark theme preference handlingDavid King2022-03-281-2/+2
|
* menu_button: Use caption+dim-label classesMaximiliano Sandoval R2022-03-281-1/+2
| | | | They follow more closelly what was already in gtk3.
* Use navigation-sidebar style for flapMaximiliano Sandoval R2022-03-283-44/+4
|
* eventtoolbar: Use flat style on main menuMaximiliano Sandoval R2022-03-281-0/+1
|
* Remove shadow-type property from scrolled windowsMaximiliano Sandoval R2022-03-281-0/+2
|
* main: Remove g_set_prgnameMaximiliano Sandoval R2022-03-281-1/+0
| | | | It should not be set in gtk 4 according to the migration guide.
* Replace redundant uses of gtk_widget_showMaximiliano Sandoval R2022-03-281-4/+0
|
* Replace show with present for windowMaximiliano Sandoval R2022-03-281-2/+2
| | | | Show only can cause problems in x11.
* Remove all uses of visible=True and can-focusMaximiliano Sandoval R2022-03-287-166/+0
| | | | | Can focus should not be set explicitely in gtk4 as false is propagated to child widgets and the defaults are good.
* flatpak: Add dri accessMaximiliano Sandoval R2022-03-281-0/+1
| | | | gtk4 is gpu rendered.
* Replace shadow-type property from scrolled windowsMaximiliano Sandoval R2022-03-281-2/+2
|
* Remove max-length propertyMaximiliano Sandoval R2022-03-281-8/+0
| | | | It seems they automatically are 2 digits now.
* Remove border_widthMaximiliano Sandoval R2022-03-281-4/+0
|
* Port expand propertyMaximiliano Sandoval R2022-03-281-1/+1
| | | | Only vexpand is needed.
* Remove deprecated transitions-enabled propertyMaximiliano Sandoval R2022-03-281-1/+0
|
* Port margin propertyMaximiliano Sandoval R2022-03-281-1/+4
|
* Remove uses of show_allMaximiliano Sandoval R2022-03-282-14/+0
| | | | Widgets are visible by default.
* Use gtk_widget_{add,remove}_css_classMaximiliano Sandoval R2022-03-282-23/+11
|
* eventviewrow: Use notify::parent signalMaximiliano Sandoval R2022-03-281-7/+10
| | | | The parent-set signal was removed.
* Replace Container APIMaximiliano Sandoval R2022-03-281-7/+5
|
* Replace toplevel with rootMaximiliano Sandoval R2022-03-281-4/+4
|
* seachpopover: Don't use private ModelButtonMaximiliano Sandoval R2022-03-282-5/+22
| | | | This widget was styled based on sub menus from a menu model.
* Use gtk_buildable_get_buildable_idMaximiliano Sandoval R2022-03-281-1/+1
| | | | Rather than get_name which was deprecated.
* window: Port dialogs to gtk4Maximiliano Sandoval R2022-03-281-20/+34
|
* Adapt to css_provider_load_from_data API changesMaximiliano Sandoval R2022-03-281-1/+1
|
* toolbar: Remove relief propertyMaximiliano Sandoval R2022-03-281-1/+0
| | | | | It was deprecated. Libadwaita automatically provides the flat style in toolbar now.
* Use GDate api from calendarMaximiliano Sandoval R2022-03-281-8/+2
|
* searchpopover: Replace Radios with Check buttonsMaximiliano Sandoval R2022-03-282-9/+5
|
* popover: Set its parent rather than relative_toMaximiliano Sandoval R2022-03-282-3/+8
| | | | The later does not exist in gtk4.
* eventtoolbar: Subclass from GtkWidgetMaximiliano Sandoval R2022-03-282-8/+25
| | | | Header bars are now final classes.
* categorylist: Subclass from GtkWidgetMaximiliano Sandoval R2022-03-283-14/+35
| | | | ListBox is a final class in GTK 4.
* Use gtk_show_uri APIMaximiliano Sandoval R2022-03-282-18/+4
| | | | gtk_show_uri_on_window was replaced by this.
* buttons: Use icon-name rather than setting a childMaximiliano Sandoval R2022-03-281-30/+3
|
* Use gtk_editable_get_textMaximiliano Sandoval R2022-03-282-17/+19
| | | | The api for GtkEntry was moved to its Editable delegate.
* Replace GdkScreen with GdkDisplayMaximiliano Sandoval R2022-03-282-8/+8
|
* window: Use set_key_capture_widget in entry barMaximiliano Sandoval R2022-03-284-51/+16
|
* info_bar: Set label in the UI fileMaximiliano Sandoval R2022-03-282-34/+13
| | | | Removes the need to use container api.
* css: Replace selected color with accent colorMaximiliano Sandoval R2022-03-281-3/+3
|
* Remove custom CSS error reportingMaximiliano Sandoval R2022-03-284-32/+0
| | | | GTK 4 provides the error handling directly.
* Use libadwaita and gtk4 in C filesMaximiliano Sandoval R2022-03-288-15/+16
|