Skip to content

Releases: gusbrs/zref-clever

v0.4.1

19 Jun 14:54
Compare
Choose a tag to compare

v0.4.1 (2023-06-19)

Changed

  • Improved Dependencies section in User manual.

Fixed

  • Use safer method to define the zc@pgfmt property.

v0.4.0

14 Jun 14:00
Compare
Choose a tag to compare

v0.4.0 (2023-06-14)

Added

  • labelhook option, controlling whether to set a \zlabel alongside a
    standard \label. This option uses the kernel's new label hook, which
    significantly improves and simplifies the task of setting a \zlabel in
    places where this is not directly supported. The option is enabled by
    default, and strongly recommended. It is not expected that this change will
    bring backward compatibility problems, \zlabels continue to work just as
    before, and the places where a \label is required will also continue to
    work the same way. The only case I see where you might need to adjust
    existing documents is if you already had both \labels and \zlabels with
    the same names, in which case now you'll have a duplicate zlabel and will
    indeed have to correct it. Also, you may be interested in taking a look at
    the "\label or \zlabel?" section of the User manual, since the option
    opens the possibility of a different approach in label setting in your
    documents.

Changed

  • Given the new labelhook option and the fact that it requires both the new
    label hook and the new hooks with options released in the latest LaTeX
    kernel, the kernel version required by zref-clever has been bumped to
    2023-06-01.

Removed

  • Given the new labelhook option, the parts of compatibility modules which
    provided for setting \zlabels with \label in places where the former is
    not supported have been removed. These would conflict with the new option,
    and the use of the label hook for this purpose renders them unnecessary
    and is superior in every aspect. Namely, the compatibility modules changed
    in this fashion are: amsmath, memoir, and listings.

v0.3.6

21 Feb 13:56
Compare
Choose a tag to compare

v0.3.6 (2023-02-21)

Fixed

  • Avoid "Missing number, treated as zero" error for labels set before first
    call to \refstepcounter.

v0.3.5

18 Feb 19:51
Compare
Choose a tag to compare

v0.3.5 (2023-02-18)

Fixed

  • In tcolorbox how-to, hyperref should be loaded before any \newtcolorboxes.

v0.3.4

13 Feb 19:14
Compare
Choose a tag to compare

v0.3.4 (2023-02-13)

Added

  • tcolorbox how-to to the User manual.

Changed

  • The KOMA compatibility module has been removed, since it was rendered
    unnecessary by recent versions of KOMA Script classes.

v0.3.3

03 Jan 12:59
Compare
Choose a tag to compare

v0.3.3 (2023-01-03)

Added

  • New reftype option, to allow for local manual override of countertype settings.
  • Included some new How-tos to the User manual.

v0.3.2

28 Dec 03:27
Compare
Choose a tag to compare

v0.3.2 (2022-12-27)

Added

  • Italian localization (see issue #11).
  • Localization guidelines for contributors (in the Code documentation).
  • Document UTF-8 input encoding requirement.
  • Work-around for beamer in the User manual.

Changed

  • Improved consistency of the Dutch language file with babel captions (see
    PRs #12 and #13).

v0.3.1

28 May 13:34
Compare
Choose a tag to compare

v0.3.1 (2022-05-28)

Added

  • "zref-clever for the impatient" section to User manual.

v0.3.0

22 Apr 20:23
Compare
Choose a tag to compare

v0.3.0 (2022-04-22)

Changed

  • zref-clever no longer accepts package options to be set a load-time,
    \zcsetup must be used instead. The use of load-time options now results
    in "Unknown option" LaTeX error. This change requires that users adjust
    their documents, and a suitable package warning has been provided so that
    affected users know of the change directly and how to adjust.
  • Option check has been made no-op in the preamble. To load the
    corresponding package, just use the standard \usepackage.
  • (Internal) Use public hyperref's commands for building links instead of the
    internal \hyper@@link.

Deprecated

  • Options titleref and vario have been deprecated. To load the
    corresponding packages, just use the standard \usepackage.

Fixed

  • Bug which affected the typesetting with compression in case two ranges for
    the same reference type occurred.

v0.2.2-alpha

12 Feb 01:10
Compare
Choose a tag to compare

v0.2.2-alpha (2022-02-11)

Changed

  • (Internal) Option variables setting was reviewed, ensuring proper scope is
    in use and that they are always properly declared. expl3 debugging
    enabled in regression tests.