Skip to content

Commit

Permalink
resolves #475 fix crash when running in environments with non-Unicode…
Browse files Browse the repository at this point in the history
… locale
  • Loading branch information
slonopotamus committed May 12, 2024
1 parent 933f13b commit 2c4ad89
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@
This document provides a high-level view of the changes to the {project-name} by release.
For a detailed view of what has changed, refer to the {uri-repo}/commits/master[commit history] on GitHub.

== Unreleased

* fix crash when running in environments with non-Unicode locale (#475)

== 2.1.3 (2024-05-12) - @slonopotamus

* fix crash when section title contains inline anchor (#472)
Expand Down
2 changes: 2 additions & 0 deletions data/styles/_colors.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@charset "UTF-8";

$black: #000000;
$off-black: #101010;
$deep-gray: #202020;
Expand Down
2 changes: 2 additions & 0 deletions data/styles/_reset.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@charset "UTF-8";

/* educate older readers about tags introduced in HTML5 */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
display: block;
Expand Down
2 changes: 2 additions & 0 deletions data/styles/epub3-css3-only.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@charset "UTF-8";

/* Gitden & Namo default to 16px font-size; bump it to 19px (118.75%) */
body.gitden-reader,
body.namo-epub-library {
Expand Down
2 changes: 2 additions & 0 deletions data/styles/epub3-fonts.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@charset "UTF-8";

@font-face {
font-family: "Noto Serif";
font-style: normal;
Expand Down
2 changes: 2 additions & 0 deletions data/styles/epub3.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@charset "UTF-8";

@import "reset";
@import "colors";
@import url("epub3-fonts.css");
Expand Down

0 comments on commit 2c4ad89

Please sign in to comment.