| 104 |
|
wxBoxSizer* itemBoxSizer2 = new wxBoxSizer(wxVERTICAL); |
| 105 |
|
itemDialog1->SetSizer(itemBoxSizer2); |
| 106 |
|
|
| 107 |
< |
wxPanel* itemPanel3 = new wxPanel( itemDialog1, ID_PANEL2, wxDefaultPosition, wxDefaultSize, wxNO_BORDER|wxTAB_TRAVERSAL ); |
| 107 |
> |
wxPanel* itemPanel3 = new wxPanel( itemDialog1, ID_PANEL2, wxDefaultPosition, wxDefaultSize, wxNO_BORDER|wxTAB_TRAVERSAL ); |
| 108 |
|
itemBoxSizer2->Add(itemPanel3, 0, wxALIGN_CENTER_HORIZONTAL|wxALL, 5); |
| 109 |
|
|
| 110 |
|
wxBoxSizer* itemBoxSizer4 = new wxBoxSizer(wxVERTICAL); |
| 111 |
|
itemPanel3->SetSizer(itemBoxSizer4); |
| 112 |
|
|
| 113 |
< |
string aboutText = "AE/Mod Installer v"; |
| 114 |
< |
aboutText = aboutText + INSTALLER_VERSION; |
| 113 |
> |
string aboutText = "AE Installer v"; |
| 114 |
> |
aboutText = aboutText + gInstallerVersion; |
| 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" + |
| 116 |
> |
"AE Credits:\n" + |
| 117 |
> |
"demos_kratos: OniSplit GUI (Windows)\n" + |
| 118 |
> |
"EdT: OniSplit GUI (Mac)\n" + |
| 119 |
> |
"geyser: Original creator of the Edition\n" + |
| 120 |
> |
"Gumby: Installer (Win), AE Framework\n" + |
| 121 |
> |
"Iritscen: Installer (Mac)\n" + |
| 122 |
> |
"Loser: Documenting Oni's game data\n" + |
| 123 |
|
"Neo: OniSplit, documenting Oni, tech support\n" + |
| 124 |
< |
"ONIrules: Additional weapons\n" + |
| 124 |
< |
"Paradox: Documenting of Oni\n" + |
| 124 |
> |
"Paradox: Documenting Oni's game data\n" + |
| 125 |
|
"RossyMiles: Daodan DLL port to C\n" + |
| 126 |
< |
"SFeLi: Original asm Daodan DLL\n" + |
| 126 |
> |
"SFeLi: Original 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 |
+ |
|
| 130 |
|
itemBoxSizer4->Add(itemStaticText5, 0, wxALIGN_LEFT|wxALL, 5); |
| 131 |
|
|
| 132 |
|
wxStaticLine* itemStaticLine6 = new wxStaticLine( itemPanel3, wxID_STATIC, wxDefaultPosition, wxDefaultSize, wxLI_HORIZONTAL ); |
| 133 |
|
itemBoxSizer4->Add(itemStaticLine6, 0, wxGROW|wxALL, 5); |
| 134 |
|
|
| 135 |
< |
wxTextCtrl* itemTextCtrl7 = new wxTextCtrl( itemPanel3, wxID_STATIC, _("oni.bungie.org"), wxDefaultPosition, wxDefaultSize, wxTE_MULTILINE|wxTE_READONLY ); |
| 136 |
< |
itemBoxSizer4->Add(itemTextCtrl7, 0, wxALIGN_CENTER_HORIZONTAL|wxALL, 5); |
| 135 |
> |
wxHyperlinkCtrl* oniUrl = new wxHyperlinkCtrl( itemPanel3, wxID_STATIC, "http://oni.bungie.org", "http://oni.bungie.org", |
| 136 |
> |
wxDefaultPosition, wxDefaultSize, wxHL_DEFAULT_STYLE); |
| 137 |
> |
itemBoxSizer4->Add(oniUrl, 0, wxALIGN_CENTER_HORIZONTAL|wxALL, 5); |
| 138 |
|
|
| 139 |
|
wxStdDialogButtonSizer* itemStdDialogButtonSizer8 = new wxStdDialogButtonSizer; |
| 140 |
|
|