Skip to content

Commit

Permalink
Version 1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
Chlumsky committed May 28, 2021
1 parent acb01df commit 0f9c93e
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 7 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
*.VC.opendb
*.VC.db
/bin/*.lib
/bin/msdfgen
output.png
render.png
out/
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Binary file modified Msdfgen.aps
Binary file not shown.
Binary file modified Msdfgen.rc
Binary file not shown.
4 changes: 2 additions & 2 deletions main.cpp
Original file line number Diff line number Diff line change
@@ -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
*
*/

Expand Down
4 changes: 2 additions & 2 deletions msdfgen-ext.h
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*
Expand Down
6 changes: 3 additions & 3 deletions msdfgen.h
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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 {

Expand Down

0 comments on commit 0f9c93e

Please sign in to comment.