Skip to content

Commit

Permalink
Quick Save
Browse files Browse the repository at this point in the history
  • Loading branch information
rsdoiel committed Mar 9, 2024
1 parent 6647cfa commit 5cdb53d
Show file tree
Hide file tree
Showing 8 changed files with 38 additions and 38 deletions.
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ maintainers:
orcid: ""

repository-code: "https://github.com/rsdoiel/osf"
version: 0.0.4
version: 0.0.5
license-url: "https://rsdoiel.github.io/osf/license.html"
keywords: [ "Github", "text markup", "screen play" ]
keywords: [ "GitHub", "text markup", "screen play" ]
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,6 @@ distribute_docs:
@cp -v INSTALL.md dist/
@cp -vR man dist/

release: .FORCE save build save distribute_docs dist/Linux-x86_64 dist/Linux-aarch64 dist/macOS-x86_64 dist/macOS-arm64 dist/Windows-x86_64 dist/Windows-arm64 dist/Linux-armv7l
release: .FORCE build save distribute_docs dist/Linux-x86_64 dist/Linux-aarch64 dist/macOS-x86_64 dist/macOS-arm64 dist/Windows-x86_64 dist/Windows-arm64 dist/Linux-armv7l

.FORCE:
6 changes: 3 additions & 3 deletions about.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ authors:
orcid: "https://orcid.org/0000-0003-0900-6903"

repository-code: "https://github.com/rsdoiel/osf"
version: 0.0.4
version: 0.0.5
license-url: "https://rsdoiel.github.io/osf/license.html"
keywords: [ "GitHub", "text markup", "screen play" ]

Expand All @@ -19,7 +19,7 @@ keywords: [ "GitHub", "text markup", "screen play" ]
About this software
===================

## osf 0.0.4
## osf 0.0.5

### Authors

Expand All @@ -39,6 +39,6 @@ A library and command line programs for working with FadeIn and Open Screenplay

### Programming languages

- Go
- Go >= 1.22


2 changes: 1 addition & 1 deletion fadein2osf.1.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ Display converted OSF 2.0 XML to the console

fadein2osf -i screenplay.fadein

fadein2osf 0.0.4
fadein2osf 0.0.5
2 changes: 1 addition & 1 deletion installer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# Set the package name and version to install
#
PACKAGE="osf"
VERSION="0.0.4"
VERSION="0.0.5"
GIT_GROUP="rsdoiel"
RELEASE="https://github.com/$GIT_GROUP/$PACKAGE/releases/tag/v$VERSION"

Expand Down
20 changes: 10 additions & 10 deletions osf2txt.1.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ and returns plain text

OPTIONS

-generate-manpage generate man page
-generate-markdown generate Markdown documentation
-h, -help display help
-i, -input set the input filename
-l, -license display license
-nl, -newline add a trailing newline
-o, -output set the output filename
-quiet suppress error messages
-v, -version display version
-generate-manpage generate man page
-generate-markdown generate Markdown documentation
-h, -help display help
-i, -input set the input filename
-l, -license display license
-nl, -newline add a trailing newline
-o, -output set the output filename
-quiet suppress error messages
-v, -version display version


EXAMPLES
Expand All @@ -29,4 +29,4 @@ Or alternatively

cat screenplay.osf | osf2txt > screenplay.txt

osf2txt 0.0.4
osf2txt 0.0.5
20 changes: 10 additions & 10 deletions txt2osf.1.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ and returns an OSF 2.0 text

OPTIONS

-generate-manpage generate man page
-generate-markdown generate Markdown documentation
-h, -help display help
-i, -input set the input filename
-l, -license display license
-nl, -newline add a trailing newline
-o, -output set the output filename
-quiet suppress error messages
-v, -version display version
-generate-manpage generate man page
-generate-markdown generate Markdown documentation
-h, -help display help
-i, -input set the input filename
-l, -license display license
-nl, -newline add a trailing newline
-o, -output set the output filename
-quiet suppress error messages
-v, -version display version


EXAMPLES
Expand All @@ -29,4 +29,4 @@ Or alternatively

cat screenplay.txt | txt2osf > screenplay.osf

txt2osf 0.0.4
txt2osf 0.0.5
20 changes: 10 additions & 10 deletions version.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@ import (
)

const (
// Version number of release
Version = "0.0.4"
// Version number of release
Version = "0.0.5"

// ReleaseDate, the date version.go was generated
ReleaseDate = "2023-06-20"
// ReleaseDate, the date version.go was generated
ReleaseDate = "2024-03-09"

// ReleaseHash, the Git hash when version.go was generated
ReleaseHash = "aa27ad3"
// ReleaseHash, the Git hash when version.go was generated
ReleaseHash = "6647cfa"

LicenseText = `
LicenseText = `
All rights reserved.
Redistribution and use in source and binary forms, with or without
Expand Down Expand Up @@ -45,9 +45,9 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

// FmtHelp lets you process a text block with simple curly brace markup.
func FmtHelp(src string, appName string, version string, releaseDate string, releaseHash string) string {
m := map[string]string{
"{app_name}": appName,
"{version}": version,
m := map[string]string {
"{app_name}": appName,
"{version}": version,
"{release_date}": releaseDate,
"{release_hash}": releaseHash,
}
Expand Down

0 comments on commit 5cdb53d

Please sign in to comment.