Version, readme and changelog updated

This commit is contained in:
Kiel42 2019-10-28 18:27:38 +01:00 committed by CMDR-Kiel42
parent c27d74ef01
commit 9006c36c72
3 changed files with 19 additions and 2 deletions

View File

@ -2,6 +2,13 @@
All notable changes to this project will be documented in this file.
## 2.2.0
- Now supports any CSV having columns named "System Name" and "Jumps". The "Jumps" column is optional
- Supports text files given by EDTS (it is the only .txt file supported for now)
- The "Start System" in the potter is now automatically set to the one you are currently in
- Fixed a bug where the plugin could make EDMC crash by accessing TkInter state in a thread
## 2.1.4
- Autosaves your progress more often in case EDMC crashes

View File

@ -13,7 +13,17 @@ This plugin's purpose is to automatically copy to your clipboard the next waypoi
## How to use
You can either plot your route directly from EDMC, or you can import a CSV file from [Spansh](https://www.spansh.co.uk/plotter)
You can either plot your route directly from EDMC by clicking the "Plot Route" button, or you can import a CSV file from [Spansh](https://www.spansh.co.uk/plotter)
You can also create your own CSV file, as long as it contains the columns "System Name" and "Jumps" (that last one is optional).
A valid CSV file could look like:
```csv
System Name,Jumps
Saggitarius A*,5
Beagle Point,324
```
You can also use a .txt file created with [EDTS](https://bitbucket.org/Esvandiary/edts/wiki/edts)
Once your route is plotted, and every time you reach a waypoint, the next one is automatically copied to your clipboard.

View File

@ -1 +1 @@
2.1.4
2.2.0