From ce93ed759f1f11cd165e4089b8b0801c11279ba8 Mon Sep 17 00:00:00 2001 From: Strike <36372725+bahstrike@users.noreply.github.com> Date: Thu, 20 Apr 2023 01:42:52 -0400 Subject: [PATCH 1/4] Update README.md --- README.md | 9 --------- 1 file changed, 9 deletions(-) diff --git a/README.md b/README.md index e57dc9e..259e062 100644 --- a/README.md +++ b/README.md @@ -30,15 +30,6 @@ _NOTE: readme content/screenshots may be out-of-date, but still representative_ * Use fuchsia _(255/0/255)_ on incoming standard image files as an optional automatic transparency pixel value -#### History -The editing community has long relied on `MatMaster` for 8-bit textures and multi-cel support, and `Mat16` for 16-bit textures. -There has never been a single program that combines support for both. - -Unfortunately, `MatMaster` was built under a development environment that is not supported under Windows 10; stripping the editing community of a modern means for handling custom 8-bit textures. - -This application attempts to solve these deficiencies whilst also improving ease-of-use. - - #### Development **Matt** implements the .MAT specification as elicited from JKSpecs, BoBo Fett's "mat-16 spec", smlu's contributions, shiny's contributions, and personal research. From 89c9af65896f05feeac5da06b5c27a121cc4fc03 Mon Sep 17 00:00:00 2001 From: Strike <36372725+bahstrike@users.noreply.github.com> Date: Thu, 20 Apr 2023 01:54:33 -0400 Subject: [PATCH 2/4] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 259e062..430ddfb 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,8 @@ _NOTE: readme content/screenshots may be out-of-date, but still representative_ * Supports 16-bit MATs * format 565RGB _(best color)_ * format 1555ARGB _(supports transparency)_ + * format 4444ABGR _(indy only)_ +* Supports 24-bit and 32-bit MATs _(DUNNO YET GOTTA FILL IN)_ #### Missing/Pending Features From 1e4efa70e5aa55aeb0516ccd6586f82e2effa823 Mon Sep 17 00:00:00 2001 From: Strike <36372725+bahstrike@users.noreply.github.com> Date: Thu, 20 Apr 2023 02:09:17 -0400 Subject: [PATCH 3/4] Update README.md --- README.md | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 430ddfb..12a4d35 100644 --- a/README.md +++ b/README.md @@ -82,14 +82,18 @@ This is useful when having loaded an existing 8-bit .MAT that you want to save a After you have loaded the .MAT file and found its appropriate colormap, click `Keep Current Colormap` and any further colormap selections will only affect the output. - -#### [ ] `Show transparent as fuchsia` _(checkbox)_ +#### [X] `Show transparent as fuchsia` _(checkbox)_ Toggle whether to fill transparent pixels as pink, or let the "invalid image area" background lines show through. This is purely visual and has no effect on file output. - -#### [ ] `Autoselect format based on input image` _(checkbox)_ +#### [X] `Autoselect format based on input image` _(checkbox)_ Toggle whether to automatically change the `Material Format` options based upon the file you have loaded. This is useful to turn off when you want to lock-in your output settings, and drag a bunch of random files in. + +#### [X] `Exclude self-illuminated colors (8-bit)` _(checkbox)_ +Prevents using .CMP colors that have the same RGB value at min/max light level. This protects various texels from glowing in the dark when using software renderer. + +#### [_] `Dither (8-bit)` _(checkbox)_ +Applies a Floyd-Steinberg dithering algorithm while conforming an image to .CMP palette. Typically not needed, but available as an option for suboptimal image imports. From c33943d2938cd36f49b19d73365966d3b23a222b Mon Sep 17 00:00:00 2001 From: Strike <36372725+bahstrike@users.noreply.github.com> Date: Fri, 21 Apr 2023 01:25:16 -0400 Subject: [PATCH 4/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 12a4d35..af10cd3 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ _NOTE: readme content/screenshots may be out-of-date, but still representative_ * format 565RGB _(best color)_ * format 1555ARGB _(supports transparency)_ * format 4444ABGR _(indy only)_ -* Supports 24-bit and 32-bit MATs _(DUNNO YET GOTTA FILL IN)_ +* Supports 24-bit and 32-bit MATs _(3rd party expansions)_ #### Missing/Pending Features