mirror of
https://github.com/pdf2htmlEX/pdf2htmlEX.git
synced 2024-12-22 04:50:09 +00:00
removed fontforge git version as it is not a stable representation of 20200314 version
This commit is contained in:
parent
7b5780ea83
commit
930915df34
@ -64,7 +64,6 @@ void show_version_and_exit(const char * dummy = nullptr)
|
|||||||
cerr << "Libraries: " << endl;
|
cerr << "Libraries: " << endl;
|
||||||
cerr << " poppler " << POPPLER_VERSION << endl;
|
cerr << " poppler " << POPPLER_VERSION << endl;
|
||||||
cerr << " libfontforge (date) " << ffwVersionInfo->versionDate << endl;
|
cerr << " libfontforge (date) " << ffwVersionInfo->versionDate << endl;
|
||||||
cerr << " libfontforge (git) " << ffwVersionInfo->gitVersion << endl;
|
|
||||||
#if ENABLE_SVG
|
#if ENABLE_SVG
|
||||||
cerr << " cairo " << cairo_version_string() << endl;
|
cerr << " cairo " << cairo_version_string() << endl;
|
||||||
#endif
|
#endif
|
||||||
|
@ -158,7 +158,6 @@ void setupSignalHandler(
|
|||||||
detailInfo = detailInfo + "Libraries:\n" ;
|
detailInfo = detailInfo + "Libraries:\n" ;
|
||||||
detailInfo = detailInfo + " poppler " + POPPLER_VERSION + "\n";
|
detailInfo = detailInfo + " poppler " + POPPLER_VERSION + "\n";
|
||||||
detailInfo = detailInfo + " libfontforge (date) " + ffwVersionInfo->versionDate + "\n";
|
detailInfo = detailInfo + " libfontforge (date) " + ffwVersionInfo->versionDate + "\n";
|
||||||
detailInfo = detailInfo + " libfontforge (git) " + ffwVersionInfo->gitVersion + "\n";
|
|
||||||
#if ENABLE_SVG
|
#if ENABLE_SVG
|
||||||
detailInfo = detailInfo + " cairo " + cairo_version_string() + "\n";
|
detailInfo = detailInfo + " cairo " + cairo_version_string() + "\n";
|
||||||
#endif
|
#endif
|
||||||
|
@ -20,7 +20,6 @@
|
|||||||
|
|
||||||
#include "ffw.h" // needed for:
|
#include "ffw.h" // needed for:
|
||||||
#include "gfile.h" // FindProgDir
|
#include "gfile.h" // FindProgDir
|
||||||
#include "fontforge-version-extras.h" // FONTFORGE_GIT_VERSION
|
|
||||||
#include "fontforge/autowidth.h" // FVRemoveKerns
|
#include "fontforge/autowidth.h" // FVRemoveKerns
|
||||||
#include "fontforge/bitmapchar.h" // SFReplaceEncodingBDFProps
|
#include "fontforge/bitmapchar.h" // SFReplaceEncodingBDFProps
|
||||||
#include "fontforge/cvimages.h" // FVImportImages
|
#include "fontforge/cvimages.h" // FVImportImages
|
||||||
@ -127,7 +126,6 @@ static FFWVersionInfo ffwVersionInfo;
|
|||||||
|
|
||||||
const FFWVersionInfo* ffw_get_version_info(void)
|
const FFWVersionInfo* ffw_get_version_info(void)
|
||||||
{
|
{
|
||||||
ffwVersionInfo.gitVersion = FONTFORGE_GIT_VERSION;
|
|
||||||
ffwVersionInfo.versionDate = FONTFORGE_VERSION;
|
ffwVersionInfo.versionDate = FONTFORGE_VERSION;
|
||||||
|
|
||||||
return &ffwVersionInfo;
|
return &ffwVersionInfo;
|
||||||
|
@ -25,7 +25,6 @@ void ffw_init(const char* progPath, int debug);
|
|||||||
void ffw_finalize(void);
|
void ffw_finalize(void);
|
||||||
|
|
||||||
typedef struct ffw_version_info {
|
typedef struct ffw_version_info {
|
||||||
const char* gitVersion;
|
|
||||||
const char* versionDate;
|
const char* versionDate;
|
||||||
} FFWVersionInfo ;
|
} FFWVersionInfo ;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user