Skip to content

Commit 2c5e7ca

Browse files
author
Mathias Nestler
committed
Update CSFML/SFML dependency to v2.3
1 parent e3713d5 commit 2c5e7ca

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

README.md

+6-3
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,17 @@ A talking countdown written in golang.
44

55
### Installation
66

7-
Unfortunately this application has dependencies. Currently there is no os independent possiblity to play audio files in golang :(
7+
Unfortunately this application has dependencies. Currently (2015-04-11) there is no os independent possiblity to play audio files in golang :(
8+
9+
Install [CSFML](http://www.sfml-dev.org/download/csfml/) (tested with `v2.3`).
810

911
#### Linux
1012

11-
Install [CSFML](http://www.sfml-dev.org/download/csfml/) and [SFML](http://www.sfml-dev.org/download/sfml/2.2/). Then just download the [godown](https://github.com/MMore/godown/releases/download/v1.0.0/godown) binary and use it.
13+
Install [SFML](http://www.sfml-dev.org/download/sfml/2.3/). Then just download the [godown](https://github.com/MMore/godown/releases/download/v1.0.1/godown) binary and use it.
1214

1315
#### Mac OS X
1416

15-
Clone this repository to your machine and execute `make install_deps_osx`. This installs the dependencies for you. Then just just download the [godown](https://github.com/MMore/godown/releases/download/v1.0.0/godown) binary and use it.
17+
Clone this repository to your machine and execute `make install_deps_osx`, which installs the dependencies for you. Then just just download the [godown](https://github.com/MMore/godown/releases/download/v1.0.1/godown) binary and use it.
1618

1719
If you already have a working CSFML and SFML, you can install it from source with `go get github.com/MMore/godown`.
1820

@@ -29,6 +31,7 @@ Args:
2931
### Tested Environments
3032

3133
* Mac OS X Yosemite and go1.4.1
34+
* Mac OS X High Sierra and go1.8.1
3235

3336
### License
3437
[LICENSE](LICENSE)

main.go

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
package main
22

33
import (
4-
sf "bitbucket.org/krepa098/gosfml2"
54
"fmt"
5+
sf "github.com/manyminds/gosfml"
6+
"gopkg.in/alecthomas/kingpin.v1"
67
"os"
78
"time"
8-
"gopkg.in/alecthomas/kingpin.v1"
99
)
1010

11-
1211
type mint int
1312
type FullTime struct {
1413
hours mint
@@ -137,7 +136,7 @@ var (
137136
)
138137

139138
func main() {
140-
app.Version("1.0.0")
139+
app.Version("1.0.1")
141140
kingpin.MustParse(app.Parse(os.Args[1:]))
142141

143142
h, m, s := separateDuration(*duration)

0 commit comments

Comments
 (0)