Skip to content

Commit

Permalink
Release v0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
eprovst committed Jan 7, 2018
1 parent 01723e8 commit b20a909
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 19 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Install on Linux:
`snap install feltix`
17 changes: 4 additions & 13 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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...
# TODO: packaging...
6 changes: 3 additions & 3 deletions feltix.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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 {
Expand Down Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion snap/snapcraft.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit b20a909

Please # to comment.