Skip to content

Commit

Permalink
update readme and downloads - fixed the downloaded folder containing …
Browse files Browse the repository at this point in the history
…invalid config file name
  • Loading branch information
rushfive committed Mar 27, 2019
1 parent 931c4a9 commit 3c8dfac
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 9 deletions.
2 changes: 1 addition & 1 deletion CLI/R5.FFDB.CLI/ConfigureRunInfoBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ internal static RunInfoBuilder.RunInfoBuilder Create()
.Add(UpdateRosteredPlayers.GetCommand());

builder.Version.Set(@"
Current version is 1.0.0-alpha.1
Current version is 1.0.0-alpha.2
For more info and docs:
https://github.com/rushfive/FFDB");
Expand Down
2 changes: 1 addition & 1 deletion CLI/R5.FFDB.CLI/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ private static string GetConfigFilePath(RunInfoBase runInfo)
if (!File.Exists(path))
{
throw new InvalidOperationException("Failed to find config file. Ensure that you either include it as a program option "
+ "or that the file exists in the same dir as the program exe.");
+ "or that the file exists (named as 'ffdb_config.json') in the same dir as the program exe.");
}
}

Expand Down
10 changes: 4 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,10 @@ Download the latest compiled CLI programs from the list below to get started. Th

OS | Download | Notes | SHA256 Hash
---|---|---|---
Windows x64 | [win-x64.zip - 30.5MB](https://github.com/rushfive/FFDB/releases/download/v1.0.0-alpha.1/win-x64.zip) | | 7A52CFF8186CA3CD9A9837F0A95344E9BA0C2BA746582AFE08F4B6FED5E1B592
Windows x86 | [win-x86.zip - 27.6MB](https://github.com/rushfive/FFDB/releases/download/v1.0.0-alpha.1/win-x86.zip) | | 45DACA1CBB4121A6D6D0884C75E4C8283B01ADC7C21266ECE53CA11B1E4AC8C8
OSX x64 | [osx-x64.tar - 72.5MB](https://github.com/rushfive/FFDB/releases/download/v1.0.0-alpha.1/osx-x64.tar) | Minimum OS version is macOS 10.12 Sierra | 5898F611AA5317821B61AC55DE700F525B555C60C975774F5B3E2E98EE1AB0C3
Linux x64 | [linux-x64.tar - 78MB](https://github.com/rushfive/FFDB/releases/download/v1.0.0-alpha.1/linux-x64.tar) | Most desktop distributions like CentOS, Debian, Fedora, Ubuntu and derivatives | 98BDE72ACDCF3C1E2C794686F5443F9D2F9CE1EDC7FB7A01C8F05352F0BC44EB
Windows x64 | [win-x64.zip - 30.5MB](https://github.com/rushfive/FFDB/releases/download/v1.0.0-alpha.1/win-x64.zip) | | 2628E4D69E0575244B7896EB6B42091050BF260C41EA1992EE5859249B0C4083
Windows x86 | [win-x86.zip - 27.6MB](https://github.com/rushfive/FFDB/releases/download/v1.0.0-alpha.1/win-x86.zip) | | 58BD545E2ED494EB37A4D0C081D3A45FEBE31D8F56E81F15DCC247E923B3193A
OSX x64 | [osx-x64.tar - 72.5MB](https://github.com/rushfive/FFDB/releases/download/v1.0.0-alpha.1/osx-x64.tar) | Minimum OS version is macOS 10.12 Sierra | FAD3BADCB9CE539F628C8B7B72BDCDAC3DA3D875D2EAE789D167C204447AFE43
Linux x64 | [linux-x64.tar - 78MB](https://github.com/rushfive/FFDB/releases/download/v1.0.0-alpha.1/linux-x64.tar) | Most desktop distributions like CentOS, Debian, Fedora, Ubuntu and derivatives | 26FCA6EEB6552860DB90AC33030E3965AE2EAC7F400E71DABD7C2F0CF16E2BFC

If you need the compiled program for a different environment, you can either:

Expand Down Expand Up @@ -114,8 +114,6 @@ Just a few notes about data files before diving in:

##### Configuration File

__Warning: I made an error where the downloaded folder contains the name "ffdb_config.template.json", but the program searches its directory for "ffdb_config.json". I'll be updating the downloads soon, but for now, you can just rename the file to "ffdb_config.json" to get it working.__

There's a configuration file required to use the CLI. Below's the template:

```
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 1.0.0-alpha.1
version: 1.0.0-alpha.2
image: Visual Studio 2017
configuration: Release

Expand Down

0 comments on commit 3c8dfac

Please sign in to comment.