One bugfix was that Message/Error dialogs were not shown after dialog actions in the last upload.
Also the GIMP Palette import code didn't correctly convert the 24bit colors to 12bit.
After the bugfix some imported colors (especially grayscale) may appear tinted compared to the original color and need manual editing. However the conversion is more accurate now.
Edit: Just uploaded version 1.8.16, with even more bugfixes in GIMP Palette import and again a more accurate (I think) conversion of 8bit RGB values to 4bit.
The current formula is:
Code: Select all
(int) std::round( float(8bitRGBValue)/17.0 )
Code: Select all
{ {0, 0}, {1, 17}, {2, 34}, {3, 51}, {4, 68}, {5, 85}, {6, 102}, {7, 119}, {8, 136}, {9, 153}, {10, 170}, {11, 187}, {12, 204}, {13, 221}, {14, 238}, {15, 255} }