Start factoring out the file opening code.

Even when the goal was just viewing images, the Main file was becoming a bit
unwieldy.  Now that I'm trying to add some more functionality, it was time to
start cleaning it up.
01ea1759370f — Quintillus 2 years ago
Refactor palette panel creation into its own method and JPanel.
3a7365d76fca — Quintillus 2 years ago
Moving towards adding basic painting ability.

So far this just means getting some palette selectors set up, and some logging of mouse movements to help plan what is needed to allow painting.  I'm planning to take inspiration from the Windows 3.1 through XP version of Paintbrush, because it's both very simple and highly effective.  Might fire up some other vintage applications such as MegaPaint for inspiration as well.
bed9a933a042 — Quintillus 2 years ago
Intelligently use the selected filter to export to the desired format.

Currently, it will either use BMP or GOD as the possible formats, but this should be relatively extensible.
7dca7c08d860 — Quintillus 2 years ago
Add IndyPaint and FalconTrueColor to the GUI.
0f69a9c375b6 — Quintillus 2 years ago
Update the imports for JImageReader 1.2.  Remove an unused top-level file.
1a5db384d043 — Quintillus 2 years ago
Bump the version of JImageReader used.
2ec5ca0d7a2f — Quintillus 2 years ago
Add AwardBIOS to the list of supported formats.
d1afe079249e — Quintillus 3 years ago
Add Dr Halo
a030dd4f00fa — Quintillus 3 years ago
Add MegaPaint Bild to the list of options.
44c74a7c52b6 — Quintillus 3 years ago
Allow opening EggPaint images.
b82a535519f3 — Quintillus 3 years ago
Several minor usability enhancements:
 - Add both ImageIO and non-ImageIO open methods to the menu so we don't have to patch the code (hot-swapping or otherwise) to toggle
 - Add accelerator shortcuts for both open methods, plus the custom zoom option
 - Center the custom zoom over the application when it's opened
 - Make the main control for custom zoom a text area, where the text is pre-selected

Basically this moves the UI forward 5 years, from circa 1994 to circa 1999.
1c8badd829d9 — Quintillus 3 years ago
Bump JImageReader dependency version.
b8d34453e581 — Quintillus 3 years ago
Add God Paint to the formats the UI can open.
c55a4ec67265 — Quintillus 3 years ago
Fix pom.xml formatting, remove redundant test resource removal (just needed an mvn clean).
1bcc1fa18176 — Quintillus 3 years ago
Exclude test images from the final .jar.

And reduce the size of that jar by 99.5%.
f8b9df918168 — Quintillus 3 years ago
Add the ability to export to PNG with ImageIO.  This uses the built-in Java support, and can be used for making test files in cases where our BMP exporter is not yet sufficiently advaned.
879ddf5391f5 — Quintillus 3 years ago
Catch general exceptions and alert the user that things failed.  This differentiates between "opened, and it looks the same/almost the same as the last image" and "failed to open".
6ceb0a1c907b — Quintillus 3 years ago
Bump pom.xml of dependency to 1.0.1, fix package reference in PCXRunner.java.
c704144e50d4 — Andrew@EliteBookXP 6 years ago
Display an error message when the ImageIO library cannot read a file.
Next