Compare commits

...

5 commits
v1.0.0 ... main

Author SHA1 Message Date
D. Moonfire 7747cad45a chore: updating metadata
Some checks are pending
ci/woodpecker/push/woodpecker Pipeline is pending
2023-06-19 20:21:22 -05:00
D. Moonfire a92235bf92 chore: updating project data 2022-11-04 22:46:20 -05:00
semantic-release-bot d791ed5dd4 chore(release): v1.0.1 [skip ci]
## [1.0.1](https://src.mfgames.com/fedran-sources/two-boats-together/compare/v1.0.0...v1.0.1) (2022-10-17)

### Bug Fixes

* updating build ([766c20d](766c20d18a))
2022-10-17 10:30:05 +00:00
D. Moonfire 3de25a274b chore: updating project setup 2022-10-15 13:56:42 -05:00
D. Moonfire 766c20d18a fix: updating build 2022-10-15 07:36:53 -05:00
8 changed files with 2623 additions and 9 deletions

View file

@ -3,6 +3,8 @@ clone:
image: woodpeckerci/plugin-git
settings:
tags: true
when:
event: [push, pull_request]
pipeline:
build:
@ -17,8 +19,7 @@ pipeline:
- s3_access_key_id
- s3_secret_access_key
when:
event: [push, pull_request, tag]
tag: v*
event: [push, pull_request]
release:
image: registry.gitlab.com/dmoonfire/nix-flake-docker:latest

View file

@ -1,3 +1,10 @@
## [1.0.1](https://src.mfgames.com/fedran-sources/two-boats-together/compare/v1.0.0...v1.0.1) (2022-10-17)
### Bug Fixes
* updating build ([766c20d](https://src.mfgames.com/fedran-sources/two-boats-together/commit/766c20d18acd278d8869171f2887dca371bdd5a7))
# 1.0.0 (2022-10-14)

View file

@ -1,3 +1,7 @@
---
title: Description
---
**In the Wide Seas, Love Still Meets**
Astol happily traveled the Northern Seas with his two mothers and two brothers. However his heart is taken by Lain, a man with talents to get rid of bugs and infestations.

View file

@ -10,6 +10,13 @@
"pov": 84,
"volume": 0,
"title": "Two Boats Together",
"description": {
"tag": "In the Wide Seas, Love Still Meets",
"paragraphs": [
"Astol happily traveled the Northern Seas with his two mothers and two brothers. However his heart is taken by Lain, a man with talents to get rid of bugs and infestations.",
"When an unexpected wood-boring beetle shows up, he finds himself heading toward his crush and doesn't know how he is going to handle being so close."
]
},
"word_count": 3188,
"length": "Story",
"title_slug": "two-boats-together",

2594
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -1,6 +1,6 @@
{
"name": "two-boats-together",
"version": "1.0.0",
"version": "1.0.1",
"private": true,
"description": "\"Two Boats Together\" is a story by D. Moonfire.",
"author": {

View file

@ -1,11 +1,11 @@
{
"metadata": {
"title": "{{edition.fedran.source.title}}",
"title": "Two Boats Together",
"author": "D. Moonfire",
"language": "en",
"theme": "@fedran/writing-theme",
"outputDirectory": ".",
"outputFilename": "dmoonfire-{{edition.fedran.source.title_slug}}-{{edition.name}}-{{edition.version}}.{{edition.ext}}",
"outputFilename": "dmoonfire-{{edition.fedran.source.identifier_slug}}-{{edition.version}}.{{edition.ext}}",
"markdown": {
"extensions": [
{

View file

@ -10,9 +10,14 @@ cd $(dirname $(dirname $0))
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"
npm run build:pdf || exit 1
./node_modules/.bin/mfgames-writing-format build pdf || exit 1
log "building EPUB"
npm run build:epub || exit 1
./node_modules/.bin/mfgames-writing-format build epub || exit 1
epubcheck dmoonfire*.epub || exit 1