[four-in-a-row] Remove a few themes



commit 777a9ee6fa83a55009858d7276dedc8d65719b51
Author: Michael Catanzaro <mcatanzaro gnome org>
Date:   Thu Jan 16 22:20:56 2014 -0600

    Remove a few themes
    
    It's hard to justify retaining any of these, but we can't remove them
    all.
    
    Also, intentionally change the default theme to Glass Marbles (looks
    somewhat more modern than Cream Marbles) as a side effect of not
    modifying the gschema, where the default theme is cleverly stored as an
    integer....
    
    Also, switch the background used by Glass Marbles.

 data/Makefile.am               |    4 --
 data/bg_grotty.jpg             |  Bin 8285 -> 0 bytes
 data/bg_nightfall.jpg          |  Bin 15425 -> 0 bytes
 data/tileset_50x50_square.png  |  Bin 5465 -> 0 bytes
 data/tileset_50x50_sunspot.svg |  111 ----------------------------------------
 src/theme.c                    |   23 +--------
 6 files changed, 1 insertions(+), 137 deletions(-)
---
diff --git a/data/Makefile.am b/data/Makefile.am
index 2737d72..05aa81d 100644
--- a/data/Makefile.am
+++ b/data/Makefile.am
@@ -5,14 +5,10 @@ gsettings_SCHEMAS = org.gnome.four-in-a-row.gschema.xml
 
 pixmapdir = $(datadir)/four-in-a-row
 pixmap_DATA = \
-    tileset_50x50_sunspot.svg \
     tileset_50x50_catseyes.png \
-    tileset_50x50_square.png \
     tileset_50x50_glassy.png \
     tileset_50x50_hcontrast.svg \
     tileset_50x50_hcinverse.svg \
-    bg_grotty.jpg \
-    bg_nightfall.jpg \
     bg_toplight.png
 
 soundsdir = $(datadir)/four-in-a-row/sounds
diff --git a/src/theme.c b/src/theme.c
index 76ca5bf..dab4e01 100644
--- a/src/theme.c
+++ b/src/theme.c
@@ -37,13 +37,6 @@ extern Prefs p;
 
 Theme theme[] = {
   {
-   N_("Classic"),
-   "tileset_50x50_sunspot.svg",
-   NULL,
-   "#9999CC",
-   N_("Red"), N_("Yellow")
-   },
-  {
    N_("High Contrast"),
    "tileset_50x50_hcontrast.svg",
    NULL,
@@ -67,23 +60,9 @@ Theme theme[] = {
   {
    N_("Glass Marbles"),
    "tileset_50x50_glassy.png",
-   "bg_grotty.jpg",
-   "#727F8C",
-   N_("Red"), N_("Blue")
-   },
-  {
-   N_("Nightfall"),
-   "tileset_50x50_glassy.png",
-   "bg_nightfall.jpg",
+   "bg_toplight.png",
    "#727F8C",
    N_("Red"), N_("Blue")
-   },
-  {
-   N_("Blocks"),
-   "tileset_50x50_square.png",
-   NULL,
-   "#666666",
-   N_("Orange"), N_("Blue")
    }
 };
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]