diff options
| author | Ben Boeckel <MathStuf@gmail.com> | 2008-08-04 03:27:13 +0000 |
|---|---|---|
| committer | Ben Boeckel <MathStuf@gmail.com> | 2008-08-04 03:27:13 +0000 |
| commit | 373e686bf4ecaaabcf80544e74f017eebe05213f (patch) | |
| tree | cddf7a223f16944b0380386e568f2606f634c366 /pokemodr/Pokemodr.cpp | |
| parent | 63417b1c5057d22bd853e92cd3a25aa812b8d917 (diff) | |
[FIX] Cleaned up the RC file
[FIX] Script editing is getting there (still a little weird...)
[FIX] Cleaned up the main file a bit
[FIX] Added the Skin class
[FIX] All sprites and skins are internally linked now
[FIX] No more image restraints (tiles are still enforced so that map editing works)
[FIX] Cleaned up checking for valid values when setting in pokemod
[FIX] Removed FileDialog files
git-svn-id: https://pokegen.svn.sourceforge.net/svnroot/pokegen/trunk@233 6ecfd1a5-f3ed-3746-8530-beee90d26b22
Diffstat (limited to 'pokemodr/Pokemodr.cpp')
| -rw-r--r-- | pokemodr/Pokemodr.cpp | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/pokemodr/Pokemodr.cpp b/pokemodr/Pokemodr.cpp index 96450ef7..6864ae83 100644 --- a/pokemodr/Pokemodr.cpp +++ b/pokemodr/Pokemodr.cpp @@ -23,8 +23,6 @@ #include <KApplication> #include <KCmdLineArgs> -#define stringify(x) #x - static void messageHandler(QtMsgType type, const char* message) { switch (type) @@ -48,14 +46,14 @@ int main(int argc, char* argv[]) { qInstallMsgHandler(messageHandler); - KAboutData about("pokemodr", "pokemodr", ki18n("Pokémodr"), stringify(VERSION), ki18n(""), KAboutData::License_GPL_V3, ki18n("©2007-2008 Ben Boeckel"), ki18n("This program offers an easy interface so that Pokémods can be easily created."), "http://sourceforge.net/projects/pokegen"); + KAboutData about("pokemodr", "pokemodr", ki18n("Pokémodr"), "0.0.2", ki18n(""), KAboutData::License_GPL_V3, ki18n("©2007-2008 Ben Boeckel"), ki18n("This program offers an easy interface so that Pokémods can be easily created."), "http://sourceforge.net/projects/pokegen"); about.setProgramName(ki18n("Pokémodr")); about.addAuthor(ki18n("Ben Boeckel"), ki18n("Lead Programmer"), "MathStuf@gmail.com", ""); - about.addCredit(ki18n("Peter Fernandes"), ki18n("Ideas, "), "supersonicandtails@gmail.com", "http://www.hypersonicsoft.org"); + about.addCredit(ki18n("Peter Fernandes"), ki18n("Ideas"), "supersonicandtails@gmail.com", "http://www.hypersonicsoft.org"); about.addCredit(ki18n("Kevin Kofler"), ki18n("Qt, KDE, debugging help"), "kevin.kofler@chello.at", "http://www.tigen.org/kevin.kofler"); about.addCredit(ki18n("Luke Greco"), ki18n("Ideas, Tester"), "sirlewk@gmail.com", ""); -// about.addCredit(ki18n("Mike Roberts"), ki18n("Testing code, Tester"), "", ""); - about.setBugAddress("http://sourceforge.net/tracker/?group_id=189309&atid=928809"); + about.addCredit(ki18n("Mike Roberts"), ki18n("Tester"), "XavierMcF@gmail.com", ""); + about.setBugAddress("pokegen-bugs@lists.sourceforge.net"); about.setCopyrightStatement(ki18n("©2007-2008, Ben Boeckel")); about.setOrganizationDomain(""); // TODO: Need one of these... |
