diff options
-rw-r--r-- | ChangeLog | 9 | ||||
-rw-r--r-- | pixmaps/chrysalide_text.png | bin | 0 -> 11432 bytes | |||
-rw-r--r-- | pixmaps/chrysalide_text.xcf | bin | 0 -> 363832 bytes | |||
-rw-r--r-- | src/dialogs/about.c | 17 |
4 files changed, 17 insertions, 9 deletions
@@ -1,3 +1,12 @@ +12-03-01 Cyrille Bagard <nocbos@gmail.com> + + * pixmaps/chrysalide_text.png: + * pixmaps/chrysalide_text.xcf: + New entries: create new pictures for the new name. + + * src/dialogs/about.c + Update the About dialog window with the name 'Chrysalide'. + 12-02-18 Cyrille Bagard <nocbos@gmail.com> * plugins/pyoida/debug/debugger.c: diff --git a/pixmaps/chrysalide_text.png b/pixmaps/chrysalide_text.png Binary files differnew file mode 100644 index 0000000..b4d8c78 --- /dev/null +++ b/pixmaps/chrysalide_text.png diff --git a/pixmaps/chrysalide_text.xcf b/pixmaps/chrysalide_text.xcf Binary files differnew file mode 100644 index 0000000..d9bfd5d --- /dev/null +++ b/pixmaps/chrysalide_text.xcf diff --git a/src/dialogs/about.c b/src/dialogs/about.c index bcc3edf..8773e31 100644 --- a/src/dialogs/about.c +++ b/src/dialogs/about.c @@ -28,16 +28,15 @@ #include <stdio.h> +#include <i18n.h> + + #include "../gtkext/easygtk.h" #include "../gtkext/support.h" #include "../../revision.h" -#define _(str) str - - - /****************************************************************************** * * * Paramètres : parent = fenêtre parente à surpasser. * @@ -86,16 +85,16 @@ GtkWidget *create_about_dialog(GtkWindow *parent) gtk_fixed_put(GTK_FIXED(fixed), image, 10, 10); gtk_widget_set_size_request(image, 330, 300); - filename = find_pixmap_file("openida_text.png"); + filename = find_pixmap_file("chrysalide_text.png"); image = qck_create_image(NULL, NULL, filename); - gtk_fixed_put(GTK_FIXED(fixed), image, 85, 330); - gtk_widget_set_size_request(image, 179, 36); + gtk_fixed_put(GTK_FIXED(fixed), image, 48, 324); + gtk_widget_set_size_request(image, 253, 42); /* Numéro de révision */ filename = find_pixmap_file("revision.png"); image = qck_create_image(NULL, NULL, filename); - gtk_fixed_put(GTK_FIXED(fixed), image, 172, 360); + gtk_fixed_put(GTK_FIXED(fixed), image, 149, 360); gtk_widget_set_size_request(image, 14, 18); revision = REVISION; @@ -109,7 +108,7 @@ GtkWidget *create_about_dialog(GtkWindow *parent) filename = find_pixmap_file(buffer); image = qck_create_image(NULL, NULL, filename); - gtk_fixed_put(GTK_FIXED(fixed), image, 186 + i * 14, 360); + gtk_fixed_put(GTK_FIXED(fixed), image, 163 + i * 14, 360); gtk_widget_set_size_request(image, 14, 18); revision %= level; |