asciidoctor-pdf 2.3.11 → 2.3.12

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f69f8ddf5bab91f37bd488a5d630c068f028d8d9f80e47ccbd601efeb23cfd4a
4
- data.tar.gz: 2a66022080892dade89fdfab63e60d08e619ec0cf184a793267871464668cb53
3
+ metadata.gz: f6d4fcd7f484c87480980add66936d91a6fd83a96509a1a0bf54edbd297827d9
4
+ data.tar.gz: f87f24fe33309886cdad555f0a31981a6c23d50192611ee954fe25c722031bd7
5
5
  SHA512:
6
- metadata.gz: 81129fe018764cbf1a2caa7d34a4a9affaf1e69288252535f9082730a785a8e2daa93eb3aa640d3368c6780c094a275dca5269a11b487764909f3a503bf5dd30
7
- data.tar.gz: c68746b1ebbb456fd4e501a5815c2e338ffc5f09ec896757efe83a261f54533c7d7f913b251208f7122e6decae21bd51ffcfcee01ddf67682756878c44781ea6
6
+ metadata.gz: c8496b8e15d1a3ea1c65da73e3a1233a71475fa972e384559a74a06e6b92d8454367dece149793719f915d687a1382160b75c38e86e21c62fc833f4bc1e6214b
7
+ data.tar.gz: 6c74e398c951bfc82637cfb8fe701f0c38849841a327016f987795451db0541c76d1a68a84c08a443d3142f8012f5b313feb6bd9993c3910929848a39a289fa4
data/CHANGELOG.adoc CHANGED
@@ -5,6 +5,20 @@
5
5
  This document provides a high-level view of the changes to the {project-name} by release.
6
6
  For a detailed view of what has changed, refer to the {url-repo}/commits/main[commit history] on GitHub.
7
7
 
8
+ == 2.3.12 (2024-02-02) - @mojavelinux
9
+
10
+ Improvements::
11
+
12
+ * add combining characters to bundled fonts (#2482)
13
+
14
+ Bug Fixes::
15
+
16
+ * ensure indentation is preserved at page transition of index when media=prepress; prevents margin from shifting to the left (#2480)
17
+
18
+ === Details
19
+
20
+ {url-repo}/releases/tag/v2.3.12[git tag] | {url-repo}/compare/v2.3.11\...v2.3.12[full diff]
21
+
8
22
  == 2.3.11 (2024-01-23) - @mojavelinux
9
23
 
10
24
  Enhancements::
data/README.adoc CHANGED
@@ -1,6 +1,6 @@
1
1
  = Asciidoctor PDF: A native PDF converter for AsciiDoc
2
2
  Dan Allen <https://github.com/mojavelinux[@mojavelinux]>; Sarah White <https://github.com/graphitefriction[@graphitefriction]>
3
- v2.3.11, 2024-01-23
3
+ v2.3.12, 2024-02-02
4
4
  // Settings:
5
5
  :experimental:
6
6
  :idprefix:
@@ -9,6 +9,7 @@ The following changes were made using fontforge to produce mplus1p-regular-fallb
9
9
  ** Latin Extended-A (U+0100–U+017f)
10
10
  ** Latin Extended-B (U+0180–U+024f)
11
11
  ** IPA (U+0259, U+02b0–U+02ff)
12
+ ** Combining characters (U+0300-U+030F) (used for NFD normalized forms of characters with a diacritical mark)
12
13
  ** Greek (U+0370–U+03ff)
13
14
  ** Cyrillic (U+0400–U+04ff)
14
15
  ** Vietnamese (U+01a0–U01b0, U+1ea0–U1ef9)
@@ -10,6 +10,7 @@ The following changes were made using fontforge to produce the notosans-*-subset
10
10
  ** Basic Latin (U+0020–U+007e)
11
11
  ** Latin-1 Supplement (U+00a0–U+00fd)
12
12
  ** Latin Extended-A (U+0100–U+017f)
13
+ ** Combining characters (U+0300-U+030F) (used for NFD normalized forms of characters with a diacritical mark)
13
14
  ** Greek (U+0370–U+03ff)
14
15
  ** Cyrillic (U+0400–U+04ff)
15
16
  ** Vietnamese (U+01a0–U01b0, U+1ea0–U1ef9)
@@ -10,6 +10,7 @@ The following changes were made using fontforge to produce the notoserif-*-subse
10
10
  ** Basic Latin (U+0020–U+007e)
11
11
  ** Latin-1 Supplement (U+00a0–U+00fd)
12
12
  ** Latin Extended-A (U+0100–U+017f)
13
+ ** Combining characters (U+0300-U+030F) (used for NFD normalized forms of characters with a diacritical mark)
13
14
  ** Greek (U+0370–U+03ff)
14
15
  ** Cyrillic (U+0400–U+04ff)
15
16
  ** Vietnamese (U+01a0–U01b0, U+1ea0–U1ef9)
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -15,8 +15,11 @@ Prawn::Document::ColumnBox.prepend (Module.new do
15
15
  initial_margins = doc.page.margins
16
16
  parent_.move_past_bottom
17
17
  if doc.page.margins != initial_margins
18
- doc.bounds = self.class.new doc, parent_, [(margin_box = doc.margin_box).absolute_left, @y],
18
+ doc.bounds = bounds = self.class.new doc, parent_, [(margin_box = doc.margin_box).absolute_left, @y],
19
19
  columns: @columns, reflow_margins: @reflow_margins, spacer: @spacer, width: margin_box.width, height: @height
20
+ # ensure indentation is preserved across page break
21
+ bounds.add_left_padding @total_left_padding if @total_left_padding > 0
22
+ bounds.add_right_padding @total_right_padding if @total_right_padding > 0
20
23
  end
21
24
  nil
22
25
  end
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Asciidoctor
4
4
  module PDF
5
- VERSION = '2.3.11'
5
+ VERSION = '2.3.12'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: asciidoctor-pdf
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.11
4
+ version: 2.3.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dan Allen
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2024-01-23 00:00:00.000000000 Z
12
+ date: 2024-02-02 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: asciidoctor