aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas White <taw27@cam.ac.uk>2008-12-10 01:40:28 +0000
committerThomas White <taw27@cam.ac.uk>2008-12-10 01:40:28 +0000
commit8b0f6945202ea891b87873688dbf9b4990cac44b (patch)
tree3ca3b968f67a2e65d5b67f92c402083f71c5984b
parent71ba0cfa22d42746503e39cfe31e128fc3f333a8 (diff)
New cow picture
-rw-r--r--AUTHORS2
-rw-r--r--COPYING16
-rw-r--r--data/Makefile.am1
-rw-r--r--data/cow.pngbin22639 -> 66754 bytes
-rw-r--r--data/icon.pngbin4070 -> 14334 bytes
-rw-r--r--src/mainwindow.c1
6 files changed, 12 insertions, 8 deletions
diff --git a/AUTHORS b/AUTHORS
index daf1fbe..c28dbc1 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -3,3 +3,5 @@ Design and programming (c) 2008 Thomas White <taw27@srcf.ucam.org>
Sound effect by Chris Hendricks, downloaded from www.flashkit.com :
http://www.flashkit.com/soundfx/Creatures/Farm/Moo-Chris_He-7391/index.php
+Cow picture by used 'bsantos' from http://www.openclipart.org/
+Home page: http://azulebanana.com/bluey
diff --git a/COPYING b/COPYING
index 9b3e579..f7193a9 100644
--- a/COPYING
+++ b/COPYING
@@ -8,13 +8,15 @@ but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details
-The sound effect used in OpenMooCow is by Chris Hendricks, and was
-downloaded from www.flashkit.com under a "freeware" license. The GPL
-therefore does not apply to the file "data/moo.wav" (in the source
-archive. Installed as /usr/share/openmoocow/moo.wav by default)
-distributed with OpenMooCow. I (Thomas White) believe that the
-license under which this material is available permits its
-distribution with OpenMooCow.
+Sound effect by Chris Hendricks, from www.flashkit.com under a
+"freeware" license.
+
+Cow picture by used 'bsantos' from http://www.openclipart.org/
+Home page: http://azulebanana.com/bluey
+Licenced as "public domain".
+
+I (Thomas White) believe that the license under which the above
+material is available permits its distribution with OpenMooCow.
-----------------
diff --git a/data/Makefile.am b/data/Makefile.am
index 6a8362e..3f0f370 100644
--- a/data/Makefile.am
+++ b/data/Makefile.am
@@ -6,4 +6,3 @@ dist_desktop_DATA = openmoocow.desktop
pixmapsdir = $(prefix)/share/pixmaps/openmoocow
pixmaps_DATA = icon.png cow.png
-
diff --git a/data/cow.png b/data/cow.png
index 7dbc501..f43f011 100644
--- a/data/cow.png
+++ b/data/cow.png
Binary files differ
diff --git a/data/icon.png b/data/icon.png
index 27f2803..1586a53 100644
--- a/data/icon.png
+++ b/data/icon.png
Binary files differ
diff --git a/src/mainwindow.c b/src/mainwindow.c
index 8b76fce..43a8eef 100644
--- a/src/mainwindow.c
+++ b/src/mainwindow.c
@@ -59,6 +59,7 @@ MainWindow *mainwindow_open(void) {
gtk_container_add(GTK_CONTAINER(eb), mw->cow);
gtk_container_add(GTK_CONTAINER(mw->window), eb);
gtk_widget_add_events(GTK_WIDGET(eb), GDK_BUTTON_PRESS_MASK);
+ gtk_misc_set_alignment(GTK_MISC(mw->cow), 0.5, 1.0);
g_signal_connect(G_OBJECT(eb), "button_press_event", G_CALLBACK(mainwindow_clicked), mw);
g_signal_connect(G_OBJECT(mw->window), "destroy", G_CALLBACK(mainwindow_closed), mw);