Changeset 487 for AE/Installer/trunk/source/about.cpp
- Timestamp:
- Dec 30, 2009, 2:51:38 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
AE/Installer/trunk/source/about.cpp
r436 r487 1 ///////////////////////////////////////////////////////////////////////////// 2 // Name: about_window.cpp 3 // Purpose: 4 // Author: 5 // Modified by: 6 // Created: 08/05/2009 11:10:32 7 // RCS-ID: 8 // Copyright: 9 // Licence: 10 ///////////////////////////////////////////////////////////////////////////// 11 12 // For compilers that support precompilation, includes "wx/wx.h". 13 #include "wx/wxprec.h" 14 15 #ifdef __BORLANDC__ 16 #pragma hdrstop 17 #endif 18 19 #ifndef WX_PRECOMP 20 #include "wx/wx.h" 21 #endif 1 /***************************************************************************\ 2 | Project: AE Installer | 3 | By: Gumby & Iritscen | 4 | File: About.cpp | 5 | Function: Handles the About window! | 6 | Created: 08/05/2009 11:10:32 | 7 \***************************************************************************/ 22 8 23 9 ////@begin includes 24 10 ////@end includes 25 11 #include "globals.h" 26 12 #include "about.h" 27 13 28 14 ////@begin XPM images 29 15 ////@end XPM images 30 31 16 32 17 /* … … 126 111 itemPanel3->SetSizer(itemBoxSizer4); 127 112 128 wxStaticText* itemStaticText5 = new wxStaticText( itemPanel3, wxID_STATIC, _("Mod Installer v1.0.1\nby Gumby and Iritscen\n\nAE credited to:\nEdT: BGI troops, additional weapons\ngeyser: Original creator\nGumby: Installer and Framework\nIritscen: Installer (Mac)\nLoser: Improved animation and AI\nNeo: OniSplit, documenting Oni, tech support\nONIrules: Additional weapons\nParadox: Documenting of Oni\nRossyMiles: Daodan DLL port to C\nSFeLi: Original Daodan DLL\nssg: Documenting Oni"), wxDefaultPosition, wxDefaultSize, wxNO_BORDER ); 113 string aboutText = "AE/Mod Installer v"; 114 aboutText = aboutText + INSTALLER_VERSION; 115 aboutText = aboutText + "\nby Gumby and Iritscen\n\n" + 116 "AE credited to:\n" + 117 "EdT: BGI troops, additional weapons\n" + 118 "geyser: Original AE framework\n" + 119 "Gumby: General AE framework, Windows Installer, add'l Daodan DLL coding\n" + 120 "Iritscen: Mac port of Installer & add'l Installer coding\n" + 121 "Loser: Improved combat animation and AI\n" + 122 "Neo: OniSplit, documenting Oni, tech support\n" + 123 "ONIrules: Additional weapons\n" + 124 "Paradox: Documenting of Oni\n" + 125 "RossyMiles: Daodan DLL port to C\n" + 126 "SFeLi: Original asm Daodan DLL\n" + 127 "ssg: Documenting Oni's game data"; 128 wxStaticText* itemStaticText5 = new wxStaticText( itemPanel3, wxID_STATIC, _(aboutText.c_str()), wxDefaultPosition, wxDefaultSize, wxNO_BORDER ); 129 129 itemBoxSizer4->Add(itemStaticText5, 0, wxALIGN_LEFT|wxALL, 5); 130 130
Note:
See TracChangeset
for help on using the changeset viewer.