From b20a9098cb24f220ed71873a6dac8cc9fa9d51fc Mon Sep 17 00:00:00 2001 From: Evert Provoost Date: Sun, 7 Jan 2018 20:10:36 +0100 Subject: [PATCH] Release v0.1.2 --- README.md | 4 ++-- build.sh | 17 ++++------------- feltix.go | 6 +++--- snap/snapcraft.yaml | 2 +- 4 files changed, 10 insertions(+), 19 deletions(-) diff --git a/README.md b/README.md index 8c7c3bf..4337b5b 100644 --- a/README.md +++ b/README.md @@ -5,5 +5,5 @@ A Fountain import and export tool with some extra's... Learn more [here](https://feltix.github.io/). -Test the current development version (Linux) -`sudo snap install --edge feltix` \ No newline at end of file +Install on Linux: +`snap install feltix` \ No newline at end of file diff --git a/build.sh b/build.sh index 5cc252b..5f537ef 100755 --- a/build.sh +++ b/build.sh @@ -6,19 +6,10 @@ rm -rf build # is done through build.snapcraft.io # Build for older 32bit processors. -GOARCH=386 - -GOOS=windows -go build -o build/windows/386/feltix.exe +GOARCH=386 GOOS=windows go build -o build/windows/386/feltix.exe # Build for 64bit. -GOARCH=amd64 - -GOOS=windows -go build -o build/windows/amd64/feltix.exe - -GOOS=darwin -go build -o build/darwin/feltix - +GOARCH=amd64 GOOS=windows go build -o build/windows/amd64/feltix.exe +GOARCH=amd64 GOOS=darwin go build -o build/darwin/feltix -# TODO: packaging... \ No newline at end of file +# TODO: packaging... diff --git a/feltix.go b/feltix.go index 79a96c1..39de742 100644 --- a/feltix.go +++ b/feltix.go @@ -17,7 +17,7 @@ import ( func main() { app := cli.NewApp() app.Name = "Feltix" - app.Version = "v0.1.1" + app.Version = "v0.1.2" app.Usage = "Generate HTML and/or PDF output from Fountain files" app.Author = "Evert Provoost" app.Email = "evert.provoost@gmail.com" @@ -47,7 +47,7 @@ func main() { }, cli.BoolFlag{ Name: "noscenenumbers, s", - Usage: "remove scnenenumbers from output", + Usage: "remove scenenumbers from output", }, }, Action: func(c *cli.Context) error { @@ -124,7 +124,7 @@ func main() { }, cli.BoolFlag{ Name: "noscenenumbers, s", - Usage: "remove scnenenumbers from output", + Usage: "remove scenenumbers from output", }, }, Action: func(c *cli.Context) error { diff --git a/snap/snapcraft.yaml b/snap/snapcraft.yaml index f9d2f0b..5fed577 100644 --- a/snap/snapcraft.yaml +++ b/snap/snapcraft.yaml @@ -1,5 +1,5 @@ name: feltix -version: "v0.1.1" +version: "v0.1.2" summary: A Fountain export tool with some extra's... description: Feltix is a parser/exporter for the Founatin format which also adds some extensions to said format. grade: devel