This Trac instance is not used for development anymore!

We migrated our development workflow to git and Gitea.
To test the future redirection, replace trac by ariadne in the page URL.

Changeset 9987 for ps


Ignore:
Timestamp:
08/11/11 00:23:35 (13 years ago)
Author:
ben
Message:

Removes ColourTester utility (needs update-workspaces).
Adds busy cursor to Atlas map generator.

Location:
ps/trunk
Files:
5 deleted
6 edited

Legend:

Unmodified
Added
Removed
  • ps/trunk/build/premake/premake.lua

    r9609 r9987  
    803803    atlas_src = {
    804804        "ActorEditor",
    805         "ColourTester",
    806805        "CustomControls/Buttons",
    807806        "CustomControls/Canvas",
     
    921920function setup_atlas_frontends()
    922921    setup_atlas_frontend_package("ActorEditor")
    923     setup_atlas_frontend_package("ColourTester")
    924922    if options["aoe3ed"] then
    925923        setup_atlas_frontend_package("ArchiveViewer")
  • ps/trunk/build/premake/premake4.lua

    r9836 r9987  
    770770    atlas_src = {
    771771        "ActorEditor",
    772         "ColourTester",
    773772        "CustomControls/Buttons",
    774773        "CustomControls/Canvas",
     
    891890function setup_atlas_frontends()
    892891    setup_atlas_frontend_project("ActorEditor")
    893     setup_atlas_frontend_project("ColourTester")
    894892    if _OPTIONS["aoe3ed"] then
    895893        setup_atlas_frontend_project("ArchiveViewer")
  • ps/trunk/source/tools/atlas/AtlasFrontends/generate.pl

    r3814 r9987  
    88        PROJECT_NAME    => "ActorEditor",
    99        WINDOW_NAME     => "ActorEditor",
    10     },
    11     {
    12         PROJECT_NAME    => "ColourTester",
    13         WINDOW_NAME     => "ColourTester",
    1410    },
    1511    {
  • ps/trunk/source/tools/atlas/AtlasUI/Misc/DLLInterface.cpp

    r8044 r9987  
    2626#include "ActorEditor/ActorEditor.h"
    2727#include "ArchiveViewer/ArchiveViewer.h"
    28 #include "ColourTester/ColourTester.h"
    2928#include "FileConverter/FileConverter.h"
    3029#include "ScenarioEditor/ScenarioEditor.h"
     
    207206#define MAYBE(t) if (g_InitialWindowType == _T(#t)) frame = new t(NULL); else
    208207        MAYBE(ActorEditor)
    209         MAYBE(ColourTester)
    210208#ifdef USE_AOE3ED
    211209        MAYBE(ArchiveViewer)
  • ps/trunk/source/tools/atlas/AtlasUI/Misc/atlas.rc

    r3812 r9987  
    11ICON_ActorEditor        ICON                    "Graphics\\ActorEditor.ico"
    2 ICON_ColourTester       ICON                    "Graphics\\ColourTester.ico"
    32ICON_ArchiveViewer      ICON                    "Graphics\\ArchiveViewer.ico"
    43ICON_FileConverter      ICON                    "Graphics\\FileConverter.ico"
  • ps/trunk/source/tools/atlas/AtlasUI/ScenarioEditor/Sections/Map/Map.cpp

    r9649 r9987  
    480480
    481481    wxBusyInfo(_("Generating map"));
     482    wxBusyCursor busyc;
    482483
    483484    wxString scriptName(settings["Script"]);
Note: See TracChangeset for help on using the changeset viewer.