Compare commits

...

16 commits
v1.1.1 ... main

Author SHA1 Message Date
D. Moonfire ad2b594e64 chore: updating project data 2022-11-04 22:45:43 -05:00
D. Moonfire 66267252d1 refactor: rename .markdown to .md 2022-11-04 21:46:38 -05:00
D. Moonfire b91164286d chore: updating project setup 2022-10-15 13:55:44 -05:00
semantic-release-bot 1cea0c5241 chore(release): v2.0.3 [skip ci]
## [2.0.3](https://src.mfgames.com/fedran-sources/sand-and-bone/compare/v2.0.2...v2.0.3) (2022-10-15)

### Bug Fixes

* updating build ([af6f39f](af6f39f441))
2022-10-15 14:17:18 +00:00
D. Moonfire af6f39f441 fix: updating build 2022-10-15 07:35:58 -05:00
semantic-release-bot 2cbf70d512 chore(release): v2.0.2 [skip ci]
## [2.0.2](https://src.mfgames.com/fedran-sources/sand-and-bone/compare/v2.0.1...v2.0.2) (2022-10-15)

### Bug Fixes

* updated to the new build system ([65c00dc](65c00dc328))
2022-10-15 04:44:39 +00:00
D. Moonfire 65c00dc328 fix: updated to the new build system 2022-10-14 23:22:01 -05:00
semantic-release-bot c6b03885f1 chore(release): v2.0.1 [skip ci]
## [2.0.1](https://src.mfgames.com/fedran-sources/sand-and-bone/compare/v2.0.0...v2.0.1) (2022-10-13)

### Bug Fixes

* adding in standard build ([f1d2e47](f1d2e47d8e))
2022-10-13 15:04:00 +00:00
D. Moonfire f1d2e47d8e fix: adding in standard build 2022-10-13 09:00:28 -05:00
D. Moonfire 084704732e chore: updating metadata 2022-03-04 17:19:26 -06:00
D. Moonfire 6f9c2795c9 chore: updating metadata 2022-03-04 09:14:07 -06:00
D. Moonfire 6235fd2b10 build: updating sematic release settings 2020-01-05 10:14:18 -06:00
semantic-release-bot 5dcf5d5a59 chore(release): v2.0.0
# [2.0.0](https://gitlab.com/fedran/sand-and-bone/compare/v1.1.1...v2.0.0) (2020-01-02)

### Features

* switching to new Fedran theme ([9403ff8](9403ff8741))

### BREAKING CHANGES

* the new theme causes page numbers to change
2020-01-02 06:16:28 +00:00
D. Moonfire 9403ff8741 feat: switching to new Fedran theme
BREAKING CHANGE: the new theme causes page numbers to change
2020-01-02 00:14:27 -06:00
D. Moonfire eaee961937 chore: switched to the unnamed convention for pages 2019-10-16 13:54:12 -05:00
D. Moonfire ef4223584a chore: added project logo 2019-04-30 23:19:31 -05:00
79 changed files with 17626 additions and 7099 deletions

View file

@ -6,12 +6,21 @@ root = true
[*]
charset = utf-8
end_of_line = lf
indent_brace_style = K&R
indent_size = 4
indent_style = space
insert_final_newline = true
max_line_length = 120
max_line_length = 80
tab_width = 4
trim_trailing_whitespace = true
curly_bracket_next_line = true
[*.{js,ts}]
quote_type = double
[*.yaml]
indent_size = 4
tab_width = 4
indent_style = space
[package.json]
indent_size = 2
tab_width = 2

2
.envrc Normal file
View file

@ -0,0 +1,2 @@
export PATH=$PWD/scripts:$PWD/node_modules/.bin:$PATH
use flake || use nix

18
.gitignore vendored
View file

@ -1,11 +1,13 @@
*~
build/
tmp/
node_modules/
.direnv/
tmp/
build/
# Output
*-*.*.*.epub
*-*.*.*.pdf
*-*.*.*.mobi
*-*.*.*.html
*-*.*.*.docx
.*-swp
dmoonfire*.pdf
dmoonfire*.docx
dmoonfire*.html
dmoonfire*.mobi
dmoonfire*.epub
*.bz2

View file

@ -1,12 +1,12 @@
image: dmoonfire/mfgames-writing-js:1.1.1
image: dmoonfire/mfgames-writing-js:2.0.0
stages:
- publish
publish:
stage: publish
tags:
- docker
only: [master]
tags: [docker]
script:
# Install the basic requirements including the free fonts.
- npm ci
@ -18,7 +18,7 @@ publish:
# "previously" chapter.
- mkdir -p build/repos
- git clone https://oauth2:$fedranAccessKey@gitlab.com/fedran/fedran-covers.git build/repos/fedran-covers
- git clone https://oauth2:$fedranAccessKey@gitlab.com/fedran/sand-and-blood.git build/repos/sand-and-ash
- git clone https://oauth2:$fedranAccessKey@gitlab.com/fedran/sand-and-ash.git build/repos/sand-and-ash
- 'echo "---" > build/previously.markdown'
- 'echo "title: Previously" >> build/previously.markdown'
- 'echo "---" >> build/previously.markdown'
@ -27,11 +27,8 @@ publish:
# Trigger the release if needed.
- npx semantic-release
# Build the files.
- npm run build
# Trigger the Fedran website to rebuild.
- "curl -X POST -F token=$fedranAccessKey -F ref=master https://gitlab.com/api/v4/projects/4027285/trigger/pipeline"
# Build the files.
- npm run upload
artifacts:
expire_in: 1 week

17
.prettierignore Normal file
View file

@ -0,0 +1,17 @@
CHANGELOG.md
package-lock.json
yarn.lock
*~
archives/
build/
extras/
others/
node_modules/
submissions/
sample-edits/
maps/
.direnv/
tmp/
edit/

37
.woodpecker.yml Normal file
View file

@ -0,0 +1,37 @@
clone:
git:
image: woodpeckerci/plugin-git
settings:
tags: true
when:
event: [push, pull_request]
pipeline:
build:
image: registry.gitlab.com/dmoonfire/nix-flake-docker:latest
commands:
- nix profile install 'nixpkgs#fontconfig'
- nix develop --command scripts/build.sh
secrets:
- gitea_token
- s3_bucket
- s3_endpoint
- s3_access_key_id
- s3_secret_access_key
when:
event: [push, pull_request]
release:
image: registry.gitlab.com/dmoonfire/nix-flake-docker:latest
commands:
- nix profile install 'nixpkgs#fontconfig'
- nix develop --command scripts/release.sh
secrets:
- gitea_token
- s3_bucket
- s3_endpoint
- s3_access_key_id
- s3_secret_access_key
when:
event: push
branch: main

View file

@ -1,3 +1,36 @@
## [2.0.3](https://src.mfgames.com/fedran-sources/sand-and-bone/compare/v2.0.2...v2.0.3) (2022-10-15)
### Bug Fixes
* updating build ([af6f39f](https://src.mfgames.com/fedran-sources/sand-and-bone/commit/af6f39f4411870861bdcc32f9ed8871c8885c32f))
## [2.0.2](https://src.mfgames.com/fedran-sources/sand-and-bone/compare/v2.0.1...v2.0.2) (2022-10-15)
### Bug Fixes
* updated to the new build system ([65c00dc](https://src.mfgames.com/fedran-sources/sand-and-bone/commit/65c00dc3284a1c756a757517f72ffc36bf1fe76a))
## [2.0.1](https://src.mfgames.com/fedran-sources/sand-and-bone/compare/v2.0.0...v2.0.1) (2022-10-13)
### Bug Fixes
* adding in standard build ([f1d2e47](https://src.mfgames.com/fedran-sources/sand-and-bone/commit/f1d2e47d8e5e7a2f07f15b364d7556d8d0124739))
# [2.0.0](https://gitlab.com/fedran/sand-and-bone/compare/v1.1.1...v2.0.0) (2020-01-02)
### Features
* switching to new Fedran theme ([9403ff8](https://gitlab.com/fedran/sand-and-bone/commit/9403ff87411c437fd1e9ee6531678b2132ac237b))
### BREAKING CHANGES
* the new theme causes page numbers to change
## [1.1.1](https://gitlab.com/fedran/sand-and-bone/compare/v1.1.0...v1.1.1) (2019-04-16)

View file

@ -1,11 +0,0 @@
---
title: Colophon
---
Each chapter of this book was written and edited using Atom, a Javascript-based editor. The files for the novel were managed in a Git repository on a private GitLab instance. Each chapter was an individual file formatted using Markdown. Information and working notes about the chapters were placed into a YAML header at the top of each chapter.
These individual chapters were combined together using a Typescript-based framework (`mfgames-writing-js`) which produces the EPUB, MOBI, and PDF (via WeasyPrint) versions of the novel. These are built using GitLab's Continuous Integration runners.
The cover was created using Inkscape. The color scheme uses eight colors of a monochromatic scale. These colors are shared among all of the Rutejìmo novels. Likewise, the "100-02" along the spine indicates this is the third published book ("02") with Rutejìmo as the main character ("100").
The font used on the cover and interior is Corda in various weights and styles.

View file

@ -1,36 +0,0 @@
---
title: Credits
---
There are a wide variety of people who were involved with making this book.
### Alpha Readers
* Bill H.
* Ciuin
* Tyree C.
* Cindy M.
* Aimee K.
### Beta Readers
* Chandrakumar M.
* Laura W.
* Marta B.
* Mike K.
### Editors
* Blurb Bitch
* Ronda Swolley
* Shannon Ryan
### Patrons
* Ashish P.
### Family
* Susan
* Eli
* Bruce

View file

@ -1,32 +0,0 @@
---
title: License
---
This book is distributed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International license. More info can be found at [https://creativecommons.org/licenses/by-nc-sa/4.0/](https://creativecommons.org/licenses/by-nc-sa/4.0/). This means:
### You are free to:
* Share — copy and redistribute the material in any medium or format
* Adapt — remix, transform, and build upon the material
The licensor cannot revoke these freedoms as long as you follow the license terms.
### Under the following terms:
* Attribution — You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
* NonCommercial — You may not use the material for commercial purposes.
* ShareAlike — If you remix, transform, or build upon the material, you must distribute your contributions under the same license as the original.
No additional restrictions — You may not apply legal terms or technological measures that legally restrict others from doing anything the license permits.
### Preferred Attribution
The preferred attribution for this novel is:
> "Sand and Bone" by D. Moonfire is licensed under CC BY-NC-SA 4.0
In the above attribution, use the following links:
* Sand and Bone: [https://fedran.com/sand-and-bone/](https://fedran.com/sand-and-bone/)
* D. Moonfire: https://d.moonfire.us/
* CC BY-NC-SA 4.0: https://creativecommons.org/licenses/by-nc-sa/4.0/

View file

@ -1,20 +0,0 @@
---
title: Patrons
---
This book is freely available on the Fedran website. It can be reformatted for any device, shared, and even reposted on other websites (with attribution and a link to the original). If someone wants to write a fanfic or create art inspired by the book, they are allowed to do so with relatively few limitations, which are set down by the license described in the previous section.
* [https://fedran.com/sand-and-bone/](https://fedran.com/sand-and-bone/)
It is hard to compete with "free" in this day and age. Releasing a book under a Creative Commons license is one way of doing that, but there are still costs associated with producing the results. There are hundreds of hours put into writing it, hiring editors to go through it, and even hosting it on a website. As economics will tell you, there is no such thing as a free lunch. Most of the time, you pay for a book before reading it. Sometimes you have a sample of a few chapters to give you a hint, other times just a blurb. Here, you get the entire piece. If you like it, please consider supporting my writing.
The cheapest way of helping is simply to talk about the book. Post opinions on social networks, write a review and put it up on Amazon or Goodreads, or give a copy to someone who might like it.
The second way of helping is to donate money. Even a dollar helps. There are quite a few ways of doing this: you can buy a print copy; the tip jar at Broken Typewriter Press; or even consider becoming a patron. Patronage provides advance access to works-in-progress, votes on new stories and titles, and input into the world and my writing. You can read more about patrons at:
* [https://broken.typewriter.press/dmoonfire/](https://broken.typewriter.press/dmoonfire/)
* [https://fedran.com/patrons/](https://fedran.com/patrons/)
I can only hope that if you like it, you'll help me write the next one.
Thank you.

View file

@ -32,6 +32,17 @@ organizations:
topics:
secondary:
- kojinōmi
warnings:
primary:
- Named Character Death
- Violence
- Physical Assault
- Physical Abuse
- Sexual Intimacy
secondary:
- Named Animal Death
- Unnamed Animal Death
- Physical Torture
summary: >
Rutejìmo is playing with Mapábyo and his two children, Kitòpi and Piróma when there is a bird-like screen, someone in the clan was in trouble. As they ponder what is going on, Chimípu leaves the valley at high speed; the two parents protect their children from the warrior's high-speed exist. They run back to the valley entrance to see Bakóki dying in Tejíko's arms. While the others get ready to follow Chimípu, Rutejìmo heads back into the valley because he has other duties dealing with Bakóki.
---

View file

@ -12,7 +12,7 @@ characters:
- Rutejìmo
secondary:
- Shimusògo
- Dochiryùma # The other kojinōmi
- Dochiryùma (Unnamed) # The other kojinōmi
- Tsupòbi # warriors who gets "killed"
- Shifíku # Little girl
referenced:

6
commitlint.config.js Normal file
View file

@ -0,0 +1,6 @@
module.exports = {
extends: ["@commitlint/config-conventional"],
rules: {
"body-max-line-length": [0],
},
};

293
fedran.json Normal file
View file

@ -0,0 +1,293 @@
{
"version": 0,
"identifier": "0100-02",
"character": {
"pov": 100,
"name": "Rutejìmo",
"character_slug": "rutejimo",
"color": "hsl(45, 40%, 50%)"
},
"source": {
"pov": 100,
"volume": 2,
"title": "Sand and Bone",
"description": {
"tag": "The final journey starts with a single step...",
"paragraphs": [
"Now a father, Rutejìmo is finally comfortable with his place in society as a tender of the dead. The rest of his clan, however, hasn't fully accepted his role and his son questions his bravery after a vicious attack. Unable to explain, Rutejìmo attempts to demonstrate his duties through actions instead of words but fails.",
"Everything changes after a violent bloodbath with enemies disguised as friends. Rutejìmo begins to lose all that is sacred to him. It's up to him to find his way back to his family and his solace, running for his life, his redemption, and his honor. Can Rutejìmo battle his biggest enemy, himself, before it's too late and his legacy is destroyed once and for all?"
]
},
"word_count": 82861,
"length": "Novel",
"title_slug": "sand-and-bone",
"identifier_slug": "0100-02-sand-and-bone",
"copyright_year": 2019,
"status": "Stable",
"genres": [
"Action",
"Tragedy"
],
"languages": {
"miwafu": true
},
"has_dedication": true,
"git": {
"http_url": "https://src.mfgames.com/fedran-sources/sand-and-bone.git",
"branch": "master"
},
"links": {
"development": {
"git": "https://src.mfgames.com/fedran-sources/sand-and-bone/",
"issues": "https://src.mfgames.com/fedran-sources/sand-and-bone/issues"
},
"online": {
"wattpad": "https://www.wattpad.com/story/86395803-sand-and-bone",
"goodreads": "https://www.goodreads.com/book/show/35198914-sand-and-bone"
},
"print": {
"isbn": "978-1-940509-25-9",
"amazon": "http://amzn.to/2FsiVRx",
"typewriter": "https://store.typewriter.press/product/sand-and-bone/"
},
"digital": {
"amazon": "http://amzn.to/2FyJRey",
"typewriter": "https://store.typewriter.press/product/sand-and-bone/"
}
},
"cover": {
"cover_slug": "0100-02-sand-and-bone",
"title_page_lines": [
"Sand",
"and",
"Bone"
]
},
"warnings": {
"text": "This novel contains scenes where the primary character and others experience named character death, physical abuse, physical assault, sexual intimacy, and violence. There are also scenes where secondary characters experience named animal death, physical torture, and unnamed animal death. There is no sexual assault.",
"primary": [
"Named Character Death",
"Violence",
"Physical Assault",
"Physical Abuse",
"Sexual Intimacy"
],
"secondary": [
"Named Animal Death",
"Unnamed Animal Death",
"Physical Torture"
]
},
"credits": {
"alpha_readers": [
"Bill H.",
"Ciuin",
"Tyree C.",
"Cindy M.",
"Aimee K."
],
"beta_readers": [
"Chandrakumar M.",
"Laura W.",
"Marta B.",
"Mike K."
],
"editors": [
"Blurb Bitch",
"Ronda Swolley",
"Shannon Ryan"
]
},
"chapters": [
{
"title": "Running Away",
"word_count": 2335,
"summary": "Rutejìmo is playing with Mapábyo and his two children, Kitòpi and Piróma when there is a bird-like screen, someone in the clan was in trouble. As they ponder what is going on, Chimípu leaves the valley at high speed; the two parents protect their children from the warrior's high-speed exist. They run back to the valley entrance to see Bakóki dying in Tejíko's arms. While the others get ready to follow Chimípu, Rutejìmo heads back into the valley because he has other duties dealing with Bakóki.\n",
"warnings": {
"primary": [
"Named Character Death",
"Violence",
"Physical Assault",
"Physical Abuse",
"Sexual Intimacy"
],
"secondary": [
"Named Animal Death",
"Unnamed Animal Death",
"Physical Torture"
]
}
},
{
"title": "Cowardice",
"word_count": 1197,
"summary": "As Rutejìmo dresses for his duties as a kojinōmi, a tender of the dead, Kitòpi comes into his room and asks why his father is a coward. Rutejìmo is already taken on the silence of his duties, so he cannot answer and the guilt tears into him. He is saved by Pidòhu who arrives and tries to explain.\n"
},
{
"title": "Exhaustion",
"word_count": 1372,
"summary": "Rutejìmo is coming back after his day of purification after dealing with Bakóki's death. Chimípu meets up with him and tells him that they saved the other two couriers but lost most of the money the clan needed. They are going to take a job with the Kosòbyo, one of the largest clans in the entire desert.\n"
},
{
"title": "The Morning Before",
"word_count": 1713,
"summary": "The day that Rutejìmo and Mapábyo are leaving for Kosobyo City, their children wake them up, curious and active. They talk about why the two are going instead of Mapábyo's parents. Kiríshi interrupts them to get them going.\n"
},
{
"title": "Halfway There",
"word_count": 1995,
"summary": "Rutejìmo and Nifùni are sparring, but Rutejìmo is using a real weapon. Nifùni gets upset and refuses to fight until he has a real weapon himself. Desòchu insists that Rutejìmo's fighting skill is enough and demostrates by sparing with his brother, then failing to protect his neck. Rutejìmo hurts himself to pull the blow.\n"
},
{
"title": "Kosobyo City",
"word_count": 1048,
"summary": "The group arrives at Kosobyo City. It is far larger and more expansive than Rutejìmo had ever seen before. But, just as he was getting overwhelmed by the scope, he noticed white and gold smoke in the distance indicating his duties as a kojinōmi were needed. He splits from his clan to head there.\n"
},
{
"title": "Broken Silence",
"word_count": 3677,
"summary": "Rutejìmo meets another kojinōmi on the way to the smoke. To his surprise, the other man is heading away as he decided not to help a night clan's death. Rutejìmo, on the other hand, always served everyone and continued forward. He came up to a wagon surrounded by warriors. He walked toward the wagon, usually the crowds parted around him. However, Tsupòbi blocked his way. Rutejìmo found the urge to speak, when he did, he stripped away Tsupòbi's magic and declared him dead to the world. The others left him alone as he attended to a young girl who had been disemboweled and was dying.\n"
},
{
"title": "Alone",
"word_count": 1055,
"summary": "Rutejìmo attends to the little girl's bonfire. As he does, he tries to write the details of the stories she gave him in his book but doesn't have the room. It saddens him that so many stories are lost because no one remembers. When the fire is done, he leaves his belongings behind and begins his purfication ritual.\n"
},
{
"title": "Greatness",
"word_count": 1428,
"summary": "Heading back, Rutejìmo encountered Fidochìma, the little girl's grandfather. Fidochìma is looking for revenge but Rutejìmo suggests he let Mifúno handle it; Fidochìma refuses and they part ways.\n"
},
{
"title": "Westerners",
"word_count": 2386,
"summary": "Rutejìmo arrives at Kosobyo City but is quickly overwhelmed by the size of it. He tries to find the message board but no one helps him until a guard, Dimóryo, offers to help. They talk a little before reaching the board. Desòchu arrives but bristles at Dimóryo's attention. The Shimusògo head back to the hotel.\n"
},
{
"title": "Recovering",
"word_count": 2111,
"summary": "As Rutejìmo, Mapábyo, and Nifùni go shopping, Dimóryo comes up to them with probing questions. Mapábyo doesn't warm up to her. After the guard leaves, Rutejìmo and Mapábyo head back to the inn for some quiet time.\n"
},
{
"title": "The Offer",
"word_count": 2641,
"summary": "Rutejìmo is out in Kosobyo City looking for Nifùni who disappeared. He stumbled on Nifùni making a deal with a woman to deliver a message who offers a hundred thousand pyābi to deliver a message. Nifùni almost accepts but Rutejìmo has a bad feeling and tuns it down. Nifùni gets upset and attacked Rutejìmo before they are both kicked out of a bar. Desòchu arrives and insists on taling about it. When Nifùni suggests that Desòchu would always take Rutejìmo's side, Desòchu punches him.\n"
},
{
"title": "Voting",
"word_count": 1794,
"summary": "All of the Shimusògo are sharing a room in the inn. They vote on taking the woman's job. After a tense decision, they decide not to take the job. Nifùni is upset by the result.\n"
},
{
"title": "Presents",
"word_count": 5886,
"summary": "Rutejìmo and Mapábyo are finishing their last shopping when Byochína comes up. Nifùni had gone missing. They search for him but find the corpse of the Kosòbyo woman instead. Soon after that, they find Nifùni who accepted the contract. Dimóryo and other guards show up and try to kill all of them. Mapábyo calls Chimípu and Desòchu who destroy large parts of the city as the runners escape the city.\n"
},
{
"title": "Banyosiōu",
"word_count": 1336,
"summary": "After the Shimusògo escaped the city, Desòchu attacked Nifùni for betraying them. Rutejìmo watching uncomfortablly until he feels an overwhelming urge to speak up, not as one of the Shimusògo but as Mifúno, the desert itself.\n"
},
{
"title": "A Second Wind",
"word_count": 2116,
"summary": "The Shimusògo try to figure out what to do next. They open the case and find out that the Kosòbyo is going to leave Tachìra and possibly set off a bloody war, but they aren't sure. If they are wrong, then the Kosòbyo will destroy their clan. They decide to send the vote for the entire clan and send Chimípu ahead to make the choice.\n"
},
{
"title": "Splitting Up",
"word_count": 3144,
"summary": "While the Shimusògo slept, Kosòbyo's forces spread out across the land. Their plans of having Chimípu go first was changed when they realized they all had to run. Breaking apart the message into multiple parts, Desòchu plans a unique route for each one. As they do, Fidochìma appears and begs for forgiveness, the desert had already turned her back on him and he had become a banyosiōu.\n"
},
{
"title": "Brothers",
"word_count": 2877,
"summary": "As the Shimusògo break up, Rutejìmo is held behind with Desòchu. His brother tells him that he isn't going ahead. Instead he was going to stall the warriors chasing after them even though he knew he was going to die. After a tearful goodbye, Rutejìmo flees as Desòchu and Fidochìma cover his retreat.\n"
},
{
"title": "Nightmares",
"word_count": 1391,
"summary": "Camping alone, Rutejìmo is haunted by his brother's death and the possibility of losing everyone else in his life.\n"
},
{
"title": "An Unexpected Companion",
"word_count": 2020,
"summary": "Rutejìmo struggles to run alone. Then his path meets up with Nifùni right before night. Together, they find shelter though tensions rise as they begin to talk.\n"
},
{
"title": "The Dying",
"word_count": 1907,
"summary": "Rutejìmo and Nifùni come up to a oasis run by the Nyochikōmu. They have a chance to recover but then Rutejìmo sees smoke which means his duties as a kojinōmi are needed. Nifùni argues and then goes off alone. The old lady tending the oasis offers to keep his things safe, because he is a kojinōmi.\n"
},
{
"title": "Old Ways",
"word_count": 2429,
"summary": "Rutejìmo wakes up back to the spring. Atefómu took care of him. She also tells him that Kosòbyo warriors came and she guided them to Nifùni who they killed. When Rutejìmo gets upset, she offers to let him kill her but he doesn't. They also talk about how being a kojinōmi also means he's the desert's champion, doomed to die like most warriors.\n"
},
{
"title": "Asylum",
"word_count": 4843,
"summary": "Rutejìmo makes it to Wamifuko City but he is being chased. Allies of Kosòbyo try to stop him but Gichyòbi defends him, killing almost everyone who attacked Rutejìmo.\n"
},
{
"title": "Declaration of War",
"word_count": 5145,
"summary": "Rutejìmo tells Gichyòbi what was going on, though relucantly at first. Then Gichyòbi tells him that Hyonèku and Kiríshi were attacked on their rute. Kiríshi died but Hyonèku was severely injured. Rutejìmo rushes for his wife's daughter and tells him everything, ending with three clans declaring war on Kosòbyo. Then Rutejìmo says he is going to burn Kiríshi's body, which gets everyone upset until he invokes Mifúno's name.\n"
},
{
"title": "Sneaking Out",
"word_count": 1351,
"summary": "Rutejìmo and Gichyòbi sneak out of the city so Rutejìmo can burn Kidóri's corpse.\n"
},
{
"title": "A Long Night",
"word_count": 2456,
"summary": "Rutejìmo finishes burning Kiríshi's body. Instead of resting, he packs up, leaves his *Book of Ash*, and then immediately starts running toward home.\n"
},
{
"title": "A Longer Day",
"word_count": 1071,
"summary": "Rutejìmo is getting exhausted running but he doesn't dare stop in fears of being ambushed.\n"
},
{
"title": "Smoke and Honor",
"word_count": 5809,
"summary": "Rutejìmo answers a call for a kojinōmi only to find out it is a trap. He calls for help and four clans answer the call, all of them dying in the ambush. Then Chimípu arrives and joins the fight.\n"
},
{
"title": "Shimusogo Chimípu",
"word_count": 1072,
"summary": "Rutejìmo wakes up to a field of carnage and Chimípu dying. She tells him to run home. He doesn't want to but she shoves him away as she dies.\n"
},
{
"title": "Keep Moving",
"word_count": 254,
"summary": "Rutejìmo runs alone, haunted by the deaths of everyone who lost their lives.\n"
},
{
"title": "Wind's Teeth",
"word_count": 2862,
"summary": "Rutejìmo arrives at Three Falls Teeth. Mapábyo is there and he is relived but it turns out that Dimóryo had taken his wife's form. He calls on the desert to kill the Kosòbyo but Dimóryo manages to poison him before she is killed by the desert.\n"
},
{
"title": "Limits",
"word_count": 1117,
"summary": "Running out of time and with poison in his veins, Rutejìmo tries to run as long as he can. Even when his power runs out, he keeps running until the poison saps his strength and he collapses. Mikáryo finds him.\n"
},
{
"title": "Pabinkue Mikáryo",
"word_count": 2834,
"summary": "Rutejìmo doesn't expect to wake up but he does. He finds out that Mikáryo is using magic from her horse's blood to keep him alive but he can't sleep. They settle down to a night of talking.\n"
},
{
"title": "One Last Time",
"word_count": 2613,
"summary": "Minutes before Rutejìmo and he managed to survive the night. Mikáryo and Tsubàyo prepare to protect him until the sun rises and he could use his magic, but there is going to be a battle among the Pabinkúe. Rutejìmo knows that if he stops again, he will die so he runs as fast as he can, finally catching the clan's spirit as he begins his ryodifūne, his final run.\n"
},
{
"title": "Shimusogo Valley",
"word_count": 3576,
"summary": "Rutejìmo was the only one to make it home, but he cannot stop without dying. Pidòhu meets him along the way, flying using his magic. Realizing there is a war, they summon help from other clans to protected Rutejìmo as he races to the valley. The Shimusògo slow him down so he can collapse in Tejíko's arms. As the poison and energies kill him, Kitòpi and Piróma approach to see their father dying. Piróma puts on the kojinōmi clothes and tends to his death.\n"
}
]
}
}

58
flake.lock Normal file
View file

@ -0,0 +1,58 @@
{
"nodes": {
"flake-utils": {
"locked": {
"lastModified": 1642700792,
"narHash": "sha256-XqHrk7hFb+zBvRg6Ghl+AZDq03ov6OshJLiSWOoX5es=",
"owner": "numtide",
"repo": "flake-utils",
"rev": "846b2ae0fc4cc943637d3d1def4454213e203cba",
"type": "github"
},
"original": {
"owner": "numtide",
"repo": "flake-utils",
"type": "github"
}
},
"nixpkgs": {
"locked": {
"lastModified": 1643805626,
"narHash": "sha256-AXLDVMG+UaAGsGSpOtQHPIKB+IZ0KSd9WS77aanGzgc=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "554d2d8aa25b6e583575459c297ec23750adb6cb",
"type": "github"
},
"original": {
"id": "nixpkgs",
"ref": "nixos-unstable",
"type": "indirect"
}
},
"nixstable": {
"locked": {
"lastModified": 1622516815,
"narHash": "sha256-ZjBd81a6J3TwtlBr3rHsZspYUwT9OdhDk+a/SgSEf7I=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "7e9b0dff974c89e070da1ad85713ff3c20b0ca97",
"type": "github"
},
"original": {
"id": "nixpkgs",
"ref": "21.05",
"type": "indirect"
}
},
"root": {
"inputs": {
"flake-utils": "flake-utils",
"nixpkgs": "nixpkgs",
"nixstable": "nixstable"
}
}
},
"root": "root",
"version": 7
}

28
flake.nix Normal file
View file

@ -0,0 +1,28 @@
{
inputs = {
nixstable.url = "nixpkgs/21.05";
nixpkgs.url = "nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, nixstable, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = nixpkgs.legacyPackages.${system};
stable = nixstable.legacyPackages.${system};
in {
devShell = pkgs.mkShell {
buildInputs = [
pkgs.epubcheck
pkgs.nixfmt
pkgs.nodejs-16_x
pkgs.pandoc
pkgs.pdftk
pkgs.python39Full
pkgs.python39Packages.weasyprint
pkgs.jq
pkgs.s3cmd
];
};
});
}

View file

@ -1,9 +0,0 @@
---
title: title
---
<div class="title">
<div class="large">Sand</div>
<div class="medium">and</div>
<div class="large">Bone</div>
</div>

View file

@ -1,21 +0,0 @@
---
title: Miwāfu
---
<p>This novel is set in the Mifuno Desert where the native language is Miwāfu. Names in this language are significantly different from English, so here is a short guide on pronunciation and usage.</p>
<p>The biggest difference is that every name is gendered, which is identified by the accent on the penultimate syllable. There are three types of accents:</p>
<ul>
<li><em>Grave</em> (as in hèru for stallion) is a tiny tick that goes down to the right. The grave accent indicates a masculine aspect, either in physical gender, size, or power. Names with grave accents either end in a lower pitch or the entire word is spoken in a lower tone.</li>
<li><em>Macron</em> (for example, hēru for colt) is a bar over the vowel. This is a neuter term, used for many gender-free words or expressions within the language. It is also used for mechanical devices, abstract concepts, and children—both human and beast. Macrons are spoken as a long vowel or drawing out the word just a beat longer than normal.</li>
<li><em>Acute</em> (héru for mare) is a tiny tick that goes to the upper right. The acute indicates feminine aspects of the word. It can represent control without power or precision. These words end on a high note or the entire word is spoken in a higher pitch.</li>
</ul>
<p>The only instances where accents arent used is adjectives or indication of ownership. So, if a valley is owned by the clan Shimusògo, it is known as Shimusogo Valley.</p>
<p>The names themselves are phonetic. A syllable is always from a consonant cluster to the vowel. For examples: Mi.wā.fu (IPA <span class="ipa">/mi.waː.ɸɯ̥/</span>), Shi.mu.sò.go (<span class="ipa">/ɕi.mɯ.ꜜso.ɡo/</span>), and De.sò.chu (<span class="ipa">/de.ꜜso.tɕɯ̥/</span>). The only exception is the letter “n” which is considered part of the syllable before it when not followed by a vowel. For example, ga.n.ré.ko (<span class="ipa">/ɡa.ŋꜛɾe.ko/</span>) and ka.né.ko (<span class="ipa">/ka.ꜛne.ko/</span>).</p>
<p>Miwāfu has no capital letters, they are added to satisfy English conventions.</p>

View file

@ -1 +0,0 @@
<br/>

View file

@ -1,15 +0,0 @@
---
title: Title
---
<div class="title">
<div class="large">Sand</div>
<div class="medium">and</div>
<div class="large">Bone</div>
<div class="author">D. Moonfire</div>
<div class="publisher">
Broken Typewriter Press &#8226; Cedar Rapids
</div>
</div>

BIN
logo.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 113 KiB

After

Width:  |  Height:  |  Size: 191 KiB

View file

@ -8,7 +8,4 @@ In addition to having a borderline unhealthy obsession with the written word, he
He lives near Cedar Rapids, Iowa with his wife, numerous pet computers, and a pair of highly mobile things of the male variety.
You can see more work by D. Moonfire at his website. His stories and novels can be found on the Fedran website.
* [https://d.moonfire.us/](https://d.moonfire.us/)
* [https://fedran.com/](https://fedran.com/)
You can see more work by D. Moonfire at his website at [https://d.moonfire.us/](https://d.moonfire.us/). His fantasy world, Fedran, can be found at [https://fedran.com/](https://fedran.com/).

21
matter/credits.md Normal file
View file

@ -0,0 +1,21 @@
---
title: Credits
---
## Alpha Readers
| ---------- | --------- | ----------
| Bill H. | Ciuin | Tyree C. |
| Cindy M. | Aimee K. ||
## Editors
| ---------- | --------- | ----------
| Blurb Bitch | Ronda Swolley | Shannon Ryan |
## Beta Readers
| ---------- | --------- | ----------
| Chandrakumar M. | Laura W. | Marta B. |
| Mike K. |||

View file

@ -2,7 +2,7 @@
title: Legal
---
Copyright © 2016 D. Moonfire\
Copyright © 2019 D. Moonfire\
Some Rights Reserved\
Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International
@ -10,7 +10,7 @@ Cover art by D. Moonfire
All characters, events, and locations are fictitious. Any resemblance to persons, past, present, and future is coincidental and highly unlikely.
Some scenes and themes that appear in this book: death of named characters, death of a named child, death of animals both named and unnamed, graphical violence, personal tragedy, physical abuse, and torture. There is sex but no explicit scenes. There is no rape.
This novel contains scenes where the primary character and others experience named character death, physical abuse, physical assault, sexual intimacy, and violence. There are also scenes where secondary characters experience named animal death, physical torture, and unnamed animal death. There is no sexual assault.
Broken Typewriter Press\
5001 1st Ave SE\
@ -20,8 +20,8 @@ Cedar Rapids, IA 52402
Broken Typewriter Press\
[https://broken.typewriter.press/](https://broken.typewriter.press/)
{% if edition.isbn %}
ISBN {{ edition.isbn }}
{% if (edition.isbn) %}
ISBN {{edition.isbn}}
{% endif %}
Version {{ edition.version }}
Version {{edition.version}}

32
matter/license.md Normal file
View file

@ -0,0 +1,32 @@
---
title: License
---
This book is distributed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International license. More info can be found at [https://creativecommons.org/licenses/by-nc-sa/4.0/](https://creativecommons.org/licenses/by-nc-sa/4.0/). This means:
### You are free to:
- Share — copy and redistribute the material in any medium or format
- Adapt — remix, transform, and build upon the material
The licensor cannot revoke these freedoms as long as you follow the license terms.
### Under the following terms:
- Attribution — You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
- NonCommercial — You may not use the material for commercial purposes.
- ShareAlike — If you remix, transform, or build upon the material, you must distribute your contributions under the same license as the original.
No additional restrictions — You may not apply legal terms or technological measures that legally restrict others from doing anything the license permits.
### Preferred Attribution
The preferred attribution for this novel is:
> "Sand and Bone" by D. Moonfire is licensed under CC BY-NC-SA 4.0
In the above attribution, use the following links:
- Flight of the Scions: [https://fedran.com/sand-and-bone/](https://fedran.com/sand-and-bone/)
- D. Moonfire: https://d.moonfire.us/
- CC BY-NC-SA 4.0: https://creativecommons.org/licenses/by-nc-sa/4.0/

61
matter/miwafu.html Normal file
View file

@ -0,0 +1,61 @@
---
title: Miwāfu
---
<p>
This novel has characters who come from the Mifuno Desert where the native
language is Miwāfu. Names in this language are significantly different from
English, so here is a short guide on pronunciation and usage.
</p>
<p>
The biggest difference is that every name is gendered, which is identified
by the accent on the penultimate syllable. There are three types of accents:
</p>
<ul>
<li>
<em>Grave</em> (as in hèru for stallion) is a tiny tick that goes down
to the right. The grave accent indicates a masculine aspect, either in
physical gender, size, or power. Names with grave accents either end in
a lower pitch or the entire word is spoken in a lower tone.
</li>
<li>
<em>Macron</em> (for example, hēru for colt) is a bar over the vowel.
This is a neuter term, used for many gender-free words or expressions
within the language. It is also used for mechanical devices, abstract
concepts, and children—both human and beast. Macrons are spoken as a
long vowel or drawing out the word just a beat longer than normal.
</li>
<li>
<em>Acute</em> (héru for mare) is a tiny tick that goes to the upper
right. The acute indicates feminine aspects of the word. It can
represent control without power or precision. These words end on a high
note or the entire word is spoken in a higher pitch.
</li>
</ul>
<p>
The only instances where accents arent used is adjectives or indication of
ownership. So, if a valley is owned by the clan Shimusògo, it is known as
Shimusogo Valley.
</p>
<p>
The names themselves are phonetic. A syllable is always from a consonant
cluster to the vowel. For examples: Mi.wā.fu (IPA
<span class="ipa">/mi.waː.ɸɯ̥/</span>), Shi.mu.sò.go (<span class="ipa"
>/ɕi.mɯ.ꜜso.ɡo/</span
>), and De.sò.chu (<span class="ipa">/de.ꜜso.tɕɯ̥/</span>). The only
exception is the letter “n” which is considered part of the syllable before
it when not followed by a vowel. For example, ga.n.ré.ko (<span class="ipa"
>/ɡa.ŋꜛɾe.ko/</span
>) and ka.né.ko (<span class="ipa">/ka.ꜛne.ko/</span>).
</p>
<p>
Miwāfu has no capital letters, they are added to satisfy English
conventions.
</p>

1
matter/pad.html Normal file
View file

@ -0,0 +1 @@
<br />

15
matter/title.html Normal file
View file

@ -0,0 +1,15 @@
---
title: Title
---
<div class="title">
<div class="title-area">
<div class="large">Sand</div>
<div class="large">and</div>
<div class="large">Bone</div>
</div>
<div class="author">D. Moonfire</div>
<div class="publisher">Broken Typewriter Press &#8226; Cedar Rapids</div>
</div>

23370
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -1,75 +1,50 @@
{
"name": "sand-and-bone",
"version": "2.0.3",
"private": true,
"version": "1.1.0",
"fedran": {
"pov": "0100",
"vol": "02"
"description": "\"Sand and Bone\" is a novel by D. Moonfire.",
"author": {
"name": "D. Moonfire"
},
"description": "A novel by D. Moonfire",
"author": "D. Moonfire",
"license": "CC-BY-NC-SA-4.0",
"repository": {
"type": "git",
"url": "git+https://gitlab.com/fedran/sand-and-bone.git"
"url": "git+https://src.mfgames.com/fedran-sources/sand-and-bone.git"
},
"homepage": "https://fedran.com/sand-and-bone/",
"scripts": {
"build:pdf": "mfgames-writing-format build pdf",
"build:epub": "mfgames-writing-format build epub",
"build": "npm run build:epub && npm run build:mobi && npm run build:pdf",
"build:extended": "npm run build && npm run build:html && npm run build:docx",
"build:docx": "sed 's@&#173;@@g' < dmoonfire-$npm_package_fedran_pov-$npm_package_fedran_vol-$npm_package_name-$npm_package_version.html | pandoc -f html -t docx -o dmoonfire-$npm_package_fedran_pov-$npm_package_fedran_vol-$npm_package_name-$npm_package_version.docx",
"build:mobi": "kindlegen dmoonfire-$npm_package_fedran_pov-$npm_package_fedran_vol-$npm_package_name-$npm_package_version.epub",
"build:html": "mfgames-writing-format build html",
"commitmsg": "commitlint -E GIT_PARAMS"
"build:docx": "mfgames-writing-format build docx",
"build": "run-s build:*",
"prepare": "husky install"
},
"dependencies": {
"@fedran/writing-hyphen": "^1.0.0",
"@fedran/writing-theme": "^2.0.2",
"@mfgames-writing/epub2": "^1.1.3",
"@mfgames-writing/format": "^2.0.0",
"@fedran/writing-theme": "^4.0.2",
"@mfgames-writing/contracts": "^4.4.0",
"@mfgames-writing/docx-format": "^1.0.2",
"@mfgames-writing/epub2-format": "^2.1.1",
"@mfgames-writing/format": "^3.3.1",
"@mfgames-writing/guillemet": "^1.0.0",
"@mfgames-writing/html": "^0.1.1",
"@mfgames-writing/hyphen": "^0.4.3",
"@mfgames-writing/weasyprint": "^3.0.2"
"@mfgames-writing/hyphen-pipeline": "^1.0.2",
"@mfgames-writing/liquid-theme": "^2.1.1",
"@mfgames-writing/weasyprint-format": "^5.0.4",
"markdown-it-multimd-table": "^4.1.3"
},
"devDependencies": {
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.5.0",
"@semantic-release/changelog": "^3.0.2",
"@semantic-release/git": "^7.0.8",
"commitizen": "^2.10.1",
"cz-conventional-changelog": "^2.1.0",
"husky": "^0.14.3",
"semantic-release": "^15.13.3"
},
"release": {
"branch": "master",
"message": "chore(release): v${nextRelease.version}\n\n${nextRelease.notes}",
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/git"
],
"analyzeCommits": [
"@semantic-release/commit-analyzer"
],
"prepare": [
"@semantic-release/changelog",
"@semantic-release/git"
],
"publish": [],
"success": [],
"fail": []
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@saithodev/semantic-release-gitea": "^2.1.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^8.0.3",
"@semantic-release/release-notes-generator": "^10.0.3",
"husky": "^7.0.2",
"markdowny": "^0.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"semantic-release": "^18.0.1"
}
}

137
publication.json Normal file
View file

@ -0,0 +1,137 @@
{
"metadata": {
"title": "Sand and Bone",
"author": "D. Moonfire",
"language": "en",
"theme": "@fedran/writing-theme",
"outputDirectory": ".",
"outputFilename": "dmoonfire-{{edition.fedran.source.identifier_slug}}-{{edition.version}}.{{edition.ext}}",
"markdown": {
"extensions": [
{
"package": "markdown-it-multimd-table",
"options": {
"headerless": true
}
}
]
},
"style": {
"css": "td { width: 6em; } td[colspan=\"2\"] { width: 12em; }"
}
},
"includes": [
{
"json": "./fedran.json",
"merge": "metadata.fedran"
}
],
"editions": {
"epub": {
"format": "@mfgames-writing/epub2-format",
"ext": "epub"
},
"pdf": {
"format": "@mfgames-writing/weasyprint-format",
"isbn": "",
"images": {
"grayscale": true,
"opaque": true
},
"ext": "pdf"
},
"docx": {
"format": "@mfgames-writing/docx-format",
"ext": "docx"
}
},
"contents": [
{
"element": "cover",
"source": "build/fedran-covers/pov/covers/0100-02-sand-and-bone.jpg",
"linear": false,
"exclude": {
"editions": ["pdf"],
"toc": true
}
},
{
"element": "bastard",
"source": "matter/title.html",
"linear": false,
"exclude": {
"editions": ["epub", "html"],
"toc": true
}
},
{
"element": "title",
"source": "matter/title.html",
"linear": false,
"exclude": {
"toc": true
}
},
{
"element": "legal",
"source": "matter/legal.md",
"liquid": true,
"linear": false
},
{
"element": "dedication",
"source": "matter/dedication.md",
"linear": false
},
{
"element": "toc",
"linear": false,
"title": "Contents",
"exclude": {
"editions": ["pdf"]
}
},
{
"element": "preface",
"source": "matter/miwafu.html",
"linear": false
},
{
"element": "chapter",
"number": 1,
"directory": "chapters",
"source": "/^chapter-\\d+.(markdown|md)$/",
"start": true,
"page": 1,
"pipeline": [
{
"module": "@mfgames-writing/guillemet"
},
{
"module": "@fedran/writing-hyphen"
},
{
"module": "@mfgames-writing/hyphen-pipeline",
"exclude": ["`.*?`", "<code>.*?</code>"]
}
]
},
{
"element": "appendix",
"source": "matter/about.md"
},
{
"element": "appendix",
"source": "matter/fedran.md"
},
{
"element": "appendix",
"source": "matter/credits.md"
},
{
"element": "appendix",
"id": "license",
"source": "matter/license.md"
}
]
}

View file

@ -1,98 +0,0 @@
metadata:
series:
name: Rutejìmo
volume: 3
title: Sand and Bone
author: D. Moonfire
publisher: Broken Typewriter Press
rights: CC-BY-NC-SA-4.0
description:
source: ./description.markdown
subjects:
- Anime
- Fantasy
- Steampunk
- Fiction
- Action
- Tragedy
language: en
theme: "@fedran/writing-theme"
outputDirectory: .
outputFilename: "dmoonfire-{{ edition.fedran.pov }}-{{ edition.fedran.vol}}-{{ edition.name }}-{{ edition.version }}.{{ edition.editionName }}"
editions:
epub:
format: "@mfgames-writing/epub2"
pdf:
format: "@mfgames-writing/weasyprint"
isbn: 978-1-940509-25-9
images:
grayscale: true
opaque: true
html:
format: "@mfgames-writing/html"
contents:
- element: cover
source: build/repos/fedran-covers/dist/full/0100-02-sand-and-bone-front.jpg
linear: false
exclude:
editions: [pdf]
toc: true
- element: bastard
source: frontmatter/bastard.html
linear: false
exclude:
editions: [epub]
toc: true
- element: title
source: frontmatter/title.html
linear: false
exclude:
toc: true
- element: legal
source: frontmatter/legal.markdown
liquid: true
linear: false
- element: dedication
source: frontmatter/dedication.markdown
linear: false
- element: toc
linear: false
title: Contents
exclude:
editions: [pdf]
- element: preface
source: frontmatter/miwafu.html
linear: false
- element: preface
source: build/previously.markdown
linear: false
- element: blank
source: frontmatter/pad.html
linear: false
exclude:
editions: [epub]
- element: chapter
number: 1
directory: chapters
source: /^chapter-\d+.markdown$/
start: true
page: 1
pipeline: &pipelines
- module: "@fedran/writing-hyphen"
- module: "@mfgames-writing/hyphen"
- element: appendix
source: backmatter/about.markdown
- element: appendix
source: backmatter/fedran.markdown
- element: appendix
id: license
source: backmatter/license.markdown
- element: appendix
source: backmatter/patrons.markdown
- element: appendix
source: backmatter/credits.markdown
pipeline: *pipelines
- element: colophon
source: backmatter/colophon.markdown

39
release.config.js Normal file
View file

@ -0,0 +1,39 @@
module.exports = {
branches: ["main"],
extends: ["@commitlint/config-conventional"],
message:
"chore(release): v${nextRelease.version} [skip ci]\n\n${nextRelease.notes}",
plugins: [
[
"@semantic-release/commit-analyzer",
{
preset: "conventionalcommits",
},
],
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
[
"@semantic-release/exec",
{
prepareCmd: "npm run build",
},
],
"@semantic-release/changelog",
"@semantic-release/git",
[
"@saithodev/semantic-release-gitea",
{
giteaUrl: "https://src.mfgames.com",
assets: [
{ path: "*.epub", label: "EPUB2", type: "other" },
{ path: "*.pdf", label: "PDF", type: "other" },
{ path: "*.docx", label: "DOCX", type: "other" },
],
},
],
],
};

23
scripts/build.sh Executable file
View file

@ -0,0 +1,23 @@
#!/usr/bin/env bash
# Set up logging.
log() { echo "🛠️ $(basename $0): $@"; }
# Move into the root folder.
cd $(dirname $(dirname $0))
# Make sure everything is set up.
log "setting up project"
./scripts/setup.sh || exit 1
# Clean up the old files.
log "cleaning old builds"
rm -f dmoonfire*
# Build the project outputs.
log "building PDF"
./node_modules/.bin/mfgames-writing-format build pdf || exit 1
log "building EPUB"
./node_modules/.bin/mfgames-writing-format build epub || exit 1
epubcheck dmoonfire*.epub || exit 1

27
scripts/check-env-bucket.sh Executable file
View file

@ -0,0 +1,27 @@
#!/usr/bin/env bash
# Checks the environment to see if we have all the requisite components needed
# to upload or download from the S3 bucket.
# Set up logging.
log() { echo "⚗️ $(basename $0): $@"; }
# Move into the root folder.
cd $(dirname $(dirname $0))
for i in S3_ACCESS_KEY_ID S3_SECRET_ACCESS_KEY S3_ENDPOINT S3_BUCKET
do
if [ "x${!i}" = "x" ]
then
log "missing environment variable $i"
exit 1
fi
done
if [ ! which s3cmd 2> /dev/null ]
then
log "cannot find 's3cmd' to execute"
exit 1
fi
exit 0

40
scripts/release.sh Executable file
View file

@ -0,0 +1,40 @@
#!/usr/bin/env bash
# Builds the final versions of the book and then upload the results to various
# locations.
# Set up logging.
log() { echo "️🚢 $(basename $0): $@"; }
# Move into the root folder.
cd $(dirname $(dirname $0))
# Perform the basic environment checks and setup.
./scripts/setup.sh || exit 1
./scripts/check-env-bucket.sh || exit 1
# Clean up old versions of the file.
log "cleaning up prior versions which may not match versions"
rm -f dmoonfire*
# Perform the release process.
log "performing semantic release"
export GIT_CREDENTIALS="dmoonfire:$GITEA_TOKEN"
npx semantic-release || exit 1
# Create a tarball of the output files and upload them to S3.
if ls dmoonfire* &> /dev/null
then
log "packaging output into a tarball"
tar -cjf sand-and-bone.tar.bz2 dmoonfire*
log "uploading tarball to bucket"
export AWS_ACCESS_KEY_ID=$S3_ACCESS_KEY_ID
export AWS_SECRET_ACCESS_KEY=$S3_SECRET_ACCESS_KEY
export AWS_ENDPOINT=$S3_ENDPOINT
export AWS_BUCKET=$S3_BUCKET
s3cmd --access_key=$S3_ACCESS_KEY_ID --access_token=$S3_SECRET_ACCESS_KEY --host=$S3_ENDPOINT --host-bucket=$S3_ENDPOINT -P put sand-and-bone.tar.bz2 s3://$S3_BUCKET || exit 1
else
log "no files to upload"
fi

31
scripts/setup-fedran-covers.sh Executable file
View file

@ -0,0 +1,31 @@
#!/usr/bin/env bash
# Download the Fedran covers for inclusion. This places everything into the
# ./build/fedran-covers folder.
# Set up logging.
log() { echo "🖼 $(basename $0): $@"; }
# Move into the root folder.
cd $(dirname $(dirname $0))
# Check to see if it is already downloaded.
if [ -d ./build/fedran-covers ]
then
log "fedran-covers already exists, not downloading"
else
# Make sure we have all the required environment variables.
log "fedran-covers is missing, download from bucket"
./scripts/check-env-bucket.sh || exit 1
# Set the variables.
export AWS_ACCESS_KEY_ID=$S3_ACCESS_KEY_ID
export AWS_SECRET_ACCESS_KEY=$S3_SECRET_ACCESS_KEY
export AWS_ENDPOINT=$S3_ENDPOINT
export AWS_BUCKET=$S3_BUCKET
# Download and extract the bucket.
mkdir -p ./build/fedran-covers
s3cmd --access_key=$S3_ACCESS_KEY_ID --access_token=$S3_SECRET_ACCESS_KEY --host=$S3_ENDPOINT --host-bucket=$S3_ENDPOINT -P get s3://$S3_BUCKET/fedran-covers.tar.bz2 ./build/fedran-covers/fedran-covers.tar.bz2 || exit 1
tar x -C build/fedran-covers -f build/fedran-covers/fedran-covers.tar.bz2
fi

24
scripts/setup-fonts.sh Executable file
View file

@ -0,0 +1,24 @@
#!/usr/bin/env bash
# Sets up the fonts for building the PDF output. It doesn't do it if we are not
# in a CI environment.
# Set up logging.
log() { echo "✒️ $(basename $0): $@"; }
# Move into the root directory.
cd $(dirname $(dirname $0))
# We only insert the fonts if we are on a CI server.
if [ "x$CI" == "x" ]
then
log "not in CI environment, not installing fonts"
else
log "installing fonts"
mkdir -p ~/.local/share/fonts
cp $(nix-build --no-out-link '<nixpkgs>' -A source-serif-pro)/share/fonts/opentype/*.otf ~/.local/share/fonts
cp $(nix-build --no-out-link '<nixpkgs>' -A source-sans-pro)/share/fonts/opentype/*.otf ~/.local/share/fonts
log "updating font caches"
fc-cache
fi

17
scripts/setup-node.sh Executable file
View file

@ -0,0 +1,17 @@
#!/usr/bin/env bash
# Installs the required Node packages
# Set up logging.
log() { echo "📦️ $(basename $0): $@"; }
# Move into the root directory.
cd $(dirname $(dirname $0))
if [ -d ./node_modules ]
then
log "node_modules already exists"
else
log "setting up node"
npm install --ci
fi

9
scripts/setup.sh Executable file
View file

@ -0,0 +1,9 @@
#!/usr/bin/env bash
# Move into the root folder.
cd $(dirname $(dirname $0))
# Run the setup commands.
./scripts/setup-fonts.sh || exit 1
./scripts/setup-fedran-covers.sh || exit 1
./scripts/setup-node.sh || exit 1