- 30 Aug, 2018 4 commits
-
-
Victor Toso authored
Otherwise we would get: ERROR:../tests/lib-net.c:162:test_net_wc_small_throttling: assertion failed (error == NULL): Could not listen on address ::1, port 42775: Error binding to address: Cannot assign requested address (g-io-error-quark, 0) Related: Infrastructure/GitLab#313Signed-off-by:
Victor Toso <victortoso@gnome.org>
-
Victor Toso authored
Based on intention of commit a176b9a0, we should be going up to 1s of threshold to avoid failure such as: ERROR:../tests/lib-net.c:114:test_net_wc_throttling_cb: assertion failed (received_time >= op->expected_time): (118905943655 >= 118905946568) This has been tested over 500 times, with different overloads in the machine, no failure. It still should be able to find valid regressions on the code as the most important one would be stress test and big-delay, the later having a 5 seconds timeout to guarantee that the network request has not been made. Related: https://bugzilla.gnome.org/show_bug.cgi?id=774578Signed-off-by:
Victor Toso <victortoso@gnome.org>
-
Victor Toso authored
Registry tests around loaded GrlSources might fail if no plugin is installed. This can be guaranteed by continuous integration and would be better than creating dummy plugins to be loaded/unloaded. Signed-off-by:
Victor Toso <victortoso@gnome.org>
-
Victor Toso authored
Test builds were missing in meson. Building and running with a 10s timeout (instead of 30s as default). Also created a include_directory for GrlNet library to be included in tests. Signed-off-by:
Victor Toso <victortoso@gnome.org>
-
- 29 Aug, 2018 1 commit
-
-
Fran Dieguez authored
-
- 26 Aug, 2018 2 commits
-
-
Çağatay Yiğit Şahin authored
-
Seong-ho Cho authored
-
- 10 Aug, 2018 1 commit
-
-
Debarshi Ray authored
Otherwise it leads to: WARNING: Project targetting '>= 0.36.0' but tried to use feature introduced in '0.37.0': preset arg in i18n.gettext ... WARNING: Project specifies a minimum meson_version '>= 0.36.0' which conflicts with: * 0.37.0: {'preset arg in i18n.gettext'} Fallout from 005c29c6 GNOME/grilo!19
-
- 09 Aug, 2018 1 commit
-
-
Charles Monzat authored
-
- 08 Aug, 2018 1 commit
-
-
Juan A. Suárez Romero authored
Now that we can use GitLab CI, we do not require Travis CI anymore.
-
- 03 Aug, 2018 1 commit
-
-
Marinus Schraal authored
Source names can be constructed partially with unique identifiers, making it difficult to match directly to the static identifiers in GRL_PLUGIN_RANKS. Introduce glob pattern matching for GRL_PLUGIN_RANKS, which allows for example GRL_PLUGIN_RANKS="grl-lastfm-cover*:3". Add a short explanation and example to the documentation as well. https://bugzilla.gnome.org/show_bug.cgi?id=761695 GNOME/grilo!17
-
- 30 Jul, 2018 2 commits
-
-
Victor Toso authored
- Only excluded was GNOME Translation Robot
-
Victor Toso authored
-
- 27 Jul, 2018 3 commits
-
-
Piotr Drąg authored
With the glib preset, Meson will use the LINGUAS file.
-
Aurimas Černius authored
-
Victor Toso authored
-
- 26 Jul, 2018 1 commit
-
-
Victor Toso authored
-
- 25 Jul, 2018 5 commits
-
-
Victor Toso authored
As gio-2.0 requirement was 2.44 since 555654f4 we can use the same version for all glib components: - gobject-2.0 - gmodule-2.0 - gio-2.0 - glib-2.0
-
Saurabh Sabharwal authored
grl_data_add_for_id() allow unregistered keys to be registered and set multiple values to it. GNOME/grilo#1
-
Saurabh Sabharwal authored
grl_data_set_for_id() allows keys that aren't registered, to be registered and set it's value. It simply sets the value for registered keys. GNOME/grilo#1
-
Victor Toso authored
Similar to previous commit but for the libs. Only the net library uses g_type_class_add_private().
-
Victor Toso authored
Instead we define the class with G_DEFINE_TYPE_WITH_PRIVATE(). This also removes the usage of G_TYPE_INSTANCE_GET_PRIVATE() as we use instead the _get_instance_private() Notes: - grl-caps: G_DEFINE_TYPE_WITH_PRIVATE had to be moved after struct _GrlCapsPrivate definition; - grl-operation-options: Idem to grl-caps
-
- 24 Jul, 2018 2 commits
-
-
Bastien Nocera authored
We need to run a few commands to generate headers before compiling grilo-inspect, make sure to support both Python2 and Python3.
-
Bastien Nocera authored
So we don't get uncompiled MRs anymore.
-
- 19 Jul, 2018 1 commit
-
-
Milo Casagrande authored
-
- 17 Jul, 2018 4 commits
-
-
Victor Toso authored
-
Victor Toso authored
-
Victor Toso authored
GNOME/grilo#4
-
veer authored
This fixes the following deprecation warnings: | main.c: In function ‘changes_notification_cb’: | main.c:286:3: warning: ‘gtk_toggle_action_get_active’ is deprecated | ui_state->changes_notification = gtk_toggle_action_get_active (action); | ^~~~~~~~ | main.c: In function ‘ui_setup’: | main.c:1878:3: warning: ‘gtk_action_group_new’ is deprecated | GtkActionGroup *actions = gtk_action_group_new ("actions"); | ^~~~~~~~~~~~~~ | main.c:1879:3: warning: ‘gtk_action_group_add_actions’ is deprecated | gtk_action_group_add_actions (actions, entries, G_N_ELEMENTS (entries), NULL); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ | main.c:1880:3: warning: ‘gtk_action_group_add_toggle_actions’ is deprecated | gtk_action_group_add_toggle_actions (actions, toggle_entries, G_N_ELEMENTS (toggle_entries), NULL); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | main.c:1882:3: warning: ‘gtk_ui_manager_new’ is deprecated | GtkUIManager *uiman = gtk_ui_manager_new (); | ^~~~~~~~~~~~ | main.c:1883:3: warning: ‘gtk_ui_manager_insert_action_group’ is deprecated | gtk_ui_manager_insert_action_group (uiman, actions, 0); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | main.c:1885:31: warning: ‘gtk_ui_manager_get_accel_group’ is deprecated | gtk_ui_manager_get_accel_group (uiman)); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | main.c:1886:3: warning: ‘gtk_ui_manager_add_ui_from_string’ is deprecated | gtk_ui_manager_add_ui_from_string (uiman, ui_definition, -1, NULL); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | main.c:1890:23: warning: ‘gtk_ui_manager_get_widget’ is deprecated | gtk_ui_manager_get_widget (uiman, "/MainMenu"), | ^~~~~~~~~~~~~~~~~~~~~~~~~ Signed-off-by:
Victor Toso <victortoso@redhat.com>
-
- 13 Jul, 2018 8 commits
-
-
Leesoo Ahn authored
The tests are for the classes - GrlNetWc - GrlData - GrlMedia - GrlRelatedKeys - GrlCaps - GrlOperationOptions - GrlPlugin GNOME/grilo!10
-
Leesoo Ahn authored
To support g_autoptr, it is added. GNOME/grilo!10
-
Leesoo Ahn authored
To support g_autoptr, it is added. GNOME/grilo!10
-
Leesoo Ahn authored
To support g_autoptr, it is added. GNOME/grilo!10
-
Leesoo Ahn authored
To support g_autoptr, it is added. GNOME/grilo!10
-
Leesoo Ahn authored
To support g_autoptr, it is added. GNOME/grilo!10
-
Leesoo Ahn authored
To support g_autoptr, it is added. GNOME/grilo!10
-
Leesoo Ahn authored
To support g_autoptr, it is added. GNOME/grilo!10
-
- 11 Jul, 2018 1 commit
-
-
Matej Urbančič authored
-
- 09 Jul, 2018 1 commit
-
-
veer authored
../tools/grilo-test-ui/main.c: In function ‘supported_media_to_str’: ../tools/grilo-test-ui/main.c:905:12: warning: comparison between ‘GrlMediaType’ {aka ‘enum <anonymous>’} and ‘enum <anonymous>’ [-Wenum-compare] if (type == GRL_SUPPORTED_MEDIA_NONE) ^~ ../tools/grilo-test-ui/main.c:907:12: warning: comparison between ‘GrlMediaType’ {aka ‘enum <anonymous>’} and ‘enum <anonymous>’ [-Wenum-compare] if (type == GRL_SUPPORTED_MEDIA_ALL) ^~ GNOME/grilo#7Signed-off-by:
Victor Toso <victortoso@redhat.com>
-
- 07 Jul, 2018 1 commit
-
-
Balázs Meskó authored
-