Skip to content

Commit b2ceea5

Browse files
committed
Quick Save
1 parent 48906ad commit b2ceea5

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
BSD 2-Clause License
22

3-
Copyright (c) 2017, R. S. Doiel
3+
Copyright (c) 2019, R. S. Doiel
44
All rights reserved.
55

66
Redistribution and use in source and binary forms, with or without

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
PROJECT = scripttool
55

6-
VERSION = $(shell grep -m1 'Version = ' $(PROJECT).go | cut -d\" -f 2)
6+
VERSION = $(shell grep -m1 'Version = `' $(PROJECT).go | cut -d\` -f 2)
77

88
BRANCH = $(shell git branch | grep '* ' | cut -d\ -f 2)
99

cmd/scripttool/scripttool.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//
33
// BSD 2-Clause License
44
//
5-
// Copyright (c) 2017, R. S. Doiel
5+
// Copyright (c) 2019, R. S. Doiel
66
// All rights reserved.
77
//
88
// Redistribution and use in source and binary forms, with or without
@@ -77,7 +77,7 @@ Listing characters in *screenplay.fountain* or in *screenplay.fdx*.
7777
7878
BSD 2-Clause License
7979
80-
Copyright (c) 2017, R. S. Doiel
80+
Copyright (c) 2019, R. S. Doiel
8181
All rights reserved.
8282
8383
Redistribution and use in source and binary forms, with or without

convertions.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
//
88
// BSD 2-Clause License
99
//
10-
// Copyright (c) 2017, R. S. Doiel
10+
// Copyright (c) 2019, R. S. Doiel
1111
// All rights reserved.
1212
//
1313
// Redistribution and use in source and binary forms, with or without

scripttool.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
//
88
// BSD 2-Clause License
99
//
10-
// Copyright (c) 2017, R. S. Doiel
10+
// Copyright (c) 2019, R. S. Doiel
1111
// All rights reserved.
1212
//
1313
// Redistribution and use in source and binary forms, with or without
@@ -47,7 +47,7 @@ import (
4747
)
4848

4949
const (
50-
Version = "v0.0.3"
50+
Version = `v0.0.4`
5151
)
5252

5353
// FdxToFountain converts the an input buffer from .fdx to a .fountain format.

scripttool_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
//
88
// BSD 2-Clause License
99
//
10-
// Copyright (c) 2017, R. S. Doiel
10+
// Copyright (c) 2019, R. S. Doiel
1111
// All rights reserved.
1212
//
1313
// Redistribution and use in source and binary forms, with or without

0 commit comments

Comments
 (0)