forked from pool/fontforge
03cb09676c
- version update to 20190801 [bsc#1145185] * Bugfixes * Added Croatian translation * Added user decompositions * New graphic for the splash/about screen * Images embedded in SFDs are now serialised as PNGs * Both the Windows and Mac builds are now built with Python 3 instead of Python 2. * The minimum supported version for the Mac build is now MacOS Sierra (10.12) * FontForge no longer uses gnulib * collab support has been removed * Complete GDK support, enabled by default on Windows and Macintosh, from @jtanx. * Enhanced UFO 3 support, with separate import/export paths for UFO 2 and UFO 3, from @frank-trampe. See the technical bulletin here for more information. * Improved feature file support, from @skef and @khaledhosny. * WOFF2 support, from @jtanx. * Unicode 12.1.0 support, from @JoesCat. * Extended Python interfaces, from @skef. - modified patches % fontforge-version.patch (refreshed) - deleted patches - reproducible.patch (upstreamed) OBS-URL: https://build.opensuse.org/request/show/725040 OBS-URL: https://build.opensuse.org/package/show/M17N/fontforge?expand=0&rev=70
28 lines
1.2 KiB
Diff
28 lines
1.2 KiB
Diff
Index: fontforge-20190801/fontforge/start.c
|
|
===================================================================
|
|
--- fontforge-20190801.orig/fontforge/start.c 2019-08-21 13:44:15.537289287 +0200
|
|
+++ fontforge-20190801/fontforge/start.c 2019-08-21 13:44:39.253433054 +0200
|
|
@@ -108,8 +108,6 @@ return;
|
|
|
|
void doversion(const char *source_version_str) {
|
|
if ( source_version_str!=NULL )
|
|
- printf( "fontforge %s\n", source_version_str );
|
|
- printf( "build date: %s\n",
|
|
- FONTFORGE_MODTIME_STR );
|
|
+ printf( "libfontforge %s\n", source_version_str );
|
|
exit(0);
|
|
}
|
|
Index: fontforge-20190801/fontforgeexe/startnoui.c
|
|
===================================================================
|
|
--- fontforge-20190801.orig/fontforgeexe/startnoui.c 2019-08-21 13:44:15.541289311 +0200
|
|
+++ fontforge-20190801/fontforgeexe/startnoui.c 2019-08-21 13:45:22.769696849 +0200
|
|
@@ -128,7 +128,7 @@ int fontforge_main( int argc, char **arg
|
|
else if ( strcmp(pt,"-help")==0 )
|
|
doscripthelp();
|
|
else if ( strcmp(pt,"-version")==0 || strcmp(pt,"-v")==0 || strcmp(pt,"-V")==0 )
|
|
- doversion(FONTFORGE_VERSION);
|
|
+ doversion(source_version_str);
|
|
}
|
|
# if defined(_NO_PYTHON)
|
|
ProcessNativeScript(argc, argv,stdin);
|