Skip to content

Commit

Permalink
M3V1
Browse files Browse the repository at this point in the history
  • Loading branch information
talisein committed Jun 7, 2023
1 parent fabb74c commit 1754516
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 2 deletions.
5 changes: 5 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
dregarnuhr (1.0.15-1) jammy; urgency=medium

* M3V1
-- Andrew Potter <[email protected]> Wed, 7 Jun 2023 19:27:47 -0700

dregarnuhr (1.0.14-1) jammy; urgency=medium

* P5V4
Expand Down
5 changes: 4 additions & 1 deletion dregarnuhr.spec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: dregarnuhr
Version: 1.0.14
Version: 1.0.15
Release: 1
Summary: Rearrange Ascendence of a Bookworm epubs into Chronological Order

Expand Down Expand Up @@ -51,6 +51,9 @@ Rearrange Ascendence of a Bookworm epubs into Chronological Order


%changelog
* Wed Jun 7 2023 Andrew Potter <[email protected]> - v1.0.15-1
- Add M3V1

* Tue May 30 2023 Andrew Potter <[email protected]> - v1.0.14-1
- Add P5V4

Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
project('dregarnuhr', ['c', 'cpp'],
license : 'GPLv3+',
version : '1.0.14',
version : '1.0.15',
default_options : ['c_std=gnu17',
'buildtype=release',
'default_library=static',
Expand Down
20 changes: 20 additions & 0 deletions src/part3_defs.h
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,26 @@ namespace part_3_defs
{ volume::FB3, "Images/Image43.jpg"sv, "image/jpeg"sv, std::nullopt, false },
{ volume::FB3, "Styles/stylesheet.css"sv, "text/css"sv, std::nullopt, false },

{ volume::M3V1, /* CHAPTER */ "xhtml/p-194.xhtml", "application/xhtml+xml", "Story: My First Letter", true },
{ volume::M3V1, /* CHAPTER */ "xhtml/p-195.xhtml", "application/xhtml+xml", std::nullopt, true },
{ volume::M3V1, /* CHAPTER */ "xhtml/p-196.xhtml", "application/xhtml+xml", std::nullopt, true },
{ volume::M3V1, /* CHAPTER */ "xhtml/p-197.xhtml", "application/xhtml+xml", std::nullopt, true },
{ volume::M3V1, /* CHAPTER */ "xhtml/p-198.xhtml", "application/xhtml+xml", std::nullopt, true },
{ volume::M3V1, /* CHAPTER */ "xhtml/p-199.xhtml", "application/xhtml+xml", std::nullopt, true },
{ volume::M3V1, /* CHAPTER */ "xhtml/p-200.xhtml", "application/xhtml+xml", std::nullopt, true },
{ volume::M3V1, /* CHAPTER */ "xhtml/p-201.xhtml", "application/xhtml+xml", std::nullopt, true },
{ volume::M3V1, /* CHAPTER */ "xhtml/p-202.xhtml", "application/xhtml+xml", std::nullopt, true },
{ volume::M3V1, /* IMAGE */ "image/i-194.jpg", "image/jpeg", std::nullopt, false },
{ volume::M3V1, /* IMAGE */ "image/i-195.jpg", "image/jpeg", std::nullopt, false },
{ volume::M3V1, /* IMAGE */ "image/i-196.jpg", "image/jpeg", std::nullopt, false },
{ volume::M3V1, /* IMAGE */ "image/i-197.jpg", "image/jpeg", std::nullopt, false },
{ volume::M3V1, /* IMAGE */ "image/i-198.jpg", "image/jpeg", std::nullopt, false },
{ volume::M3V1, /* IMAGE */ "image/i-199.jpg", "image/jpeg", std::nullopt, false },
{ volume::M3V1, /* IMAGE */ "image/i-200.jpg", "image/jpeg", std::nullopt, false },
{ volume::M3V1, /* IMAGE */ "image/i-201.jpg", "image/jpeg", std::nullopt, false },
{ volume::M3V1, /* IMAGE */ "image/i-202.jpg", "image/jpeg", std::nullopt, false },
{ volume::M3V1, /* STYLESHEET */ "style/fixed-layout.css", "text/css", std::nullopt, false },

{ volume::P3V1, "Text/chapter8.xhtml"sv, "application/xhtml+xml"sv, "Starbind Ceremony in the Lower City"sv, true },
{ volume::P3V1, "Text/insert4.xhtml"sv, "application/xhtml+xml"sv, std::nullopt, true },
{ volume::P3V1, "Text/chapter9.xhtml"sv, "application/xhtml+xml"sv, "The Archduke’s Castle"sv, true },
Expand Down
1 change: 1 addition & 0 deletions src/volumes.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ namespace {
{"9781718338227"sv, volume::M2V5},
{"9781718338241"sv, volume::M2V6},
{"9781718338265"sv, volume::M2V7},
{"9781718338012"sv, volume::M3V1},
{"96908895-C96B-4376-BBF8-6A25E96F72F3"sv, volume::SSBDOVA1},
{"22BC23BD-BEB1-4F8F-9104-825FA616AD4C"sv, volume::SSJBUNKO1},
{"DEB588FB-32EF-4512-8ADF-D8A5CB49D9CD"sv, volume::SSTEASET},
Expand Down
1 change: 1 addition & 0 deletions src/volumes.h
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ enum class volume
M2V5,
M2V6,
M2V7,
M3V1,
SSBDOVA1, // Otto P1V3
SSJBUNKO1, // Benno P1V2
SSTEASET, // Ferdinand & Rozemyne P3V1
Expand Down

0 comments on commit 1754516

Please sign in to comment.