29 lines
1.1 KiB
Diff
29 lines
1.1 KiB
Diff
Index: inkscape-0.46/src/main.cpp
|
|
===================================================================
|
|
--- inkscape-0.46.orig/src/main.cpp
|
|
+++ inkscape-0.46/src/main.cpp
|
|
@@ -1506,7 +1506,7 @@ sp_process_args(poptContext ctx)
|
|
break;
|
|
}
|
|
case SP_ARG_VERSION: {
|
|
- printf("Inkscape %s (%s)\n", INKSCAPE_VERSION, __DATE__);
|
|
+ printf("Inkscape %s\n", INKSCAPE_VERSION);
|
|
exit(0);
|
|
break;
|
|
}
|
|
Index: inkscape-0.46/src/ui/dialog/aboutbox.cpp
|
|
===================================================================
|
|
--- inkscape-0.46.orig/src/ui/dialog/aboutbox.cpp
|
|
+++ inkscape-0.46/src/ui/dialog/aboutbox.cpp
|
|
@@ -103,8 +103,8 @@ AboutBox::AboutBox() : Gtk::Dialog(_("Ab
|
|
|
|
Gtk::Label *label=new Gtk::Label();
|
|
gchar *label_text =
|
|
- g_strdup_printf("<small><i>Inkscape %s, built %s</i></small>",
|
|
- INKSCAPE_VERSION, __DATE__);
|
|
+ g_strdup_printf("<small><i>Inkscape %s</i></small>",
|
|
+ INKSCAPE_VERSION);
|
|
label->set_markup(label_text);
|
|
label->set_alignment(Gtk::ALIGN_RIGHT, Gtk::ALIGN_CENTER);
|
|
g_free(label_text);
|