Changed version to 0.2.0 and removed unused data in clock.c hvclock-0.2.0
authorHugo Villeneuve <hugo@hugovil.com>
Wed, 23 Aug 2006 03:46:37 +0000 (03:46 +0000)
committerHugo Villeneuve <hugo@hugovil.com>
Wed, 29 May 2013 02:37:23 +0000 (22:37 -0400)
ChangeLog
NEWS
configure.in
src/clock.c

index c49bda4..7cd1762 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,7 @@
 
+2006-08-22  Hugo Villeneuve  <hugo@hugovil.com>
+       * Removed unnecessary calls to gdk-pixbuf functions and dropped
+         any gdk-pixbuf dependencies.
+       
 2005-04-12  Hugo Villeneuve  <hugo@hugovil.com>
-
        * Added project to subversion
diff --git a/NEWS b/NEWS
index f65454b..0a8133b 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,7 @@
 
+2006-08-22: hvclock-0.2.0 has been released.
+       Removed gdk-pixbuf stuff.
+
 2005-07-05: hvclock-0.1.0 has been released.
        This is the initial release
 
index 29d4029..866bb1b 100644 (file)
@@ -1,7 +1,7 @@
 # configure.in -- Process this file with autoconf to produce configure.
 
 dnl Initialization stuff.
-AC_INIT(hvclock, 0.1.0)
+AC_INIT(hvclock, 0.2.0)
 AC_CONFIG_AUX_DIR(config)
 AC_CONFIG_SRCDIR(src/hvclock.c)
 AM_CONFIG_HEADER(config.h:config-h.in)
index 1e9ce46..c621efa 100644 (file)
 #define MINUTE_HAND_LENGTH 25
 
 
-static const char *clock_cfg =
-"bg_image gfx/2.png "
-"second_hand "
-" exact false "
-" shape "
-"  origin 32 32 "
-"  color 255 255 255 "
-"  pgon "
-"   fill 1 "
-"   begin "
-"    v -3 20 "
-"    v  0 25 "
-"    v  3 20 "
-"   end "
-"  end "
-" end "
-"end "
-"minute_hand "
-" exact false "
-" shape "
-"  origin 32 32 "
-"  color 255 255 255 "
-"  pgon "
-"   fill 1 "
-"   begin "
-"    v -2.0 -3.0 "
-"    v -0.5 20.0 "
-"    v  0.5 20.0 "
-"    v  2.0 -3.0 "
-"   end "
-"  end "
-" end "
-"end "
-"hour_hand "
-" exact false "
-" shape "
-"  origin 32 32 "
-"  color 255 255 255 "
-"  pgon "
-"   fill 1 "
-"   begin "
-"    v -2.5 -3.0 "
-"    v -0.5 12.0 "
-"    v  0.5 12.0 "
-"    v  2.5 -3.0 "
-"   end "
-"  end "
-" end "
-"end";
-
-
 void
 UpdateClock( void )
 {