aboutsummaryrefslogtreecommitdiffstats
path: root/src/gdisp/mcufont
diff options
context:
space:
mode:
Diffstat (limited to 'src/gdisp/mcufont')
-rw-r--r--src/gdisp/mcufont/mcufont.h2
-rw-r--r--src/gdisp/mcufont/mf_bwfont.c2
-rw-r--r--src/gdisp/mcufont/mf_bwfont.h2
-rw-r--r--src/gdisp/mcufont/mf_config.h2
-rw-r--r--src/gdisp/mcufont/mf_encoding.c2
-rw-r--r--src/gdisp/mcufont/mf_encoding.h2
-rw-r--r--src/gdisp/mcufont/mf_font.c2
-rw-r--r--src/gdisp/mcufont/mf_font.h2
-rw-r--r--src/gdisp/mcufont/mf_justify.c2
-rw-r--r--src/gdisp/mcufont/mf_justify.h2
-rw-r--r--src/gdisp/mcufont/mf_kerning.c2
-rw-r--r--src/gdisp/mcufont/mf_kerning.h2
-rw-r--r--src/gdisp/mcufont/mf_rlefont.c2
-rw-r--r--src/gdisp/mcufont/mf_rlefont.h2
-rw-r--r--src/gdisp/mcufont/mf_scaledfont.c2
-rw-r--r--src/gdisp/mcufont/mf_scaledfont.h2
-rw-r--r--src/gdisp/mcufont/mf_wordwrap.c2
-rw-r--r--src/gdisp/mcufont/mf_wordwrap.h2
18 files changed, 18 insertions, 18 deletions
diff --git a/src/gdisp/mcufont/mcufont.h b/src/gdisp/mcufont/mcufont.h
index 7479d2b1..4ff4e0d8 100644
--- a/src/gdisp/mcufont/mcufont.h
+++ b/src/gdisp/mcufont/mcufont.h
@@ -2,7 +2,7 @@
* This file is subject to the terms of the GFX License. If a copy of
* the license was not distributed with this file, you can obtain one at:
*
- * http://ugfx.org/license.html
+ * http://ugfx.io/license.html
*/
/* Tiny library for rendering compressed bitmap fonts on microcontrollers. */
diff --git a/src/gdisp/mcufont/mf_bwfont.c b/src/gdisp/mcufont/mf_bwfont.c
index 8dc88f9d..a17a1673 100644
--- a/src/gdisp/mcufont/mf_bwfont.c
+++ b/src/gdisp/mcufont/mf_bwfont.c
@@ -2,7 +2,7 @@
* This file is subject to the terms of the GFX License. If a copy of
* the license was not distributed with this file, you can obtain one at:
*
- * http://ugfx.org/license.html
+ * http://ugfx.io/license.html
*/
#include "mf_bwfont.h"
diff --git a/src/gdisp/mcufont/mf_bwfont.h b/src/gdisp/mcufont/mf_bwfont.h
index f7fda527..537ba22e 100644
--- a/src/gdisp/mcufont/mf_bwfont.h
+++ b/src/gdisp/mcufont/mf_bwfont.h
@@ -2,7 +2,7 @@
* This file is subject to the terms of the GFX License. If a copy of
* the license was not distributed with this file, you can obtain one at:
*
- * http://ugfx.org/license.html
+ * http://ugfx.io/license.html
*/
/* Uncompressed font format for storing black & white fonts. Very efficient
diff --git a/src/gdisp/mcufont/mf_config.h b/src/gdisp/mcufont/mf_config.h
index 9a951054..bf93f992 100644
--- a/src/gdisp/mcufont/mf_config.h
+++ b/src/gdisp/mcufont/mf_config.h
@@ -2,7 +2,7 @@
* This file is subject to the terms of the GFX License. If a copy of
* the license was not distributed with this file, you can obtain one at:
*
- * http://ugfx.org/license.html
+ * http://ugfx.io/license.html
*/
/* Configuration constants for mcufont. */
diff --git a/src/gdisp/mcufont/mf_encoding.c b/src/gdisp/mcufont/mf_encoding.c
index 86ef54d9..afa16b18 100644
--- a/src/gdisp/mcufont/mf_encoding.c
+++ b/src/gdisp/mcufont/mf_encoding.c
@@ -2,7 +2,7 @@
* This file is subject to the terms of the GFX License. If a copy of
* the license was not distributed with this file, you can obtain one at:
*
- * http://ugfx.org/license.html
+ * http://ugfx.io/license.html
*/
#include "mf_encoding.h"
diff --git a/src/gdisp/mcufont/mf_encoding.h b/src/gdisp/mcufont/mf_encoding.h
index a8c44d9d..18ffb892 100644
--- a/src/gdisp/mcufont/mf_encoding.h
+++ b/src/gdisp/mcufont/mf_encoding.h
@@ -2,7 +2,7 @@
* This file is subject to the terms of the GFX License. If a copy of
* the license was not distributed with this file, you can obtain one at:
*
- * http://ugfx.org/license.html
+ * http://ugfx.io/license.html
*/
/* Simple UTF-8 decoder. Also implements the much simpler ASCII and UTF16
diff --git a/src/gdisp/mcufont/mf_font.c b/src/gdisp/mcufont/mf_font.c
index b8989336..9a313f8c 100644
--- a/src/gdisp/mcufont/mf_font.c
+++ b/src/gdisp/mcufont/mf_font.c
@@ -2,7 +2,7 @@
* This file is subject to the terms of the GFX License. If a copy of
* the license was not distributed with this file, you can obtain one at:
*
- * http://ugfx.org/license.html
+ * http://ugfx.io/license.html
*/
#include "mf_config.h"
diff --git a/src/gdisp/mcufont/mf_font.h b/src/gdisp/mcufont/mf_font.h
index c7929cdf..1812d576 100644
--- a/src/gdisp/mcufont/mf_font.h
+++ b/src/gdisp/mcufont/mf_font.h
@@ -2,7 +2,7 @@
* This file is subject to the terms of the GFX License. If a copy of
* the license was not distributed with this file, you can obtain one at:
*
- * http://ugfx.org/license.html
+ * http://ugfx.io/license.html
*/
/* Generic font type that supports fonts with multiple kinds of compression.
diff --git a/src/gdisp/mcufont/mf_justify.c b/src/gdisp/mcufont/mf_justify.c
index 204bb7f7..5314ab45 100644
--- a/src/gdisp/mcufont/mf_justify.c
+++ b/src/gdisp/mcufont/mf_justify.c
@@ -2,7 +2,7 @@
* This file is subject to the terms of the GFX License. If a copy of
* the license was not distributed with this file, you can obtain one at:
*
- * http://ugfx.org/license.html
+ * http://ugfx.io/license.html
*/
#include "mf_justify.h"
diff --git a/src/gdisp/mcufont/mf_justify.h b/src/gdisp/mcufont/mf_justify.h
index 5620cffd..3c7622fc 100644
--- a/src/gdisp/mcufont/mf_justify.h
+++ b/src/gdisp/mcufont/mf_justify.h
@@ -2,7 +2,7 @@
* This file is subject to the terms of the GFX License. If a copy of
* the license was not distributed with this file, you can obtain one at:
*
- * http://ugfx.org/license.html
+ * http://ugfx.io/license.html
*/
/* Text alignment and justification algorithm. Supports left, right, center
diff --git a/src/gdisp/mcufont/mf_kerning.c b/src/gdisp/mcufont/mf_kerning.c
index 0ef35363..5a5aa65b 100644
--- a/src/gdisp/mcufont/mf_kerning.c
+++ b/src/gdisp/mcufont/mf_kerning.c
@@ -2,7 +2,7 @@
* This file is subject to the terms of the GFX License. If a copy of
* the license was not distributed with this file, you can obtain one at:
*
- * http://ugfx.org/license.html
+ * http://ugfx.io/license.html
*/
#include "mf_kerning.h"
diff --git a/src/gdisp/mcufont/mf_kerning.h b/src/gdisp/mcufont/mf_kerning.h
index 043265c7..844d99c3 100644
--- a/src/gdisp/mcufont/mf_kerning.h
+++ b/src/gdisp/mcufont/mf_kerning.h
@@ -2,7 +2,7 @@
* This file is subject to the terms of the GFX License. If a copy of
* the license was not distributed with this file, you can obtain one at:
*
- * http://ugfx.org/license.html
+ * http://ugfx.io/license.html
*/
/* Automatic kerning for font rendering. This solves the issue where some
diff --git a/src/gdisp/mcufont/mf_rlefont.c b/src/gdisp/mcufont/mf_rlefont.c
index a4c598ea..db217425 100644
--- a/src/gdisp/mcufont/mf_rlefont.c
+++ b/src/gdisp/mcufont/mf_rlefont.c
@@ -2,7 +2,7 @@
* This file is subject to the terms of the GFX License. If a copy of
* the license was not distributed with this file, you can obtain one at:
*
- * http://ugfx.org/license.html
+ * http://ugfx.io/license.html
*/
#include "mf_rlefont.h"
diff --git a/src/gdisp/mcufont/mf_rlefont.h b/src/gdisp/mcufont/mf_rlefont.h
index 15fbc5eb..8978f2a3 100644
--- a/src/gdisp/mcufont/mf_rlefont.h
+++ b/src/gdisp/mcufont/mf_rlefont.h
@@ -2,7 +2,7 @@
* This file is subject to the terms of the GFX License. If a copy of
* the license was not distributed with this file, you can obtain one at:
*
- * http://ugfx.org/license.html
+ * http://ugfx.io/license.html
*/
/* A compressed font format based on run length encoding and dictionary
diff --git a/src/gdisp/mcufont/mf_scaledfont.c b/src/gdisp/mcufont/mf_scaledfont.c
index 570baef6..b3c70a7f 100644
--- a/src/gdisp/mcufont/mf_scaledfont.c
+++ b/src/gdisp/mcufont/mf_scaledfont.c
@@ -2,7 +2,7 @@
* This file is subject to the terms of the GFX License. If a copy of
* the license was not distributed with this file, you can obtain one at:
*
- * http://ugfx.org/license.html
+ * http://ugfx.io/license.html
*/
#include "mf_scaledfont.h"
diff --git a/src/gdisp/mcufont/mf_scaledfont.h b/src/gdisp/mcufont/mf_scaledfont.h
index c4e4406b..c82c2093 100644
--- a/src/gdisp/mcufont/mf_scaledfont.h
+++ b/src/gdisp/mcufont/mf_scaledfont.h
@@ -2,7 +2,7 @@
* This file is subject to the terms of the GFX License. If a copy of
* the license was not distributed with this file, you can obtain one at:
*
- * http://ugfx.org/license.html
+ * http://ugfx.io/license.html
*/
/* Generate scaled (nearest-neighbor) fonts. This can be used for displaying
diff --git a/src/gdisp/mcufont/mf_wordwrap.c b/src/gdisp/mcufont/mf_wordwrap.c
index de684ca1..06101b32 100644
--- a/src/gdisp/mcufont/mf_wordwrap.c
+++ b/src/gdisp/mcufont/mf_wordwrap.c
@@ -2,7 +2,7 @@
* This file is subject to the terms of the GFX License. If a copy of
* the license was not distributed with this file, you can obtain one at:
*
- * http://ugfx.org/license.html
+ * http://ugfx.io/license.html
*/
#include "mf_wordwrap.h"
diff --git a/src/gdisp/mcufont/mf_wordwrap.h b/src/gdisp/mcufont/mf_wordwrap.h
index 40983b4a..a1a051fa 100644
--- a/src/gdisp/mcufont/mf_wordwrap.h
+++ b/src/gdisp/mcufont/mf_wordwrap.h
@@ -2,7 +2,7 @@
* This file is subject to the terms of the GFX License. If a copy of
* the license was not distributed with this file, you can obtain one at:
*
- * http://ugfx.org/license.html
+ * http://ugfx.io/license.html
*/
/* Word wrapping algorithm with UTF-8 support. More than just a basic greedy