mirror of https://github.com/JakubMelka/PDF4QT.git
Release 1.1.0
This commit is contained in:
parent
c75b8d677c
commit
e301d70fe2
|
@ -20,7 +20,7 @@ QT += core gui widgets winextras
|
||||||
TARGET = Pdf4QtDocDiff
|
TARGET = Pdf4QtDocDiff
|
||||||
TEMPLATE = app
|
TEMPLATE = app
|
||||||
|
|
||||||
VERSION = 1.0.0
|
VERSION = 1.1.0
|
||||||
|
|
||||||
RC_ICONS = $$PWD/app-icon.ico
|
RC_ICONS = $$PWD/app-icon.ico
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,7 @@ QT += core gui widgets winextras
|
||||||
TARGET = Pdf4QtDocPageOrganizer
|
TARGET = Pdf4QtDocPageOrganizer
|
||||||
TEMPLATE = app
|
TEMPLATE = app
|
||||||
|
|
||||||
VERSION = 1.0.0
|
VERSION = 1.1.0
|
||||||
|
|
||||||
RC_ICONS = $$PWD/app-icon.ico
|
RC_ICONS = $$PWD/app-icon.ico
|
||||||
|
|
||||||
|
|
|
@ -21,7 +21,7 @@ TARGET = Pdf4QtLib
|
||||||
TEMPLATE = lib
|
TEMPLATE = lib
|
||||||
|
|
||||||
win32:TARGET_EXT = .dll
|
win32:TARGET_EXT = .dll
|
||||||
VERSION = 1.0.0
|
VERSION = 1.1.0
|
||||||
|
|
||||||
QMAKE_TARGET_DESCRIPTION = "PDF rendering / editing library for Qt"
|
QMAKE_TARGET_DESCRIPTION = "PDF rendering / editing library for Qt"
|
||||||
QMAKE_TARGET_COPYRIGHT = "(c) Jakub Melka 2018-2021"
|
QMAKE_TARGET_COPYRIGHT = "(c) Jakub Melka 2018-2021"
|
||||||
|
|
|
@ -25,8 +25,8 @@ namespace pdf
|
||||||
{
|
{
|
||||||
|
|
||||||
// Name of the library, together with version
|
// Name of the library, together with version
|
||||||
static constexpr const char* PDF_LIBRARY_NAME = "PDF4QT 1.0.0";
|
static constexpr const char* PDF_LIBRARY_NAME = "PDF4QT 1.1.0";
|
||||||
static constexpr const char* PDF_LIBRARY_VERSION = "1.0.0";
|
static constexpr const char* PDF_LIBRARY_VERSION = "1.1.0";
|
||||||
|
|
||||||
// Structure file constants
|
// Structure file constants
|
||||||
static constexpr const char* PDF_END_OF_FILE_MARK = "%%EOF";
|
static constexpr const char* PDF_END_OF_FILE_MARK = "%%EOF";
|
||||||
|
|
|
@ -21,7 +21,7 @@ TARGET = Pdf4QtViewer
|
||||||
TEMPLATE = lib
|
TEMPLATE = lib
|
||||||
|
|
||||||
win32:TARGET_EXT = .dll
|
win32:TARGET_EXT = .dll
|
||||||
VERSION = 1.0.0
|
VERSION = 1.1.0
|
||||||
|
|
||||||
DEFINES += PDF4QTVIEWER_LIBRARY
|
DEFINES += PDF4QTVIEWER_LIBRARY
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,7 @@ QT += core gui widgets winextras
|
||||||
TARGET = Pdf4QtViewerLite
|
TARGET = Pdf4QtViewerLite
|
||||||
TEMPLATE = app
|
TEMPLATE = app
|
||||||
|
|
||||||
VERSION = 1.0.0
|
VERSION = 1.1.0
|
||||||
|
|
||||||
RC_ICONS = $$PWD/app-icon.ico
|
RC_ICONS = $$PWD/app-icon.ico
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,7 @@ QT += core gui widgets winextras
|
||||||
TARGET = Pdf4QtViewerProfi
|
TARGET = Pdf4QtViewerProfi
|
||||||
TEMPLATE = app
|
TEMPLATE = app
|
||||||
|
|
||||||
VERSION = 1.0.0
|
VERSION = 1.1.0
|
||||||
|
|
||||||
RC_ICONS = $$PWD/app-icon.ico
|
RC_ICONS = $$PWD/app-icon.ico
|
||||||
|
|
||||||
|
|
|
@ -19,7 +19,7 @@ CONFIG += c++11 console
|
||||||
CONFIG -= app_bundle
|
CONFIG -= app_bundle
|
||||||
|
|
||||||
TARGET = PdfTool
|
TARGET = PdfTool
|
||||||
VERSION = 1.0.0
|
VERSION = 1.1.0
|
||||||
|
|
||||||
QMAKE_TARGET_DESCRIPTION = "PDF tool for Qt"
|
QMAKE_TARGET_DESCRIPTION = "PDF tool for Qt"
|
||||||
QMAKE_TARGET_COPYRIGHT = "(c) Jakub Melka 2018-2021"
|
QMAKE_TARGET_COPYRIGHT = "(c) Jakub Melka 2018-2021"
|
||||||
|
|
|
@ -1,7 +1,9 @@
|
||||||
CURRENT:
|
CURRENT:
|
||||||
|
|
||||||
|
V: 1.1.0, 19.12.2021
|
||||||
- DocDiff application (compare similar PDF documents)
|
- DocDiff application (compare similar PDF documents)
|
||||||
- Linux support
|
- Linux support
|
||||||
|
- new icon set
|
||||||
|
|
||||||
V: 1.0.0 Beta, 19.9.2021
|
V: 1.0.0 Beta, 19.9.2021
|
||||||
- initial beta release for non-production testing
|
- initial beta release for non-production testing
|
||||||
|
|
Loading…
Reference in New Issue