Accepting request 1083958 from GNOME:Next
New stable release OBS-URL: https://build.opensuse.org/request/show/1083958 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/gnome-nibbles?expand=0&rev=85
This commit is contained in:
parent
806688f2b4
commit
eede877564
@ -1,66 +0,0 @@
|
|||||||
From 1b48446068608aff9b5edf1fdbd4b8c0d9f0be94 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Rico Tzschichholz <ricotz@ubuntu.com>
|
|
||||||
Date: Sat, 16 Jan 2021 13:56:10 +0100
|
|
||||||
Subject: [PATCH] Don't alter or try to write [GtkChild] fields
|
|
||||||
|
|
||||||
See https://gitlab.gnome.org/GNOME/vala/issues/1121
|
|
||||||
---
|
|
||||||
src/controls.vala | 30 +++++++++++++++---------------
|
|
||||||
1 file changed, 15 insertions(+), 15 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/src/controls.vala b/src/controls.vala
|
|
||||||
index 4f07358..584c9ff 100644
|
|
||||||
--- a/src/controls.vala
|
|
||||||
+++ b/src/controls.vala
|
|
||||||
@@ -140,25 +140,25 @@ private class ControlsGrid : Button
|
|
||||||
arrow_left.set_from_pixbuf (arrow.rotate_simple (Gdk.PixbufRotation.COUNTERCLOCKWISE));
|
|
||||||
arrow_right.set_from_pixbuf (arrow.rotate_simple (Gdk.PixbufRotation.CLOCKWISE));
|
|
||||||
|
|
||||||
- up_handler = worm_props.notify ["up"].connect (() => configure_label (worm_props.up, ref move_up_label));
|
|
||||||
- down_handler = worm_props.notify ["down"].connect (() => configure_label (worm_props.down, ref move_down_label));
|
|
||||||
- left_handler = worm_props.notify ["left"].connect (() => configure_label (worm_props.left, ref move_left_label));
|
|
||||||
- right_handler = worm_props.notify ["right"].connect (() => configure_label (worm_props.right, ref move_right_label));
|
|
||||||
-
|
|
||||||
- configure_label (worm_props.up, ref move_up_label);
|
|
||||||
- configure_label (worm_props.down, ref move_down_label);
|
|
||||||
- configure_label (worm_props.left, ref move_left_label);
|
|
||||||
- configure_label (worm_props.right, ref move_right_label);
|
|
||||||
+ up_handler = worm_props.notify ["up"].connect (() => configure_label (worm_props.up, move_up_label));
|
|
||||||
+ down_handler = worm_props.notify ["down"].connect (() => configure_label (worm_props.down, move_down_label));
|
|
||||||
+ left_handler = worm_props.notify ["left"].connect (() => configure_label (worm_props.left, move_left_label));
|
|
||||||
+ right_handler = worm_props.notify ["right"].connect (() => configure_label (worm_props.right, move_right_label));
|
|
||||||
+
|
|
||||||
+ configure_label (worm_props.up, move_up_label);
|
|
||||||
+ configure_label (worm_props.down, move_down_label);
|
|
||||||
+ configure_label (worm_props.left, move_left_label);
|
|
||||||
+ configure_label (worm_props.right, move_right_label);
|
|
||||||
}
|
|
||||||
|
|
||||||
internal void mark_duplicated_keys (GenericSet<uint> duplicate_keys)
|
|
||||||
{
|
|
||||||
- set_duplicate_class (worm_props.up in duplicate_keys, ref move_up_label);
|
|
||||||
- set_duplicate_class (worm_props.down in duplicate_keys, ref move_down_label);
|
|
||||||
- set_duplicate_class (worm_props.left in duplicate_keys, ref move_left_label);
|
|
||||||
- set_duplicate_class (worm_props.right in duplicate_keys, ref move_right_label);
|
|
||||||
+ set_duplicate_class (worm_props.up in duplicate_keys, move_up_label);
|
|
||||||
+ set_duplicate_class (worm_props.down in duplicate_keys, move_down_label);
|
|
||||||
+ set_duplicate_class (worm_props.left in duplicate_keys, move_left_label);
|
|
||||||
+ set_duplicate_class (worm_props.right in duplicate_keys, move_right_label);
|
|
||||||
}
|
|
||||||
- private static void set_duplicate_class (bool new_value, ref Label label)
|
|
||||||
+ private static void set_duplicate_class (bool new_value, Label label)
|
|
||||||
{
|
|
||||||
if (new_value)
|
|
||||||
label.get_style_context ().add_class ("duplicate");
|
|
||||||
@@ -175,7 +175,7 @@ private class ControlsGrid : Button
|
|
||||||
worm_props.disconnect (color_handler);
|
|
||||||
}
|
|
||||||
|
|
||||||
- private static void configure_label (uint key_value, ref Label label)
|
|
||||||
+ private static void configure_label (uint key_value, Label label)
|
|
||||||
{
|
|
||||||
string? key_name = Gdk.keyval_name (key_value);
|
|
||||||
if (key_name == "Up")
|
|
||||||
--
|
|
||||||
GitLab
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:457a64b1c88e2d8d0143c452ffd01f0300d7d3005802954ef5abf9c896b353d9
|
|
||||||
size 337680
|
|
3
gnome-nibbles-3.38.3.tar.xz
Normal file
3
gnome-nibbles-3.38.3.tar.xz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:975fde1d83c7b15b392eac7a359161290fc8aeb7605c11e71cee0c3c326b5e61
|
||||||
|
size 388996
|
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue May 2 08:06:21 UTC 2023 - Bjørn Lie <bjorn.lie@gmail.com>
|
||||||
|
|
||||||
|
- Update to version 3.38.3:
|
||||||
|
+ Fixes to build with newer valac.
|
||||||
|
+ Misc merge requests.
|
||||||
|
+ Updated user help.
|
||||||
|
+ Updated translations.
|
||||||
|
- Drop 1b48446068608aff9b5edf1fdbd4b8c0d9f0be94.patch: Fixed
|
||||||
|
upstream.
|
||||||
|
- Add desktop-file-utils BuildRequires: New dependency.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Feb 18 16:32:16 UTC 2021 - Dominique Leuenberger <dimstar@opensuse.org>
|
Thu Feb 18 16:32:16 UTC 2021 - Dominique Leuenberger <dimstar@opensuse.org>
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package gnome-nibbles
|
# spec file for package gnome-nibbles
|
||||||
#
|
#
|
||||||
# Copyright (c) 2021 SUSE LLC
|
# Copyright (c) 2023 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -17,15 +17,15 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: gnome-nibbles
|
Name: gnome-nibbles
|
||||||
Version: 3.38.2
|
Version: 3.38.3
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Worm Game for GNOME
|
Summary: Worm Game for GNOME
|
||||||
License: GPL-3.0-or-later
|
License: GPL-3.0-or-later
|
||||||
Group: Amusements/Games/Action/Arcade
|
Group: Amusements/Games/Action/Arcade
|
||||||
URL: https://live.gnome.org/Lightsoff
|
URL: https://live.gnome.org/Lightsoff
|
||||||
Source0: https://download.gnome.org/sources/gnome-nibbles/3.38/%{name}-%{version}.tar.xz
|
Source0: https://download.gnome.org/sources/gnome-nibbles/3.38/%{name}-%{version}.tar.xz
|
||||||
# PATCH-FIX-UPSTREAM 1b48446068608aff9b5edf1fdbd4b8c0d9f0be94.patch dimstar@opensuse.org -- Fix build with vala 0.51.x.
|
|
||||||
Patch0: https://gitlab.gnome.org/GNOME/gnome-nibbles/-/commit/1b48446068608aff9b5edf1fdbd4b8c0d9f0be94.patch
|
BuildRequires: desktop-file-utils
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: gettext
|
BuildRequires: gettext
|
||||||
BuildRequires: meson >= 0.50.1
|
BuildRequires: meson >= 0.50.1
|
||||||
|
Loading…
Reference in New Issue
Block a user