Browse Source

Bumped version to v1.1.0

master
Roxie Gibson 4 years ago
parent
commit
2b73943ee1
No known key found for this signature in database
2 changed files with 28 additions and 1 deletions
  1. +27
    -0
      changelog.md
  2. +1
    -1
      readme.md

+ 27
- 0
changelog.md View File

@@ -0,0 +1,27 @@
# Changelog

## v1.1.0

- Added ability to make multiple seating charts weeks in advance
- Changed datetime formatting on filenames to use the start of the week instead of current day
- Refactored script

### Install instructions

Either git pull from inside your source dir or clone this repo again.

```sh
cd supper && git pull
```

Update this package with pip

```sh
pip install -U .
```

You should now be able to run the updated version of the script.

## v1.0.0

Script created :)

+ 1
- 1
readme.md View File

@@ -118,7 +118,7 @@ For example, we can generate a CSV in our user's Documents folder and name it "W
supper -c ~/.config/supper.yaml -o "~/Documents/Who's in office" # If you don't provide a .csv file extension, it will be added for you.
```

This also supports datetime formatting. This can be done using Python's formatting codes for datetime [which you can find the docs for here.](https://docs.python.org/3.7/library/datetime.html#strftime-and-strptime-behavior) When the script is executed, the datetime provided in the string will be set using `datetime.now()`
This also supports datetime formatting. This can be done using Python's formatting codes for datetime [which you can find the docs for here.](https://docs.python.org/3.7/library/datetime.html#strftime-and-strptime-behavior) When the script is executed, the datetime provided in the string will be set using the start of the weeks date (Monday).

```sh
supper -c ~/.config/supper.yaml -o "Seating Plan {:%Y-%m-%d}.csv"

Loading…
Cancel
Save