Skip to content

Commit

Permalink
update contrib notes, change progress colour
Browse files Browse the repository at this point in the history
  • Loading branch information
AnthonyLloyd committed Jul 9, 2018
1 parent 40c5af1 commit 19d6a83
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
7 changes: 3 additions & 4 deletions CONTRIBUTING.md
Expand Up @@ -10,11 +10,9 @@
* Visual Studio - [EditorConfig VS Extension][ec-vs]
* VS Code - [EditorConfig VScode Extension][ec-vsc]

1. You will need .NET Core [v2.0 SDK][netcore-sdk] and also [v1.1 Runtime][netcore-rt] installed (current available versions are SDK v2.1.2 and Runtime v1.1.5). The versions of Mono and .NET Core currently tested in CI can be found [here in .travis.yml][travis]
1. You will need .NET Core [v2.1 SDK][netcore-sdk] installed. The versions of Mono and .NET Core currently tested in CI can be found [here in .travis.yml][travis]

1. To build from the command line:
* Windows: `./build.cmd`
* Linux/OSX: `./build.sh`
1. You will also need [FAKE 5][fake] installed. To build run `fake build`.

1. New features:
* Make your test for your change
Expand Down Expand Up @@ -73,3 +71,4 @@ Futhermore, in no particular order;
[netcore-rt]: https://github.com/dotnet/core/blob/master/release-notes/download-archive.md#net-core-11
[travis]: https://github.com/haf/expecto/blob/master/.travis.yml
[mono-dl]: http://www.mono-project.com/download/
[fake]: https://fake.build/fake-gettingstarted.html
6 changes: 3 additions & 3 deletions Expecto/Progress.fs
Expand Up @@ -22,11 +22,11 @@ type Progress =
module internal ProgressIndicator =
let originalStdout = stdout
let originalStderr = stderr
let private hideCursor = "\x1B[?25l"
let private showCursor = "\x1B[?25h"
let private hideCursor = "" //"\x1B[?25l" needs more testing
let private showCursor = "" //"\x1B[?25h"
let private animation = @"|/-\"

let private color = "\x1b[30;1m"
let private color = "\x1b[35;1m"
let private colorReset = "\x1B[0m"

let mutable private textValue = String.Empty
Expand Down

0 comments on commit 19d6a83

Please sign in to comment.