Use the OpenClonk version as the mape version

scancodes-fix
Armin Burgmeier 2013-01-10 22:30:14 +01:00
parent 3849972dfd
commit 9a6d545f94
4 changed files with 63 additions and 2 deletions

View File

@ -636,6 +636,8 @@ set(MAPE_SOURCES
src/mape/cpp-handles/random-handle.cpp
src/mape/cpp-handles/texture-handle.h
src/mape/cpp-handles/texture-handle.cpp
src/mape/cpp-handles/version-handle.h
src/mape/cpp-handles/version-handle.cpp
src/mape/cpp-handles/stub-handle.cpp
src/mape/configfile.c
src/mape/configfile.h

View File

@ -0,0 +1,28 @@
/*
* mape - C4 Landscape.txt editor
*
* Copyright (c) 2005-2009 Armin Burgmeier
*
* Portions might be copyrighted by other authors who have contributed
* to OpenClonk.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
* See isc_license.txt for full license and disclaimer.
*
* "Clonk" is a registered trademark of Matthes Bender.
* See clonk_trademark_license.txt for full license.
*/
#include "C4Version.h"
#include "mape/cpp-handles/version-handle.h"
extern "C" {
const char* c4_version_get()
{
return C4VERSION;
}
} /* extern "C" */

View File

@ -0,0 +1,29 @@
/*
* mape - C4 Landscape.txt editor
*
* Copyright (c) 2005-2009 Armin Burgmeier
*
* Portions might be copyrighted by other authors who have contributed
* to OpenClonk.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
* See isc_license.txt for full license and disclaimer.
*
* "Clonk" is a registered trademark of Matthes Bender.
* See clonk_trademark_license.txt for full license.
*/
#ifndef INC_MAPE_C4_VERSION_HANDLE_H
#define INC_MAPE_C4_VERSION_HANDLE_H
#include <glib.h>
G_BEGIN_DECLS
const char* c4_version_get();
G_END_DECLS
#endif /* INC_MAPE_C4_TEXTURE_HANDLE_H */

View File

@ -18,6 +18,7 @@
#include <stdlib.h>
#include <gtksourceview/gtksourcebuffer.h>
#include "mape/cpp-handles/version-handle.h"
#include "mape/fileicon.h"
#include "mape/configfile.h"
#include "mape/preferencesdialog.h"
@ -447,6 +448,7 @@ static void mape_window_cb_help_about(GtkAction* action,
"",
"Contributors:",
" Tyron Madlener <tm@tyron.at>",
" Günther Brammer <gbrammer@gmx.de>",
NULL
};
@ -465,12 +467,12 @@ static void mape_window_cb_help_about(GtkAction* action,
gtk_about_dialog_set_version(
GTK_ABOUT_DIALOG(about_dialog),
"1.3.90"
c4_version_get()
);
gtk_about_dialog_set_copyright(
GTK_ABOUT_DIALOG(about_dialog),
"Copyright \xc2\xa9 2005-2009 Armin Burgmeier"
"Copyright \xc2\xa9 2005-2013 Armin Burgmeier"
);
gtk_about_dialog_set_comments(