Bladeren bron

Bumped version to v1.1.0

master
Roxie Gibson 4 jaren geleden
bovenliggende
commit
2b73943ee1
Geen bekende sleutel gevonden voor deze handtekening in de database
2 gewijzigde bestanden met toevoegingen van 28 en 1 verwijderingen
  1. +27
    -0
      changelog.md
  2. +1
    -1
      readme.md

+ 27
- 0
changelog.md Bestand weergeven

# 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 Bestand weergeven

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. 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 ```sh
supper -c ~/.config/supper.yaml -o "Seating Plan {:%Y-%m-%d}.csv" supper -c ~/.config/supper.yaml -o "Seating Plan {:%Y-%m-%d}.csv"

Laden…
Annuleren
Opslaan