Changeset 542 for AE/Installer


Ignore:
Timestamp:
May 24, 2010, 4:43:35 AM (15 years ago)
Author:
iritscen
Message:

Updated credits within AEI.
AEI now makes sure there is always an updates/ folder in Edition/.

Location:
AE/Installer/trunk/source
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • AE/Installer/trunk/source/about.cpp

    r513 r542  
    111111    itemPanel3->SetSizer(itemBoxSizer4);
    112112       
    113         string aboutText = "AE/Mod Installer v";
     113        string aboutText = "AE Installer v";
    114114        aboutText = aboutText + INSTALLER_VERSION;
    115115        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" +
    122123                                                        "Neo: OniSplit, documenting Oni, tech support\n" +
    123                                                         "ONIrules: Additional weapons\n" +
    124                                                         "Paradox: Documenting of Oni\n" +
     124                                                        "Paradox: Documenting Oni's game data\n" +
    125125                                                        "RossyMiles: Daodan DLL port to C\n" +
    126                                                         "SFeLi: Original asm Daodan DLL\n" +
     126                                                        "SFeLi: Original Daodan DLL\n" +
    127127                                                        "ssg: Documenting Oni's game data";
    128128    wxStaticText* itemStaticText5 = new wxStaticText( itemPanel3, wxID_STATIC, _(aboutText.c_str()), wxDefaultPosition, wxDefaultSize, wxNO_BORDER );
  • AE/Installer/trunk/source/installer.cpp

    r526 r542  
    845845        }
    846846
    847         // Is there an update folder, and is it a monthly release or a patch?
     847        // Is there an update in the updates/ folder, and is it a monthly release or a patch?
    848848        bool firstParty = 0;
     849        // First create the folder if it's missing, so users are never left wondering where updates are supposed to be put
     850        if (!exists("../updates"))
     851                create_directory("../updates");
    849852        if (exists("../updates/Edition"))
    850853        {
Note: See TracChangeset for help on using the changeset viewer.