diff --git a/.gitignore b/.gitignore index a2c10b6..3258410 100644 --- a/.gitignore +++ b/.gitignore @@ -2,4 +2,4 @@ build dist .vscode src/languages -TileMolester.jar +*.jar diff --git a/LICENSE.md b/LICENSE.md index 3e82d9a..233db15 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,16 +1,16 @@ -# Tile Molester +# Tile Mangler - Copyright (c) 2003-2005 Kent Hansen (SnowBro) - Original code - Copyright (c) 2005 Central MiB - v0.15a - Copyright (c) 2013 Lab313 - v0.17.2 - Copyright (c) 2014-2015 Mewster - v0.19 - Copyright (c) 2020 toruzz - v0.20 -Tile Molester is free software; you can redistribute it and/or modify +Tile Mangler is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. -Tile Molester is distributed in the hope that it will be useful, +Tile Mangler is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. diff --git a/META-INF/MANIFEST.MF b/META-INF/MANIFEST.MF index 1db7929..e97ba63 100644 --- a/META-INF/MANIFEST.MF +++ b/META-INF/MANIFEST.MF @@ -1,4 +1,4 @@ Manifest-Version: 1.0 Class-Path: . -Main-Class: TileMolester +Main-Class: TileMangler diff --git a/README.md b/README.md index 9e78652..b270453 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# Tile Molester +# Tile Mangler -Tile Molester is a multi-format, user-extensible graphics data editor that lets you create, view and edit graphics in arbitrary binary files, with a particular focus on binaries for game consoles. +Tile Mangler is a multi-format, user-extensible graphics data editor that lets you create, view and edit graphics in arbitrary binary files, with a particular focus on binaries for game consoles. It was originally developed SnowBro and later improved by Central MiB and Lab313. Mewster merged those changes and updates into the original source code and added some other improvements as well, which I used as a base to add UI improvements. diff --git a/compile.sh b/compile.sh index d519f47..0e85a99 100755 --- a/compile.sh +++ b/compile.sh @@ -1,5 +1,7 @@ +#!/bin/sh +set -ex rm -rf ./build/* -javac -sourcepath src -d ./build src/TileMolester.java +javac -sourcepath src -d ./build src/TileMangler.java cp -R src/tm/icons/ build/tm/ cp src/tm/splash.gif build/tm/splash.gif -jar cvfm TileMolester.jar META-INF/MANIFEST.MF -C build/ . \ No newline at end of file +jar cvfm TileMangler.jar META-INF/MANIFEST.MF -C build/ . diff --git a/languages/language.properties b/languages/language.properties index e0fc9a4..ff1bc05 100644 --- a/languages/language.properties +++ b/languages/language.properties @@ -97,7 +97,7 @@ Arrange_Icons = Arrange Icons Help = Help Help_Topics = Help Topics Tip_of_the_Millennium = Tip of the Millennium... -About_Tile_Molester = About Tile Molester +About_Tile_Mangler = About Tile Mangler # Tools diff --git a/languages/language_en_US.properties b/languages/language_en_US.properties index e0fc9a4..ff1bc05 100644 --- a/languages/language_en_US.properties +++ b/languages/language_en_US.properties @@ -97,7 +97,7 @@ Arrange_Icons = Arrange Icons Help = Help Help_Topics = Help Topics Tip_of_the_Millennium = Tip of the Millennium... -About_Tile_Molester = About Tile Molester +About_Tile_Mangler = About Tile Mangler # Tools diff --git a/languages/language_it_IT.properties b/languages/language_it_IT.properties index 5ca571a..c3cca14 100644 --- a/languages/language_it_IT.properties +++ b/languages/language_it_IT.properties @@ -97,7 +97,7 @@ Arrange_Icons = Ordina Icone Help = Aiuto Help_Topics = Guida Tip_of_the_Millennium = Suggerimento -About_Tile_Molester = About +About_Tile_Mangler = About # Tools diff --git a/languages/language_no_NO.properties b/languages/language_no_NO.properties index 2a18400..becf46b 100644 --- a/languages/language_no_NO.properties +++ b/languages/language_no_NO.properties @@ -97,7 +97,7 @@ Arrange_Icons = Ordne Ikoner Help = Hjelp Help_Topics = Emner i Hjelp... Tip_of_the_Millennium = Millenniets Tips... -About_Tile_Molester = Om Tile Molester... +About_Tile_Mangler = Om Tile Mangler... # Verktøy diff --git a/languages/language_sp_LA.properties b/languages/language_sp_LA.properties index 898fe0e..7d6389b 100644 --- a/languages/language_sp_LA.properties +++ b/languages/language_sp_LA.properties @@ -97,7 +97,7 @@ Arrange_Icons = Orcanizar Help = Ayuda Help_Topics = Temas de Ayuda Tip_of_the_Millennium = El Consejo del Milenio... -About_Tile_Molester = Acerca de Tile Molester +About_Tile_Mangler = Acerca de Tile Mangler # Tools diff --git a/languages/language_template b/languages/language_template index 817c359..52592eb 100644 --- a/languages/language_template +++ b/languages/language_template @@ -1,4 +1,4 @@ -#################### Language template for Tile Molester ##################### +#################### Language template for Tile Mangler ##################### # File Menu @@ -95,7 +95,7 @@ Arrange_Icons = Help = Help_Topics = Tip_of_the_Millennium = -About_Tile_Molester = +About_Tile_Mangler = # Tools diff --git a/src/TileMolester.java b/src/TileMangler.java similarity index 76% rename from src/TileMolester.java rename to src/TileMangler.java index e6970a7..e292969 100644 --- a/src/TileMolester.java +++ b/src/TileMangler.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. @@ -25,14 +25,14 @@ import java.awt.SystemColor; /** * -* Tile Molester main class. +* Tile Mangler main class. * A quite pointless class really. The application is very UI-centric, * so the TMUI class evolved into the real application backbone. * This class just gets the show started. * **/ -public class TileMolester { +public class TileMangler { /** * @@ -43,7 +43,7 @@ public class TileMolester { boolean isLinux = TMUI.isLinux; boolean isWindows = TMUI.isWindows; - public TileMolester() { + public TileMangler() { try { if(isLinux) UIManager.setLookAndFeel("com.sun.java.swing.plaf.gtk.GTKLookAndFeel"); if(isWindows) UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel"); @@ -61,7 +61,7 @@ public class TileMolester { **/ public static void main(String[] args) { - new TileMolester(); + new TileMangler(); } } \ No newline at end of file diff --git a/src/tm/FileImage.java b/src/tm/FileImage.java index 2c1af4a..baf9e49 100644 --- a/src/tm/FileImage.java +++ b/src/tm/FileImage.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/TMBitmapExporter.java b/src/tm/TMBitmapExporter.java index 740369f..04edfd0 100644 --- a/src/tm/TMBitmapExporter.java +++ b/src/tm/TMBitmapExporter.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/TMBitmapImporter.java b/src/tm/TMBitmapImporter.java index 2e2b543..eacb247 100644 --- a/src/tm/TMBitmapImporter.java +++ b/src/tm/TMBitmapImporter.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/TMFileResources.java b/src/tm/TMFileResources.java index 2aa6fd1..62e8585 100644 --- a/src/tm/TMFileResources.java +++ b/src/tm/TMFileResources.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/TMPalette.java b/src/tm/TMPalette.java index 122635c..5e2baf1 100644 --- a/src/tm/TMPalette.java +++ b/src/tm/TMPalette.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/TMSpecReader.java b/src/tm/TMSpecReader.java index 708ff52..af5c2e0 100644 --- a/src/tm/TMSpecReader.java +++ b/src/tm/TMSpecReader.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/canvases/TMEditorCanvas.java b/src/tm/canvases/TMEditorCanvas.java index 8f096c4..22f6e38 100644 --- a/src/tm/canvases/TMEditorCanvas.java +++ b/src/tm/canvases/TMEditorCanvas.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/canvases/TMPixelCanvas.java b/src/tm/canvases/TMPixelCanvas.java index 9600936..8308a9e 100644 --- a/src/tm/canvases/TMPixelCanvas.java +++ b/src/tm/canvases/TMPixelCanvas.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/canvases/TMSelectionCanvas.java b/src/tm/canvases/TMSelectionCanvas.java index 7a30b19..36f81f4 100644 --- a/src/tm/canvases/TMSelectionCanvas.java +++ b/src/tm/canvases/TMSelectionCanvas.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/canvases/TMTileCanvas.java b/src/tm/canvases/TMTileCanvas.java index 8532e8c..a7adbea 100644 --- a/src/tm/canvases/TMTileCanvas.java +++ b/src/tm/canvases/TMTileCanvas.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/colorcodecs/ColorCodec.java b/src/tm/colorcodecs/ColorCodec.java index bd19581..8c7c1ec 100644 --- a/src/tm/colorcodecs/ColorCodec.java +++ b/src/tm/colorcodecs/ColorCodec.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/colorcodecs/DirectColorCodec.java b/src/tm/colorcodecs/DirectColorCodec.java index 8b11ad0..770aff5 100644 --- a/src/tm/colorcodecs/DirectColorCodec.java +++ b/src/tm/colorcodecs/DirectColorCodec.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/colorcodecs/IndexedColorCodec.java b/src/tm/colorcodecs/IndexedColorCodec.java index b0706b8..9289a8c 100644 --- a/src/tm/colorcodecs/IndexedColorCodec.java +++ b/src/tm/colorcodecs/IndexedColorCodec.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/filelistener/GameBoyAdvanceFileListener.java b/src/tm/filelistener/GameBoyAdvanceFileListener.java index 40e291d..1a12937 100644 --- a/src/tm/filelistener/GameBoyAdvanceFileListener.java +++ b/src/tm/filelistener/GameBoyAdvanceFileListener.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/filelistener/GameBoyFileListener.java b/src/tm/filelistener/GameBoyFileListener.java index 27edcda..43df0dd 100644 --- a/src/tm/filelistener/GameBoyFileListener.java +++ b/src/tm/filelistener/GameBoyFileListener.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/filelistener/INESFileListener.java b/src/tm/filelistener/INESFileListener.java index 23127f2..62b9064 100644 --- a/src/tm/filelistener/INESFileListener.java +++ b/src/tm/filelistener/INESFileListener.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/filelistener/SegaGenesisFileListener.java b/src/tm/filelistener/SegaGenesisFileListener.java index 83337c8..b57f109 100644 --- a/src/tm/filelistener/SegaGenesisFileListener.java +++ b/src/tm/filelistener/SegaGenesisFileListener.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/filelistener/SegaMasterSystemFileListener.java b/src/tm/filelistener/SegaMasterSystemFileListener.java index 1b490ce..c28aaa1 100644 --- a/src/tm/filelistener/SegaMasterSystemFileListener.java +++ b/src/tm/filelistener/SegaMasterSystemFileListener.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/filelistener/TMFileListener.java b/src/tm/filelistener/TMFileListener.java index bea82ef..c924b9c 100644 --- a/src/tm/filelistener/TMFileListener.java +++ b/src/tm/filelistener/TMFileListener.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/fileselection/TMApprovedFileOpenChooser.java b/src/tm/fileselection/TMApprovedFileOpenChooser.java index df39584..6b3717f 100644 --- a/src/tm/fileselection/TMApprovedFileOpenChooser.java +++ b/src/tm/fileselection/TMApprovedFileOpenChooser.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/fileselection/TMApprovedFileSaveChooser.java b/src/tm/fileselection/TMApprovedFileSaveChooser.java index 1edaaef..d823155 100644 --- a/src/tm/fileselection/TMApprovedFileSaveChooser.java +++ b/src/tm/fileselection/TMApprovedFileSaveChooser.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/fileselection/TMFileFilter.java b/src/tm/fileselection/TMFileFilter.java index cdc6fa4..46c1a5e 100644 --- a/src/tm/fileselection/TMFileFilter.java +++ b/src/tm/fileselection/TMFileFilter.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/fileselection/TMPaletteFileFilter.java b/src/tm/fileselection/TMPaletteFileFilter.java index 63cd899..cb27485 100644 --- a/src/tm/fileselection/TMPaletteFileFilter.java +++ b/src/tm/fileselection/TMPaletteFileFilter.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/fileselection/TMTileCodecFileFilter.java b/src/tm/fileselection/TMTileCodecFileFilter.java index 9d924ea..bd68db6 100644 --- a/src/tm/fileselection/TMTileCodecFileFilter.java +++ b/src/tm/fileselection/TMTileCodecFileFilter.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/modaldialog/TMAddToTreeDialog.java b/src/tm/modaldialog/TMAddToTreeDialog.java index 344c321..3cd1828 100644 --- a/src/tm/modaldialog/TMAddToTreeDialog.java +++ b/src/tm/modaldialog/TMAddToTreeDialog.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/modaldialog/TMBlockSizeDialog.java b/src/tm/modaldialog/TMBlockSizeDialog.java index df1455c..59575d1 100644 --- a/src/tm/modaldialog/TMBlockSizeDialog.java +++ b/src/tm/modaldialog/TMBlockSizeDialog.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/modaldialog/TMCanvasSizeDialog.java b/src/tm/modaldialog/TMCanvasSizeDialog.java index c98e4e8..7b4b805 100644 --- a/src/tm/modaldialog/TMCanvasSizeDialog.java +++ b/src/tm/modaldialog/TMCanvasSizeDialog.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/modaldialog/TMCustomCodecDialog.java b/src/tm/modaldialog/TMCustomCodecDialog.java index fe7cda8..b54c8a8 100644 --- a/src/tm/modaldialog/TMCustomCodecDialog.java +++ b/src/tm/modaldialog/TMCustomCodecDialog.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/modaldialog/TMGoToDialog.java b/src/tm/modaldialog/TMGoToDialog.java index d6116cf..8fa161e 100644 --- a/src/tm/modaldialog/TMGoToDialog.java +++ b/src/tm/modaldialog/TMGoToDialog.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/modaldialog/TMImportInternalPaletteDialog.java b/src/tm/modaldialog/TMImportInternalPaletteDialog.java index 41cbe38..21b3d0f 100644 --- a/src/tm/modaldialog/TMImportInternalPaletteDialog.java +++ b/src/tm/modaldialog/TMImportInternalPaletteDialog.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/modaldialog/TMModalDialog.java b/src/tm/modaldialog/TMModalDialog.java index 287da44..ad4318e 100644 --- a/src/tm/modaldialog/TMModalDialog.java +++ b/src/tm/modaldialog/TMModalDialog.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/modaldialog/TMNewFileDialog.java b/src/tm/modaldialog/TMNewFileDialog.java index 127e207..ec18fc6 100644 --- a/src/tm/modaldialog/TMNewFileDialog.java +++ b/src/tm/modaldialog/TMNewFileDialog.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/modaldialog/TMNewFolderDialog.java b/src/tm/modaldialog/TMNewFolderDialog.java index ff81b18..892f691 100644 --- a/src/tm/modaldialog/TMNewFolderDialog.java +++ b/src/tm/modaldialog/TMNewFolderDialog.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/modaldialog/TMNewPaletteDialog.java b/src/tm/modaldialog/TMNewPaletteDialog.java index ef5587d..54adbf4 100644 --- a/src/tm/modaldialog/TMNewPaletteDialog.java +++ b/src/tm/modaldialog/TMNewPaletteDialog.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/modaldialog/TMOrganizeTreeDialog.java b/src/tm/modaldialog/TMOrganizeTreeDialog.java index 90fe577..aa4b6f8 100644 --- a/src/tm/modaldialog/TMOrganizeTreeDialog.java +++ b/src/tm/modaldialog/TMOrganizeTreeDialog.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. @@ -205,7 +205,7 @@ public class TMOrganizeTreeDialog extends JDialog implements TreeModelListener { JOptionPane.showMessageDialog( this, "Todo.\nUse drag and drop to move items.", - "Tile Molester", + "Tile Mangler", JOptionPane.INFORMATION_MESSAGE ); } @@ -221,7 +221,7 @@ public class TMOrganizeTreeDialog extends JDialog implements TreeModelListener { if (node.isRoot()) return; int retVal = JOptionPane.showConfirmDialog(this, "You sure about this?", // i18n - "Tile Molester", + "Tile Mangler", JOptionPane.YES_NO_OPTION, JOptionPane.WARNING_MESSAGE); if (retVal == JOptionPane.OK_OPTION) { diff --git a/src/tm/modaldialog/TMPaletteSizeDialog.java b/src/tm/modaldialog/TMPaletteSizeDialog.java index 71795cf..83ba0b7 100644 --- a/src/tm/modaldialog/TMPaletteSizeDialog.java +++ b/src/tm/modaldialog/TMPaletteSizeDialog.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/modaldialog/TMStretchDialog.java b/src/tm/modaldialog/TMStretchDialog.java index 7b877dc..e53e616 100644 --- a/src/tm/modaldialog/TMStretchDialog.java +++ b/src/tm/modaldialog/TMStretchDialog.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/reversibleaction/ReversibleAction.java b/src/tm/reversibleaction/ReversibleAction.java index 7871ee2..1b24e06 100644 --- a/src/tm/reversibleaction/ReversibleAction.java +++ b/src/tm/reversibleaction/ReversibleAction.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/reversibleaction/ReversibleActionsSelectionAction.java b/src/tm/reversibleaction/ReversibleActionsSelectionAction.java index 8454668..6515e32 100644 --- a/src/tm/reversibleaction/ReversibleActionsSelectionAction.java +++ b/src/tm/reversibleaction/ReversibleActionsSelectionAction.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/reversibleaction/ReversibleAddBookmarkAction.java b/src/tm/reversibleaction/ReversibleAddBookmarkAction.java index 379f54f..23b8ea9 100644 --- a/src/tm/reversibleaction/ReversibleAddBookmarkAction.java +++ b/src/tm/reversibleaction/ReversibleAddBookmarkAction.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/reversibleaction/ReversibleClearAction.java b/src/tm/reversibleaction/ReversibleClearAction.java index 6bc8d9f..7263df7 100644 --- a/src/tm/reversibleaction/ReversibleClearAction.java +++ b/src/tm/reversibleaction/ReversibleClearAction.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/reversibleaction/ReversibleCutAction.java b/src/tm/reversibleaction/ReversibleCutAction.java index 060b080..2b7846c 100644 --- a/src/tm/reversibleaction/ReversibleCutAction.java +++ b/src/tm/reversibleaction/ReversibleCutAction.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/reversibleaction/ReversibleMoveSelectionAction.java b/src/tm/reversibleaction/ReversibleMoveSelectionAction.java index f6c9c77..f235552 100644 --- a/src/tm/reversibleaction/ReversibleMoveSelectionAction.java +++ b/src/tm/reversibleaction/ReversibleMoveSelectionAction.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/reversibleaction/ReversibleNewSelectionAction.java b/src/tm/reversibleaction/ReversibleNewSelectionAction.java index c89d117..5cba922 100644 --- a/src/tm/reversibleaction/ReversibleNewSelectionAction.java +++ b/src/tm/reversibleaction/ReversibleNewSelectionAction.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/reversibleaction/ReversiblePaletteEditAction.java b/src/tm/reversibleaction/ReversiblePaletteEditAction.java index c712bc4..741291b 100644 --- a/src/tm/reversibleaction/ReversiblePaletteEditAction.java +++ b/src/tm/reversibleaction/ReversiblePaletteEditAction.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/reversibleaction/ReversibleStretchAction.java b/src/tm/reversibleaction/ReversibleStretchAction.java index 6e93aa0..30575da 100644 --- a/src/tm/reversibleaction/ReversibleStretchAction.java +++ b/src/tm/reversibleaction/ReversibleStretchAction.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/reversibleaction/ReversibleTileModifyAction.java b/src/tm/reversibleaction/ReversibleTileModifyAction.java index 153d4fe..33c3d36 100644 --- a/src/tm/reversibleaction/ReversibleTileModifyAction.java +++ b/src/tm/reversibleaction/ReversibleTileModifyAction.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/threads/FileLoaderThread.java b/src/tm/threads/FileLoaderThread.java index d173fe8..2fb4d00 100644 --- a/src/tm/threads/FileLoaderThread.java +++ b/src/tm/threads/FileLoaderThread.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. @@ -71,7 +71,7 @@ public class FileLoaderThread extends ProgressThread { catch (Exception e) { } bytesLeft = 0; } - yield(); + //yield(); } try { bis.close(); @@ -87,4 +87,4 @@ public class FileLoaderThread extends ProgressThread { contents = null; } -} \ No newline at end of file +} diff --git a/src/tm/threads/FileSaverThread.java b/src/tm/threads/FileSaverThread.java index 1e8f3ef..1c95598 100644 --- a/src/tm/threads/FileSaverThread.java +++ b/src/tm/threads/FileSaverThread.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. @@ -72,7 +72,7 @@ public class FileSaverThread extends ProgressThread { catch (Exception e) { } bytesLeft = 0; } - yield(); + //yield(); } try { raf.close(); @@ -80,4 +80,4 @@ public class FileSaverThread extends ProgressThread { // done saving data } -} \ No newline at end of file +} diff --git a/src/tm/threads/ProgressThread.java b/src/tm/threads/ProgressThread.java index f61af4e..b59b7f9 100644 --- a/src/tm/threads/ProgressThread.java +++ b/src/tm/threads/ProgressThread.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/tilecodecs/CompositeTileCodec.java b/src/tm/tilecodecs/CompositeTileCodec.java index 88d297f..f611ced 100644 --- a/src/tm/tilecodecs/CompositeTileCodec.java +++ b/src/tm/tilecodecs/CompositeTileCodec.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/tilecodecs/DirectColorTileCodec.java b/src/tm/tilecodecs/DirectColorTileCodec.java index 5b3cde4..d802746 100644 --- a/src/tm/tilecodecs/DirectColorTileCodec.java +++ b/src/tm/tilecodecs/DirectColorTileCodec.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/tilecodecs/LinearTileCodec.java b/src/tm/tilecodecs/LinearTileCodec.java index e14241a..966c8b4 100644 --- a/src/tm/tilecodecs/LinearTileCodec.java +++ b/src/tm/tilecodecs/LinearTileCodec.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/tilecodecs/PlanarTileCodec.java b/src/tm/tilecodecs/PlanarTileCodec.java index 68fe1c3..d8c79da 100644 --- a/src/tm/tilecodecs/PlanarTileCodec.java +++ b/src/tm/tilecodecs/PlanarTileCodec.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/tilecodecs/TileCodec.java b/src/tm/tilecodecs/TileCodec.java index 0df3931..b613578 100644 --- a/src/tm/tilecodecs/TileCodec.java +++ b/src/tm/tilecodecs/TileCodec.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/treenodes/BookmarkItemNode.java b/src/tm/treenodes/BookmarkItemNode.java index 07ac57f..fce6c52 100644 --- a/src/tm/treenodes/BookmarkItemNode.java +++ b/src/tm/treenodes/BookmarkItemNode.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/treenodes/FolderNode.java b/src/tm/treenodes/FolderNode.java index 8b0a196..59fa305 100644 --- a/src/tm/treenodes/FolderNode.java +++ b/src/tm/treenodes/FolderNode.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/treenodes/PaletteItemNode.java b/src/tm/treenodes/PaletteItemNode.java index 2a855c8..96c7668 100644 --- a/src/tm/treenodes/PaletteItemNode.java +++ b/src/tm/treenodes/PaletteItemNode.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/treenodes/TMTreeNode.java b/src/tm/treenodes/TMTreeNode.java index 866dcea..4903fec 100644 --- a/src/tm/treenodes/TMTreeNode.java +++ b/src/tm/treenodes/TMTreeNode.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/treenodes/TMTreeNodeTransferable.java b/src/tm/treenodes/TMTreeNodeTransferable.java index ad53178..16e8621 100644 --- a/src/tm/treenodes/TMTreeNodeTransferable.java +++ b/src/tm/treenodes/TMTreeNodeTransferable.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/treenodes/TMTreeNodeTree.java b/src/tm/treenodes/TMTreeNodeTree.java index 816c572..295e754 100644 --- a/src/tm/treenodes/TMTreeNodeTree.java +++ b/src/tm/treenodes/TMTreeNodeTree.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/ui/ProgressDialog.java b/src/tm/ui/ProgressDialog.java index 1dff5cc..56abb53 100644 --- a/src/tm/ui/ProgressDialog.java +++ b/src/tm/ui/ProgressDialog.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/ui/TMAboutDialog.java b/src/tm/ui/TMAboutDialog.java index 656d763..3ce7197 100644 --- a/src/tm/ui/TMAboutDialog.java +++ b/src/tm/ui/TMAboutDialog.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. @@ -30,7 +30,7 @@ import javax.swing.*; public class TMAboutDialog extends JDialog { public TMAboutDialog(Frame owner) { - super(owner, "About Tile Molester"); + super(owner, "About Tile Mangler"); setLayout(new BorderLayout()); } diff --git a/src/tm/ui/TMBitmapFilters.java b/src/tm/ui/TMBitmapFilters.java index e4df41b..dffcb90 100644 --- a/src/tm/ui/TMBitmapFilters.java +++ b/src/tm/ui/TMBitmapFilters.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/ui/TMPalettePane.java b/src/tm/ui/TMPalettePane.java index bc21c73..891dfd4 100644 --- a/src/tm/ui/TMPalettePane.java +++ b/src/tm/ui/TMPalettePane.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/ui/TMPaletteVizualiser.java b/src/tm/ui/TMPaletteVizualiser.java index afa3b7b..dfe2615 100644 --- a/src/tm/ui/TMPaletteVizualiser.java +++ b/src/tm/ui/TMPaletteVizualiser.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/ui/TMSplashScreen.java b/src/tm/ui/TMSplashScreen.java index 89b5635..938f802 100644 --- a/src/tm/ui/TMSplashScreen.java +++ b/src/tm/ui/TMSplashScreen.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. @@ -24,7 +24,7 @@ import javax.swing.*; /** * -* Tile Molester splash screen. +* Tile Mangler splash screen. * **/ diff --git a/src/tm/ui/TMStatusBar.java b/src/tm/ui/TMStatusBar.java index ac8cd94..954cb37 100644 --- a/src/tm/ui/TMStatusBar.java +++ b/src/tm/ui/TMStatusBar.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. @@ -28,7 +28,7 @@ import javax.swing.border.*; /** * -* Tile Molester status bar. +* Tile Mangler status bar. * **/ diff --git a/src/tm/ui/TMUI.java b/src/tm/ui/TMUI.java index c01afaa..c39e558 100644 --- a/src/tm/ui/TMUI.java +++ b/src/tm/ui/TMUI.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. @@ -267,7 +267,7 @@ public class TMUI extends JFrame { private JMenu helpMenu = new JMenu("Help"); private JMenuItem helpTopicsMenuItem = new JMenuItem("Help Topics"); //private JMenuItem tipMenuItem = new JMenuItem("Tip of the Millennium..."); // Still say no to drugs, okay? - private JMenuItem aboutMenuItem = new JMenuItem("About Tile Molester..."); + private JMenuItem aboutMenuItem = new JMenuItem("About Tile Mangler..."); // button groups private ButtonGroup toolButtonGroup = new ButtonGroup(); @@ -303,13 +303,13 @@ public class TMUI extends JFrame { /** * -* Creates a Tile Molester UI. +* Creates a Tile Mangler UI. * **/ public TMUI() { - super("Tile Molester"); + super("Tile Mangler"); //I tried to change the UI but it seems innatural /*try { @@ -437,7 +437,7 @@ public class TMUI extends JFrame { } catch (Exception e) { JOptionPane.showMessageDialog(this, xlate("Error reading language file:")+"\n"+e.getMessage(), - "Tile Molester", + "Tile Mangler", JOptionPane.ERROR_MESSAGE); System.exit(0); } @@ -533,7 +533,7 @@ public class TMUI extends JFrame { // Help menu helpMenu.setText(xlate("Help")); helpTopicsMenuItem.setText(xlate("Help_Topics")); - aboutMenuItem.setText(xlate("About_Tile_Molester")); + aboutMenuItem.setText(xlate("About_Tile_Mangler")); UIManager.put("OptionPane.yesButtonText", xlate("Yes")); UIManager.put("OptionPane.noButtonText", xlate("No")); @@ -556,28 +556,28 @@ public class TMUI extends JFrame { e.getMessage()+"\n"+ "("+e.getSystemId()+",\n"+ "line "+e.getLineNumber()+")\n", - "Tile Molester", + "Tile Mangler", JOptionPane.ERROR_MESSAGE); System.exit(0); } catch (SAXException e) { JOptionPane.showMessageDialog(this, xlate("Parser_Parse_Error")+"\n"+e.getMessage(), - "Tile Molester", + "Tile Mangler", JOptionPane.ERROR_MESSAGE); System.exit(0); } catch (ParserConfigurationException e) { JOptionPane.showMessageDialog(this, xlate("Parser_Config_Error")+"\n"+e.getMessage(), - "Tile Molester", + "Tile Mangler", JOptionPane.ERROR_MESSAGE); System.exit(0); } catch (IOException e) { JOptionPane.showMessageDialog(this, xlate("Parser_IO_Error")+"\n"+e.getMessage(), - "Tile Molester", + "Tile Mangler", JOptionPane.ERROR_MESSAGE); System.exit(0); } @@ -759,7 +759,7 @@ public class TMUI extends JFrame { catch (Exception e) { JOptionPane.showMessageDialog(this, xlate("Save_Settings_Error")+"\n"+e.getMessage(), - "Tile Molester", + "Tile Mangler", JOptionPane.ERROR_MESSAGE); } } @@ -789,7 +789,7 @@ public class TMUI extends JFrame { catch (Exception e) { JOptionPane.showMessageDialog(this, xlate("Load_Settings_Error")+"\n"+e.getMessage(), - "Tile Molester", + "Tile Mangler", JOptionPane.ERROR_MESSAGE); } if (doc == null) return; @@ -2274,7 +2274,7 @@ public class TMUI extends JFrame { // check if saving required/desired if (img.isModified()) { int retVal = JOptionPane.showConfirmDialog(this, - xlate("Save_Changes_To")+" "+img.getName()+"?", "Tile Molester", + xlate("Save_Changes_To")+" "+img.getName()+"?", "Tile Mangler", JOptionPane.YES_NO_CANCEL_OPTION, JOptionPane.INFORMATION_MESSAGE); if (retVal == JOptionPane.YES_OPTION) { doSaveCommand(); @@ -2311,7 +2311,7 @@ public class TMUI extends JFrame { if (frames.length == 0) { // no more frames left on the desktop, hide MDI menus and toolbars disableMDIStuff(); - setTitle("Tile Molester"); + setTitle("Tile Mangler"); } else { // select a random frame (Swing doesn't do it for you...) @@ -2343,7 +2343,7 @@ public class TMUI extends JFrame { catch (Exception e) { JOptionPane.showMessageDialog(this, xlate("Save_Resources_Error")+"\n"+e.getMessage(), - "Tile Molester", + "Tile Mangler", JOptionPane.ERROR_MESSAGE); } } @@ -2372,7 +2372,7 @@ public class TMUI extends JFrame { // check if saving required/desired if (img.isModified()) { int retVal = JOptionPane.showConfirmDialog(this, - xlate("Save_Changes_To")+" "+img.getName()+"?", "Tile Molester", + xlate("Save_Changes_To")+" "+img.getName()+"?", "Tile Mangler", JOptionPane.YES_NO_CANCEL_OPTION, JOptionPane.INFORMATION_MESSAGE); if (retVal == JOptionPane.YES_OPTION) { try { @@ -2414,7 +2414,7 @@ public class TMUI extends JFrame { desktop.revalidate(); desktop.repaint(); disableMDIStuff(); - setTitle("Tile Molester"); + setTitle("Tile Mangler"); System.gc(); } @@ -2439,7 +2439,7 @@ public class TMUI extends JFrame { if (!file.canWrite()) { JOptionPane.showMessageDialog(this, xlate("File_Write_Error")+"\n"+file.getName(), - "Tile Molester", + "Tile Mangler", JOptionPane.ERROR_MESSAGE); } else { @@ -2451,7 +2451,7 @@ public class TMUI extends JFrame { catch (Exception e) { JOptionPane.showMessageDialog(this, xlate("File_Save_Error")+"\n"+e.getMessage(), - "Tile Molester", + "Tile Mangler", JOptionPane.ERROR_MESSAGE); return; } @@ -2495,7 +2495,7 @@ public class TMUI extends JFrame { File file = fileSaveChooser.getSelectedFile(); view.getFileImage().setFile(file); doSaveCommand(); - setTitle("Tile Molester - "+view.getTitle()); + setTitle("Tile Mangler - "+view.getTitle()); } } setSaveButtonsEnabled(false); @@ -2713,7 +2713,7 @@ public class TMUI extends JFrame { } catch (Exception e) { JOptionPane.showMessageDialog(this, xlate("Save_Bitmap_Error")+"\n"+e.getMessage(), - "Tile Molester", + "Tile Mangler", JOptionPane.ERROR_MESSAGE); } } @@ -2745,7 +2745,7 @@ public class TMUI extends JFrame { catch (Exception e) { JOptionPane.showMessageDialog(this, xlate("Load_Bitmap_Error")+"\n"+e.getMessage(), - "Tile Molester", + "Tile Mangler", JOptionPane.ERROR_MESSAGE); return; } @@ -2871,7 +2871,7 @@ public class TMUI extends JFrame { public void doTipCommand() { // Show Tip dialog JOptionPane.showConfirmDialog(this, - xlate("Drugs_Message"), "Tile Molester", + xlate("Drugs_Message"), "Tile Mangler", JOptionPane.YES_NO_OPTION, JOptionPane.INFORMATION_MESSAGE); } @@ -2885,7 +2885,7 @@ public class TMUI extends JFrame { public void doAboutCommand() { JOptionPane.showMessageDialog(this, - "Tile Molester v0.20\nby SnowBro 2003-2005 (v0.16)\nby Dr. MefistO 2013 (v0.17.2)\nby Mewster 2014-2015 (v0.19)\nby toruzz 2020 (v0.20)", "Tile Molester", + "Tile Mangler v0.20\nby SnowBro 2003-2005 (v0.16)\nby Dr. MefistO 2013 (v0.17.2)\nby Mewster 2014-2015 (v0.19)\nby toruzz 2020 (v0.20)", "Tile Mangler", 1); } @@ -3463,7 +3463,7 @@ public void doAboutCommand() JOptionPane.showMessageDialog( this, "Todo.\nDouble-click on a color in the palette below to edit it.", - "Tile Molester", + "Tile Mangler", JOptionPane.INFORMATION_MESSAGE ); // let user edit the color @@ -3632,7 +3632,7 @@ public void doAboutCommand() catch (Exception e) { JOptionPane.showMessageDialog(this, xlate("Palette_Read_Error")+"\n"+e.getMessage(), - "Tile Molester", + "Tile Mangler", JOptionPane.ERROR_MESSAGE); return; } @@ -4592,7 +4592,7 @@ public void doAboutCommand() refreshPalettesMenu(); refreshUndoRedo(); - setTitle("Tile Molester - "+view.getTitle()); + setTitle("Tile Mangler - "+view.getTitle()); } /** @@ -4772,14 +4772,14 @@ public void doAboutCommand() catch (OutOfMemoryError e) { JOptionPane.showMessageDialog(this, xlate("Out_Of_Memory")+"\n"+file.length()+" bytes needed to load file.", // i18n - "Tile Molester", + "Tile Mangler", JOptionPane.ERROR_MESSAGE); return; } catch (Exception e) { JOptionPane.showMessageDialog(this, xlate("Load_File_Error")+"\n"+e.getMessage(), - "Tile Molester", + "Tile Mangler", JOptionPane.ERROR_MESSAGE); return; } @@ -4809,19 +4809,19 @@ public void doAboutCommand() catch (SAXException e) { JOptionPane.showMessageDialog(this, xlate("Parser_Parse_Error")+"\n"+e.getMessage(), - "Tile Molester", + "Tile Mangler", JOptionPane.ERROR_MESSAGE); } catch (ParserConfigurationException e) { JOptionPane.showMessageDialog(this, xlate("Parser_Config_Error")+"\n"+e.getMessage(), - "Tile Molester", + "Tile Mangler", JOptionPane.ERROR_MESSAGE); } catch (IOException e) { JOptionPane.showMessageDialog(this, xlate("Parser_IO_Error")+"\n"+e.getMessage(), - "Tile Molester", + "Tile Mangler", JOptionPane.ERROR_MESSAGE); } } @@ -4945,7 +4945,7 @@ public void doAboutCommand() // ask user to select language String selectedName = (String)JOptionPane.showInputDialog(this, - "Choose a locale:", "Tile Molester", + "Choose a locale:", "Tile Mangler", JOptionPane.INFORMATION_MESSAGE, null, displayNames, displayNames[defaultIndex]); if (selectedName != null) { @@ -4962,7 +4962,7 @@ public void doAboutCommand() else { JOptionPane.showMessageDialog(this, xlate("No language files found.\nPlease check your installation."), - "Tile Molester", + "Tile Mangler", JOptionPane.ERROR_MESSAGE); } } diff --git a/src/tm/ui/TMView.java b/src/tm/ui/TMView.java index cdf5495..8632237 100644 --- a/src/tm/ui/TMView.java +++ b/src/tm/ui/TMView.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/ui/ViewKeyListener.java b/src/tm/ui/ViewKeyListener.java index 5f7d15e..32173c3 100644 --- a/src/tm/ui/ViewKeyListener.java +++ b/src/tm/ui/ViewKeyListener.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/utils/HexStringConverter.java b/src/tm/utils/HexStringConverter.java index 6208627..af38e10 100644 --- a/src/tm/utils/HexStringConverter.java +++ b/src/tm/utils/HexStringConverter.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/utils/XMLParser.java b/src/tm/utils/XMLParser.java index 9103628..42c77f6 100644 --- a/src/tm/utils/XMLParser.java +++ b/src/tm/utils/XMLParser.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. diff --git a/src/tm/utils/Xlator.java b/src/tm/utils/Xlator.java index f6ea5c2..d1afbf9 100644 --- a/src/tm/utils/Xlator.java +++ b/src/tm/utils/Xlator.java @@ -2,14 +2,14 @@ * * Copyright (C) 2003 Kent Hansen. * -* This file is part of Tile Molester. +* This file is part of Tile Mangler. * -* Tile Molester is free software; you can redistribute it and/or modify +* Tile Mangler is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * -* Tile Molester is distributed in the hope that it will be useful, +* Tile Mangler is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details.