diff options
-rw-r--r-- | AUTHORS | 2 | ||||
-rw-r--r-- | COPYING | 16 | ||||
-rw-r--r-- | data/Makefile.am | 1 | ||||
-rw-r--r-- | data/cow.png | bin | 22639 -> 66754 bytes | |||
-rw-r--r-- | data/icon.png | bin | 4070 -> 14334 bytes | |||
-rw-r--r-- | src/mainwindow.c | 1 |
6 files changed, 12 insertions, 8 deletions
@@ -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 @@ -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 Binary files differindex 7dbc501..f43f011 100644 --- a/data/cow.png +++ b/data/cow.png diff --git a/data/icon.png b/data/icon.png Binary files differindex 27f2803..1586a53 100644 --- a/data/icon.png +++ b/data/icon.png 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); |