Browse Source

Version 1.9

Chlumsky 4 years ago
parent
commit
0f9c93e686
7 changed files with 15 additions and 7 deletions
  1. 1 0
      .gitignore
  2. 7 0
      CHANGELOG.md
  3. BIN
      Msdfgen.aps
  4. BIN
      Msdfgen.rc
  5. 2 2
      main.cpp
  6. 2 2
      msdfgen-ext.h
  7. 3 3
      msdfgen.h

+ 1 - 0
.gitignore

@@ -18,6 +18,7 @@
 *.VC.opendb
 *.VC.db
 /bin/*.lib
+/bin/msdfgen
 output.png
 render.png
 out/

+ 7 - 0
CHANGELOG.md

@@ -1,4 +1,11 @@
 
+## Version 1.9 (2021-05-28)
+
+- Error correction of multi-channel distance fields has been completely reworked
+- Added new edge coloring strategy that optimizes colors based on distances between edges
+- Added some minor functions for the library API
+- Minor code refactor and optimizations
+
 ## Version 1.8 (2020-10-17)
 
 - Integrated the Skia library into the project, which is used to preprocess the shape geometry and eliminate any self-intersections and other irregularities previously unsupported by the software

BIN
Msdfgen.aps


BIN
Msdfgen.rc


+ 2 - 2
main.cpp

@@ -1,8 +1,8 @@
 
 /*
- * MULTI-CHANNEL SIGNED DISTANCE FIELD GENERATOR v1.8 (2020-10-17) - standalone console program
+ * MULTI-CHANNEL SIGNED DISTANCE FIELD GENERATOR v1.9 (2021-05-28) - standalone console program
  * --------------------------------------------------------------------------------------------
- * A utility by Viktor Chlumsky, (c) 2014 - 2020
+ * A utility by Viktor Chlumsky, (c) 2014 - 2021
  *
  */
 

+ 2 - 2
msdfgen-ext.h

@@ -2,9 +2,9 @@
 #pragma once
 
 /*
- * MULTI-CHANNEL SIGNED DISTANCE FIELD GENERATOR v1.8 (2020-10-17) - extensions
+ * MULTI-CHANNEL SIGNED DISTANCE FIELD GENERATOR v1.9 (2021-05-28) - extensions
  * ----------------------------------------------------------------------------
- * A utility by Viktor Chlumsky, (c) 2014 - 2020
+ * A utility by Viktor Chlumsky, (c) 2014 - 2021
  *
  * The extension module provides ways to easily load input and save output using popular formats.
  *

+ 3 - 3
msdfgen.h

@@ -2,9 +2,9 @@
 #pragma once
 
 /*
- * MULTI-CHANNEL SIGNED DISTANCE FIELD GENERATOR v1.8 (2020-10-17)
+ * MULTI-CHANNEL SIGNED DISTANCE FIELD GENERATOR v1.9 (2021-05-28)
  * ---------------------------------------------------------------
- * A utility by Viktor Chlumsky, (c) 2014 - 2020
+ * A utility by Viktor Chlumsky, (c) 2014 - 2021
  *
  * The technique used to generate multi-channel distance fields in this code
  * has been developed by Viktor Chlumsky in 2014 for his master's thesis,
@@ -34,7 +34,7 @@
 #include "core/save-tiff.h"
 #include "core/shape-description.h"
 
-#define MSDFGEN_VERSION "1.8"
+#define MSDFGEN_VERSION "1.9"
 
 namespace msdfgen {