diff --git a/Help/e_findreplace.html b/Help/e_findreplace.html index b260d4b..6158fa1 100644 --- a/Help/e_findreplace.html +++ b/Help/e_findreplace.html @@ -18,7 +18,7 @@

- Looking for something? This is the mode you want to use to quickly find specific elements in your map. This mode is accessible from any classic mode using F3 and shows a dialog window that you can use to find items. Select the type of search you want to perform at the top of the dialog window. Then enter the value you are looking for. Depending on the type of search, you can click the browse button to select from a browser, or use comparison operators (>, >=, <, <= or !/!=) for more advanced numeric searching. Check the Replace checkbox if you want to replace the value of the found elements with another value. Click the Find / Replace button to perform the search.
+ Looking for something? This is the mode you want to use to quickly find specific elements in your map. This mode is accessible from any classic mode using F3 and shows a dialog window that you can use to find items. Select the type of search you want to perform at the top of the dialog window. Then enter the value you are looking for. Depending on the type of search, you can click the browse button to select from a browser, use comparison operators (>, >=, <, <= or !/!=) for more advanced numeric searching, or wildcards (*, ?) when searching for texture names. Check the Replace checkbox if you want to replace the value of the found elements with another value. Click the Find / Replace button to perform the search.

The results will be displayed in a list that opens. Click on one of the results to zoom in on that particular element. You can also focus the main window and scroll or zoom the map to see the selected elements. Click the Edit Selection button to edit the selected elements.

diff --git a/Setup/WizardLarge.bmp b/Setup/WizardLarge.bmp deleted file mode 100644 index b4e7195..0000000 Binary files a/Setup/WizardLarge.bmp and /dev/null differ diff --git a/Setup/WizardLarge100.bmp b/Setup/WizardLarge100.bmp new file mode 100644 index 0000000..f038288 Binary files /dev/null and b/Setup/WizardLarge100.bmp differ diff --git a/Setup/WizardLarge125.bmp b/Setup/WizardLarge125.bmp new file mode 100644 index 0000000..2603c80 Binary files /dev/null and b/Setup/WizardLarge125.bmp differ diff --git a/Setup/WizardLarge150.bmp b/Setup/WizardLarge150.bmp new file mode 100644 index 0000000..a664373 Binary files /dev/null and b/Setup/WizardLarge150.bmp differ diff --git a/Setup/WizardLarge175.bmp b/Setup/WizardLarge175.bmp new file mode 100644 index 0000000..6827216 Binary files /dev/null and b/Setup/WizardLarge175.bmp differ diff --git a/Setup/WizardLarge200.bmp b/Setup/WizardLarge200.bmp new file mode 100644 index 0000000..2eb1b39 Binary files /dev/null and b/Setup/WizardLarge200.bmp differ diff --git a/Setup/WizardSmall.bmp b/Setup/WizardSmall.bmp deleted file mode 100644 index f894c32..0000000 Binary files a/Setup/WizardSmall.bmp and /dev/null differ diff --git a/Setup/WizardSmall100.bmp b/Setup/WizardSmall100.bmp new file mode 100644 index 0000000..d2f597d Binary files /dev/null and b/Setup/WizardSmall100.bmp differ diff --git a/Setup/WizardSmall125.bmp b/Setup/WizardSmall125.bmp new file mode 100644 index 0000000..1fdfbb1 Binary files /dev/null and b/Setup/WizardSmall125.bmp differ diff --git a/Setup/WizardSmall150.bmp b/Setup/WizardSmall150.bmp new file mode 100644 index 0000000..2f82359 Binary files /dev/null and b/Setup/WizardSmall150.bmp differ diff --git a/Setup/WizardSmall175.bmp b/Setup/WizardSmall175.bmp new file mode 100644 index 0000000..830a12a Binary files /dev/null and b/Setup/WizardSmall175.bmp differ diff --git a/Setup/WizardSmall200.bmp b/Setup/WizardSmall200.bmp new file mode 100644 index 0000000..a858ed0 Binary files /dev/null and b/Setup/WizardSmall200.bmp differ diff --git a/Setup/zonebuilder_setup.iss b/Setup/zonebuilder_setup.iss index 0a1bcb0..701d0aa 100644 --- a/Setup/zonebuilder_setup.iss +++ b/Setup/zonebuilder_setup.iss @@ -26,7 +26,8 @@ LanguageDetectionMethod=none MinVersion=0,6.1sp1 UninstallDisplayIcon={app}\Builder.exe WizardImageFile=..\Setup\WizardLarge.bmp -WizardSmallImageFile=..\Setup\WizardSmall.bmp +WizardSmallImageFile=..\Setup\WizardSmall100.bmp,..\Setup\WizardSmall125.bmp,..\Setup\WizardSmall150.bmp,..\Setup\WizardSmall175.bmp,..\Setup\WizardSmall200.bmp +WizardImageStretch=false [Languages] Name: english; MessagesFile: compiler:Default.isl @@ -83,6 +84,9 @@ Root: HKLM; Subkey: SOFTWARE\SRB2\Zone Builder\; ValueType: string; ValueName: L [Messages] ReadyLabel2a=Continue to begin with the installation, or click Back if you want to review or change any settings. +[Run] +Filename: "{app}\Builder.exe"; Description: Start Zone Builder; Flags: postinstall unchecked nowait + [Code] // Global variables var diff --git a/Source/Plugins/BuilderModes/ErrorChecks/CheckMissingTextures.cs b/Source/Plugins/BuilderModes/ErrorChecks/CheckMissingTextures.cs index 7693625..74241e2 100644 --- a/Source/Plugins/BuilderModes/ErrorChecks/CheckMissingTextures.cs +++ b/Source/Plugins/BuilderModes/ErrorChecks/CheckMissingTextures.cs @@ -23,7 +23,7 @@ using System.Threading; namespace CodeImp.DoomBuilder.BuilderModes { - [ErrorChecker("Check missing textures", true, 80)] + [ErrorChecker("Check missing textures", false, 80)] public class CheckMissingTextures : ErrorChecker { #region ================== Constants diff --git a/Source/Plugins/BuilderModes/ErrorChecks/CheckUnknownTextures.cs b/Source/Plugins/BuilderModes/ErrorChecks/CheckUnknownTextures.cs index 26f29e9..934acc2 100644 --- a/Source/Plugins/BuilderModes/ErrorChecks/CheckUnknownTextures.cs +++ b/Source/Plugins/BuilderModes/ErrorChecks/CheckUnknownTextures.cs @@ -23,7 +23,7 @@ using System.Threading; namespace CodeImp.DoomBuilder.BuilderModes { - [ErrorChecker("Check unknown textures", true, 60)] + [ErrorChecker("Check unknown textures", false, 60)] public class CheckUnknownTextures : ErrorChecker { #region ================== Constants diff --git a/Source/Plugins/BuilderModes/ErrorChecks/CheckUnusedTextures.cs b/Source/Plugins/BuilderModes/ErrorChecks/CheckUnusedTextures.cs index d3b412e..e828fa5 100644 --- a/Source/Plugins/BuilderModes/ErrorChecks/CheckUnusedTextures.cs +++ b/Source/Plugins/BuilderModes/ErrorChecks/CheckUnusedTextures.cs @@ -7,7 +7,7 @@ using System.Threading; namespace CodeImp.DoomBuilder.BuilderModes { - [ErrorChecker("Check unused textures", true, 60)] + [ErrorChecker("Check unused textures", false, 60)] public class CheckUnusedTextures : ErrorChecker { #region ================== Constants