freetype-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[freetype2-demos] master 6e8d0dd: * Version 2.10.0 released.


From: Werner LEMBERG
Subject: [freetype2-demos] master 6e8d0dd: * Version 2.10.0 released.
Date: Fri, 15 Mar 2019 03:25:08 -0400 (EDT)

branch: master
commit 6e8d0ddc6b065dbfca25afea7567c4d53418b7d4
Author: Werner Lemberg <address@hidden>
Commit: Werner Lemberg <address@hidden>

    * Version 2.10.0 released.
    ==========================
    
    Tag sources with `VER-2-10-0.
    
    * README: Updated.
    * src/*.1: Updated.
    * src/ftinspect/ftinspect.pro: Updated.
    
    * Makefile (version, winversion): Since the minor version number has
    two digits now, never omit the patch number.  We would get ambiguous
    zip file names otherwise.
    
    * src/ftdump.c (main): Avoid compiler warning.
---
 ChangeLog                   | 18 ++++++++++++++++++
 Makefile                    | 10 +++++-----
 README                      |  4 ++--
 mac/getargv.c               |  4 ++--
 src/ftbench.1               |  2 +-
 src/ftdiff.1                |  2 +-
 src/ftdump.1                |  2 +-
 src/ftdump.c                |  2 +-
 src/ftgamma.1               |  2 +-
 src/ftgrid.1                | 13 +++++++++----
 src/ftinspect/ftinspect.pro |  2 +-
 src/ftlint.1                |  2 +-
 src/ftmulti.1               |  2 +-
 src/ftstring.1              | 13 +++++++++----
 src/ftvalid.1               |  2 +-
 src/ftview.1                | 27 ++++++++++++++++++++-------
 src/ttdebug.1               |  2 +-
 17 files changed, 75 insertions(+), 34 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 1f8b5dc..99894c5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,21 @@
+2019-03-15  Werner Lemberg  <address@hidden>
+
+       * Version 2.10.0 released.
+       ==========================
+
+
+       Tag sources with `VER-2-10-0.
+
+       * README: Updated.
+       * src/*.1: Updated.
+       * src/ftinspect/ftinspect.pro: Updated.
+
+       * Makefile (version, winversion): Since the minor version number has
+       two digits now, never omit the patch number.  We would get ambiguous
+       zip file names otherwise.
+
+       * src/ftdump.c (main): Avoid compiler warning.
+
 2019-03-07  Werner Lemberg  <address@hidden>
 
        * src/ttdebug.c (RunIns): Fix signature.
diff --git a/Makefile b/Makefile
index afdd1e4..df8df50 100644
--- a/Makefile
+++ b/Makefile
@@ -559,13 +559,13 @@ ifneq ($(findstring distx,$(MAKECMDGOALS)x),)
   minor := $(shell sed -n 's/.*FREETYPE_MINOR[^0-9]*\([0-9]\+\)/\1/p' < 
$(FT_H))
   patch := $(shell sed -n 's/.*FREETYPE_PATCH[^0-9]*\([0-9]\+\)/\1/p' < 
$(FT_H))
 
-  ifneq ($(findstring x0x,x$(patch)x),)
-    version := $(major).$(minor)
-    winversion := $(major)$(minor)
-  else
+#  ifneq ($(findstring x0x,x$(patch)x),)
+#    version := $(major).$(minor)
+#    winversion := $(major)$(minor)
+#  else
     version := $(major).$(minor).$(patch)
     winversion := $(major)$(minor)$(patch)
-  endif
+#  endif
 endif
 
 dist:
diff --git a/README b/README
index 70ea75a..f155c5f 100644
--- a/README
+++ b/README
@@ -8,8 +8,8 @@ WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING 
WARNING
   downloaded one  of the  stable FreeType 2  source packages  from our
   server, you most probably have to rename its directory, for example:
 
-    mv freetype-2.9.1 freetype2       on Unix
-    rename freetype-2.9.1 freetype2   on Windows
+    mv freetype-2.10.0 freetype2       on Unix
+    rename freetype-2.10.0 freetype2   on Windows
 
 WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
 
diff --git a/mac/getargv.c b/mac/getargv.c
index d026bc4..d770882 100644
--- a/mac/getargv.c
+++ b/mac/getargv.c
@@ -1,6 +1,6 @@
 /***********************************************************
-Copyright (C) 1991-2019 byStichting Mathematisch Centrum, Amsterdam,
-The Netherlands.
+Copyright (C) 1991-2019 by
+Stichting Mathematisch Centrum, Amsterdam, The Netherlands.
 
                         All Rights Reserved
 
diff --git a/src/ftbench.1 b/src/ftbench.1
index 1a4eb4b..940c93b 100644
--- a/src/ftbench.1
+++ b/src/ftbench.1
@@ -1,5 +1,5 @@
 '\" t
-.TH FTVIEW 1 "May 2018" "Freetype 2.9.1"
+.TH FTVIEW 1 "March 2019" "Freetype 2.10.0"
 .
 .
 .SH NAME
diff --git a/src/ftdiff.1 b/src/ftdiff.1
index 5deb359..8b5383e 100644
--- a/src/ftdiff.1
+++ b/src/ftdiff.1
@@ -1,4 +1,4 @@
-.TH FTDIFF 1 "May 2018" "FreeType 2.9.1"
+.TH FTDIFF 1 "March 2019" "FreeType 2.10.0"
 .
 .
 .SH NAME
diff --git a/src/ftdump.1 b/src/ftdump.1
index 07e38f9..f42e271 100644
--- a/src/ftdump.1
+++ b/src/ftdump.1
@@ -1,4 +1,4 @@
-.TH FTDUMP 1 "May 2018" "FreeType 2.9.1"
+.TH FTDUMP 1 "March 2019" "FreeType 2.10.0"
 .
 .
 .SH NAME
diff --git a/src/ftdump.c b/src/ftdump.c
index 94f5e2f..1f220d4 100644
--- a/src/ftdump.c
+++ b/src/ftdump.c
@@ -535,7 +535,7 @@
 
         const char*  f1 = "";
         const char*  f2 = "     %04lx";
-        const char*  f3;
+        const char*  f3 = "";
 
 
         FT_Set_Charmap( face, face->charmaps[i] );
diff --git a/src/ftgamma.1 b/src/ftgamma.1
index feb580a..3fbcb9d 100644
--- a/src/ftgamma.1
+++ b/src/ftgamma.1
@@ -1,4 +1,4 @@
-.TH FTGAMMA 1 "May 2018" "FreeType 2.9.1"
+.TH FTGAMMA 1 "March 2019" "FreeType 2.10.0"
 .
 .
 .SH NAME
diff --git a/src/ftgrid.1 b/src/ftgrid.1
index a5376d7..c3635f3 100644
--- a/src/ftgrid.1
+++ b/src/ftgrid.1
@@ -1,4 +1,4 @@
-.TH FTGRID 1 "May 2018" "Freetype 2.9.1"
+.TH FTGRID 1 "March 2019" "Freetype 2.10.0"
 .
 .
 .SH NAME
@@ -42,9 +42,14 @@ This program is part of the FreeType demos package.
 .SH OPTIONS
 .
 .TP
-.BI \-d \ width x height x depth
-Set the window width (in pixels), height (in pixels), and depth (in bpp) to
-the given values (default: 640x480x24).
+.BI \-d \ W x H x D
+Set the window width to
+.I W
+pixels, the height to
+.I H
+pixels, and the depth to
+.I D
+bpp (default: 640x480x24).
 .
 .TP
 .BI \-r \ r
diff --git a/src/ftinspect/ftinspect.pro b/src/ftinspect/ftinspect.pro
index 6538438..fba7119 100644
--- a/src/ftinspect/ftinspect.pro
+++ b/src/ftinspect/ftinspect.pro
@@ -13,7 +13,7 @@ unix|macx {
   PKGCONFIG += libpng harfbuzz zlib bzip2
 }
 win32 {
-  LIBS += ../../../freetyp2/objs/vc2010/freetype291.lib
+  LIBS += ../../../freetyp2/objs/vc2010/freetype2100.lib
   LIBS += -lpng -lharfbuzz -lz -lbz2 -lm
 }
 
diff --git a/src/ftlint.1 b/src/ftlint.1
index 7110ae6..6bcfc41 100644
--- a/src/ftlint.1
+++ b/src/ftlint.1
@@ -1,4 +1,4 @@
-.TH FTLINT 1 "May 2018" "Freetype 2.9.1"
+.TH FTLINT 1 "March 2019" "Freetype 2.10.0"
 .
 .
 .SH NAME
diff --git a/src/ftmulti.1 b/src/ftmulti.1
index 24ff755..44d732a 100644
--- a/src/ftmulti.1
+++ b/src/ftmulti.1
@@ -1,4 +1,4 @@
-.TH FTMULTI 1 "May 2018" "Freetype 2.9.1"
+.TH FTMULTI 1 "March 2019" "Freetype 2.10.0"
 .
 .
 .SH NAME
diff --git a/src/ftstring.1 b/src/ftstring.1
index 75c0917..46f9ace 100644
--- a/src/ftstring.1
+++ b/src/ftstring.1
@@ -1,4 +1,4 @@
-.TH FTSTRING 1 "May 2018" "Freetype 2.9.1"
+.TH FTSTRING 1 "March 2019" "Freetype 2.10.0"
 .
 .
 .SH NAME
@@ -44,9 +44,14 @@ This program is part of the FreeType demos package.
 .SH OPTIONS
 .
 .TP
-.BI \-d \ width x height x depth
-Set the window width (in pixels), height (in pixels), and depth (in bpp) to
-the given values (default: 640x480x24).
+.BI \-d \ W x H x D
+Set the window width to
+.I W
+pixels, the height to
+.I H
+pixels, and the depth to
+.I D
+bpp (default: 640x480x24).
 .
 .TP
 .BI \-r \ r
diff --git a/src/ftvalid.1 b/src/ftvalid.1
index 1ab9e38..39ac31e 100644
--- a/src/ftvalid.1
+++ b/src/ftvalid.1
@@ -1,4 +1,4 @@
-.TH FTVALID 1 "May 2018" "FreeType 2.9.1"
+.TH FTVALID 1 "March 2019" "FreeType 2.10.0"
 .
 .
 .SH NAME
diff --git a/src/ftview.1 b/src/ftview.1
index cda66ae..9415357 100644
--- a/src/ftview.1
+++ b/src/ftview.1
@@ -1,4 +1,4 @@
-.TH FTVIEW 1 "May 2018" "FreeType 2.9.1"
+.TH FTVIEW 1 "March 2019" "FreeType 2.10.0"
 .
 .
 .SH NAME
@@ -37,9 +37,14 @@ This program is part of the FreeType demos package.
 .SH OPTIONS
 .
 .TP
-.BI \-d \ width x height x depth
-Set the window width (in pixels), height (in pixels), and depth (in bpp) to
-the given values (default: 640x480x24).
+.BI \-d \ W x H x D
+Set the window width to
+.I W
+pixels, the height to
+.I H
+pixels, and the depth to
+.I D
+bpp (default: 640x480x24).
 .
 .TP
 .BI \-r \ r
@@ -77,9 +82,17 @@ Set start-up rendering mode (0 <=
 <= 6).
 .
 .TP
-.BI \-L \ N,...
-Use comma-separated values to set either LCD filter weights or
-subpixel geometry depending on the implemented subpixel rendering method.
+.BI \-L \ W1 , W2 , W3 , W4 , W5
+If there are five arguments, set LCD filter weights (as specified in
+function
+.BR FT_Library_SetLcdFilterWeights ).
+.
+.TP
+.BI \-L \ G1 , G2 , G3 , G4 , G5 , G6
+If there are six arguments, set the subpixel geometry (as specified in
+function
+.BR FT_Library_SetLcdGeometry )
+depending on the implemented subpixel rendering method.
 .
 .TP
 .B \-p
diff --git a/src/ttdebug.1 b/src/ttdebug.1
index 8bfb03a..bc1f47e 100644
--- a/src/ttdebug.1
+++ b/src/ttdebug.1
@@ -1,4 +1,4 @@
-.TH TTDEBUG 1 "May 2018" "FreeType 2.9.1"
+.TH TTDEBUG 1 "March 2019" "FreeType 2.10.0"
 .
 .
 .SH NAME



reply via email to

[Prev in Thread] Current Thread [Next in Thread]