mirror of
https://github.com/zint/zint
synced 2024-11-16 20:57:25 +13:00
Update version to 2.6.1
This commit is contained in:
parent
86a0071f09
commit
1882d76b70
@ -10,7 +10,7 @@ set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
|||||||
|
|
||||||
set (ZINT_VERSION_MAJOR 2)
|
set (ZINT_VERSION_MAJOR 2)
|
||||||
set (ZINT_VERSION_MINOR 6)
|
set (ZINT_VERSION_MINOR 6)
|
||||||
set (ZINT_VERSION_RELEASE 0)
|
set (ZINT_VERSION_RELEASE 1)
|
||||||
set (ZINT_VERSION "${ZINT_VERSION_MAJOR}.${ZINT_VERSION_MINOR}.${ZINT_VERSION_RELEASE}" )
|
set (ZINT_VERSION "${ZINT_VERSION_MAJOR}.${ZINT_VERSION_MINOR}.${ZINT_VERSION_RELEASE}" )
|
||||||
|
|
||||||
add_definitions (-DZINT_VERSION=\"${ZINT_VERSION}\" -Wall)
|
add_definitions (-DZINT_VERSION=\"${ZINT_VERSION}\" -Wall)
|
||||||
|
7
README
7
README
@ -77,6 +77,13 @@ Version 2.6.0:
|
|||||||
Update front end to Qt5. Output to EMF and TIF. Copy to clipboard. Update
|
Update front end to Qt5. Output to EMF and TIF. Copy to clipboard. Update
|
||||||
to latest draft of DMRE. Usual bugfixes.
|
to latest draft of DMRE. Usual bugfixes.
|
||||||
|
|
||||||
|
Version 2.6.1:
|
||||||
|
Library bugfixes: EDIFACT unlatch in Data Matrix, Add UPNQR, Improved Aztec
|
||||||
|
data compression, Detect Code 128 data too long, Make error codes consistent.
|
||||||
|
GUI improvements: Additional clipboard options, remove border width bug,
|
||||||
|
remove changing background colour bug, remember more settings and make GUI
|
||||||
|
more consistent with user expectations. All windows now resizable and more
|
||||||
|
information given when batch processing.
|
||||||
|
|
||||||
CONTACT US
|
CONTACT US
|
||||||
----------
|
----------
|
||||||
|
10
TODO
10
TODO
@ -3,14 +3,11 @@ If you are interested in improving this package then here are a few ideas.
|
|||||||
Backend
|
Backend
|
||||||
-------
|
-------
|
||||||
* Create filters for more output file formats.
|
* Create filters for more output file formats.
|
||||||
* Add ECI character support to allow encoding in more languages than are
|
|
||||||
covered by the Latin-1 character set.
|
|
||||||
* The code was developed to be easy to understand rather than efficient so may
|
* The code was developed to be easy to understand rather than efficient so may
|
||||||
benefit from some memory optimisation for embedded systems.
|
benefit from some memory optimisation for embedded systems.
|
||||||
|
|
||||||
GUI Frontend
|
GUI Frontend
|
||||||
------------
|
------------
|
||||||
* Allow copying of generated barcodes to the clipboard with a "Copy" button.
|
|
||||||
* Allow dragging and dropping to external apps.
|
* Allow dragging and dropping to external apps.
|
||||||
|
|
||||||
Packaging
|
Packaging
|
||||||
@ -23,10 +20,3 @@ Translations
|
|||||||
------------
|
------------
|
||||||
Documentation is currently only in English. If you have the knowledge and the
|
Documentation is currently only in English. If you have the knowledge and the
|
||||||
time please consider translating into other languages.
|
time please consider translating into other languages.
|
||||||
|
|
||||||
Research
|
|
||||||
--------
|
|
||||||
The following standards would be welcomed in Zint but the full documentation has
|
|
||||||
not yet been found:
|
|
||||||
* DPD Code
|
|
||||||
* Italian Postal Code
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
libzint - the open source barcode library
|
libzint - the open source barcode library
|
||||||
Copyright (C) 2008-2016 Robin Stuart <rstuart114@gmail.com>
|
Copyright (C) 2008-2017 Robin Stuart <rstuart114@gmail.com>
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without
|
Redistribution and use in source and binary forms, with or without
|
||||||
modification, are permitted provided that the following conditions
|
modification, are permitted provided that the following conditions
|
||||||
|
@ -59,12 +59,18 @@ composite.c:
|
|||||||
CC-B Composite Symbology
|
CC-B Composite Symbology
|
||||||
CC-C Composite Symbology
|
CC-C Composite Symbology
|
||||||
|
|
||||||
|
dotcode.c:
|
||||||
|
Dot Code
|
||||||
|
|
||||||
dm200.c:
|
dm200.c:
|
||||||
Data Matrix ECC 200
|
Data Matrix ECC 200
|
||||||
|
|
||||||
gridmtx.c:
|
gridmtx.c:
|
||||||
Grid Matrix
|
Grid Matrix
|
||||||
|
|
||||||
|
hanxin.c:
|
||||||
|
Han Xin Code
|
||||||
|
|
||||||
imail.c:
|
imail.c:
|
||||||
USPS OneCode (Intelligent Mail)
|
USPS OneCode (Intelligent Mail)
|
||||||
|
|
||||||
@ -100,6 +106,7 @@ postal.c:
|
|||||||
qr.c:
|
qr.c:
|
||||||
QR Code
|
QR Code
|
||||||
Micro QR Code
|
Micro QR Code
|
||||||
|
UPNQR
|
||||||
|
|
||||||
rss.c:
|
rss.c:
|
||||||
GS1 DataBar (DataBar-14) (RSS-14)
|
GS1 DataBar (DataBar-14) (RSS-14)
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
libzint - the open source barcode library
|
libzint - the open source barcode library
|
||||||
Copyright (C) 2008-2016 Robin Stuart <rstuart114@gmail.com>
|
Copyright (C) 2008-2017 Robin Stuart <rstuart114@gmail.com>
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without
|
Redistribution and use in source and binary forms, with or without
|
||||||
modification, are permitted provided that the following conditions
|
modification, are permitted provided that the following conditions
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
libzint - the open source barcode library
|
libzint - the open source barcode library
|
||||||
Copyright (C) 2008-2016 Robin Stuart <rstuart114@gmail.com>
|
Copyright (C) 2008-2017 Robin Stuart <rstuart114@gmail.com>
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without
|
Redistribution and use in source and binary forms, with or without
|
||||||
modification, are permitted provided that the following conditions
|
modification, are permitted provided that the following conditions
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
libzint - the open source barcode library
|
libzint - the open source barcode library
|
||||||
Copyright (C) 2008-2016 Robin Stuart <rstuart114@gmail.com>
|
Copyright (C) 2008-2017 Robin Stuart <rstuart114@gmail.com>
|
||||||
Bugfixes thanks to Christian Sakowski and BogDan Vatra
|
Bugfixes thanks to Christian Sakowski and BogDan Vatra
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without
|
Redistribution and use in source and binary forms, with or without
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
libzint - the open source barcode library
|
libzint - the open source barcode library
|
||||||
Copyright (C) 2008-2016 Robin Stuart <rstuart114@gmail.com>
|
Copyright (C) 2008-2017 Robin Stuart <rstuart114@gmail.com>
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without
|
Redistribution and use in source and binary forms, with or without
|
||||||
modification, are permitted provided that the following conditions
|
modification, are permitted provided that the following conditions
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
libzint - the open source barcode library
|
libzint - the open source barcode library
|
||||||
Copyright (C) 2008-2016 Robin Stuart <rstuart114@gmail.com>
|
Copyright (C) 2008-2017 Robin Stuart <rstuart114@gmail.com>
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without
|
Redistribution and use in source and binary forms, with or without
|
||||||
modification, are permitted provided that the following conditions
|
modification, are permitted provided that the following conditions
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
/* emf.c - Support for Microsoft Enhanced Metafile Format
|
/* emf.c - Support for Microsoft Enhanced Metafile Format
|
||||||
|
|
||||||
libzint - the open source barcode library
|
libzint - the open source barcode library
|
||||||
Copyright (C) 2016 Robin Stuart <rstuart114@gmail.com>
|
Copyright (C) 2016-2017 Robin Stuart <rstuart114@gmail.com>
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without
|
Redistribution and use in source and binary forms, with or without
|
||||||
modification, are permitted provided that the following conditions
|
modification, are permitted provided that the following conditions
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
/* emf.h - header structure for Microsoft EMF
|
/* emf.h - header structure for Microsoft EMF
|
||||||
|
|
||||||
libzint - the open source barcode library
|
libzint - the open source barcode library
|
||||||
Copyright (C) 2016 Robin Stuart <rstuart114@gmail.com>
|
Copyright (C) 2016-2017 Robin Stuart <rstuart114@gmail.com>
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without
|
Redistribution and use in source and binary forms, with or without
|
||||||
modification, are permitted provided that the following conditions
|
modification, are permitted provided that the following conditions
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
libzint - the open source barcode library
|
libzint - the open source barcode library
|
||||||
Copyright (C) 2008-2016 Robin Stuart <rstuart114@gmail.com>
|
Copyright (C) 2008-2017 Robin Stuart <rstuart114@gmail.com>
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without
|
Redistribution and use in source and binary forms, with or without
|
||||||
modification, are permitted provided that the following conditions
|
modification, are permitted provided that the following conditions
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
libzint - the open source barcode library
|
libzint - the open source barcode library
|
||||||
Copyright (C) 2010-2016 Robin Stuart <rstuart114@gmail.com>
|
Copyright (C) 2010-2017 Robin Stuart <rstuart114@gmail.com>
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without
|
Redistribution and use in source and binary forms, with or without
|
||||||
modification, are permitted provided that the following conditions
|
modification, are permitted provided that the following conditions
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
libzint - the open source barcode library
|
libzint - the open source barcode library
|
||||||
Copyright (C) 2008-2016 Robin Stuart <rstuart114@gmail.com>
|
Copyright (C) 2008-2017 Robin Stuart <rstuart114@gmail.com>
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without
|
Redistribution and use in source and binary forms, with or without
|
||||||
modification, are permitted provided that the following conditions
|
modification, are permitted provided that the following conditions
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
/* pcx.h - header structure for ZSoft PCX files
|
/* pcx.h - header structure for ZSoft PCX files
|
||||||
|
|
||||||
libzint - the open source barcode library
|
libzint - the open source barcode library
|
||||||
Copyright (C) 2016 Robin Stuart <rstuart114@gmail.com>
|
Copyright (C) 2016-2017 Robin Stuart <rstuart114@gmail.com>
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without
|
Redistribution and use in source and binary forms, with or without
|
||||||
modification, are permitted provided that the following conditions
|
modification, are permitted provided that the following conditions
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
libzint - the open source barcode library
|
libzint - the open source barcode library
|
||||||
Copyright (C) 2008-2016 Robin Stuart <rstuart114@gmail.com>
|
Copyright (C) 2008-2017 Robin Stuart <rstuart114@gmail.com>
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without
|
Redistribution and use in source and binary forms, with or without
|
||||||
modification, are permitted provided that the following conditions
|
modification, are permitted provided that the following conditions
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
libzint - the open source barcode library
|
libzint - the open source barcode library
|
||||||
Copyright (C) 2008-2016 Robin Stuart <rstuart114@gmail.com>
|
Copyright (C) 2008-2017 Robin Stuart <rstuart114@gmail.com>
|
||||||
Including bug fixes by Bryan Hatton
|
Including bug fixes by Bryan Hatton
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without
|
Redistribution and use in source and binary forms, with or without
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
libzint - the open source barcode library
|
libzint - the open source barcode library
|
||||||
Copyright (C) 2008-2016 Robin Stuart <rstuart114@gmail.com>
|
Copyright (C) 2008-2017 Robin Stuart <rstuart114@gmail.com>
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without
|
Redistribution and use in source and binary forms, with or without
|
||||||
modification, are permitted provided that the following conditions
|
modification, are permitted provided that the following conditions
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
libzint - the open source barcode library
|
libzint - the open source barcode library
|
||||||
Copyright (C) 2007-2016 Robin Stuart <rstuart114@gmail.com>
|
Copyright (C) 2007-2017 Robin Stuart <rstuart114@gmail.com>
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without
|
Redistribution and use in source and binary forms, with or without
|
||||||
modification, are permitted provided that the following conditions
|
modification, are permitted provided that the following conditions
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
libzint - the open source barcode library
|
libzint - the open source barcode library
|
||||||
Copyright (C) 2008-2016 Robin Stuart <rstuart114@gmail.com>
|
Copyright (C) 2008-2017 Robin Stuart <rstuart114@gmail.com>
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without
|
Redistribution and use in source and binary forms, with or without
|
||||||
modification, are permitted provided that the following conditions
|
modification, are permitted provided that the following conditions
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
libzint - the open source barcode library
|
libzint - the open source barcode library
|
||||||
Copyright (C) 2016 Robin Stuart <rstuart114@gmail.com>
|
Copyright (C) 2016-2017 Robin Stuart <rstuart114@gmail.com>
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without
|
Redistribution and use in source and binary forms, with or without
|
||||||
modification, are permitted provided that the following conditions
|
modification, are permitted provided that the following conditions
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
libzint - the open source barcode library
|
libzint - the open source barcode library
|
||||||
Copyright (C) 2016 Robin Stuart <rstuart114@gmail.com>
|
Copyright (C) 2016-2017 Robin Stuart <rstuart114@gmail.com>
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without
|
Redistribution and use in source and binary forms, with or without
|
||||||
modification, are permitted provided that the following conditions
|
modification, are permitted provided that the following conditions
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
/* upcean.c - Handles UPC, EAN and ISBN
|
/* upcean.c - Handles UPC, EAN and ISBN
|
||||||
|
|
||||||
libzint - the open source barcode library
|
libzint - the open source barcode library
|
||||||
Copyright (C) 2008-2016 Robin Stuart <rstuart114@gmail.com>
|
Copyright (C) 2008-2017 Robin Stuart <rstuart114@gmail.com>
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without
|
Redistribution and use in source and binary forms, with or without
|
||||||
modification, are permitted provided that the following conditions
|
modification, are permitted provided that the following conditions
|
||||||
|
@ -101,7 +101,7 @@ extern "C" {
|
|||||||
|
|
||||||
#define ZINT_VERSION_MAJOR 2
|
#define ZINT_VERSION_MAJOR 2
|
||||||
#define ZINT_VERSION_MINOR 6
|
#define ZINT_VERSION_MINOR 6
|
||||||
#define ZINT_VERSION_RELEASE 0
|
#define ZINT_VERSION_RELEASE 1
|
||||||
|
|
||||||
/* Tbarcode 7 codes */
|
/* Tbarcode 7 codes */
|
||||||
#define BARCODE_CODE11 1
|
#define BARCODE_CODE11 1
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
/***************************************************************************
|
/***************************************************************************
|
||||||
* Copyright (C) 2008 by BogDan Vatra *
|
* Copyright (C) 2008 by BogDan Vatra *
|
||||||
* bogdan@licentia.eu *
|
* bogdan@licentia.eu *
|
||||||
* Copyright (C) 2010-2016 Robin Stuart *
|
* Copyright (C) 2010-2017 Robin Stuart *
|
||||||
* *
|
* *
|
||||||
* This program is free software: you can redistribute it and/or modify *
|
* This program is free software: you can redistribute it and/or modify *
|
||||||
* it under the terms of the GNU General Public License as published by *
|
* it under the terms of the GNU General Public License as published by *
|
||||||
|
@ -2496,6 +2496,11 @@ v2.6 - Output to EMF and TIF. Update frontend to Qt5. Copy to clipboard on
|
|||||||
KDE and Windows.
|
KDE and Windows.
|
||||||
12/5/2017
|
12/5/2017
|
||||||
|
|
||||||
|
v2.6.1 - Various bugfixes to backend, including improved Aztec code processing.
|
||||||
|
Many improvements to GUI including resizable screens and more output while
|
||||||
|
batch processing, more consistent use of dialogues.
|
||||||
|
27/8/2017
|
||||||
|
|
||||||
7.4 Sources of Information
|
7.4 Sources of Information
|
||||||
--------------------------
|
--------------------------
|
||||||
Below is a list of some of the sources used in rough chronological order:
|
Below is a list of some of the sources used in rough chronological order:
|
||||||
|
@ -259,7 +259,7 @@ bool MainWindow::save()
|
|||||||
void MainWindow::about()
|
void MainWindow::about()
|
||||||
{
|
{
|
||||||
QMessageBox::about(this, tr("About Zint"),
|
QMessageBox::about(this, tr("About Zint"),
|
||||||
tr("<h2>Zint Barcode Studio 2.6.0</h2>"
|
tr("<h2>Zint Barcode Studio 2.6.1</h2>"
|
||||||
"<p>A free barcode generator"
|
"<p>A free barcode generator"
|
||||||
"<p>Instruction manual is available at the project homepage:<br>"
|
"<p>Instruction manual is available at the project homepage:<br>"
|
||||||
"<a href=\"http://www.zint.org.uk\">http://www.zint.org.uk</a>"
|
"<a href=\"http://www.zint.org.uk\">http://www.zint.org.uk</a>"
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
Name: zint
|
Name: zint
|
||||||
Version: 2.6.0
|
Version: 2.6.1
|
||||||
Release: 2%{?dist}
|
Release: 2%{?dist}
|
||||||
Summary: A barcode generator and library
|
Summary: A barcode generator and library
|
||||||
License: GPLv3+
|
License: GPLv3+
|
||||||
@ -29,7 +29,7 @@ Features of the library:
|
|||||||
FNC1 characters.
|
FNC1 characters.
|
||||||
- Support for encoding binary data including NULL (ASCII 0) characters.
|
- Support for encoding binary data including NULL (ASCII 0) characters.
|
||||||
- Health Industry Barcode (HIBC) encoding capabilities.
|
- Health Industry Barcode (HIBC) encoding capabilities.
|
||||||
- Output in PNG, EPS and SVG formats with user adjustable sizes and colors.
|
- Output in the following file formats: PNG, GIF, EPS, WMF, BMP, TIF, SVG.
|
||||||
- Verification stage for SBN, ISBN and ISBN-13 data.
|
- Verification stage for SBN, ISBN and ISBN-13 data.
|
||||||
|
|
||||||
|
|
||||||
@ -137,6 +137,10 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
|
||||||
|
* Sun Aug 27 2017 Robin Stuart <rstuart114@gmail.com> - 2.6.1
|
||||||
|
- Version -> 2.6.1
|
||||||
|
|
||||||
* Thu May 11 2017 Robin Stuart <rstuart114@gmail.com> - 2.6.0
|
* Thu May 11 2017 Robin Stuart <rstuart114@gmail.com> - 2.6.0
|
||||||
- Update version number
|
- Update version number
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user