diff options
author | pacien | 2019-12-27 20:26:02 +0100 |
---|---|---|
committer | pacien | 2019-12-27 20:26:02 +0100 |
commit | e7175f30c10be89930b4c753f84bdd659b76a948 (patch) | |
tree | 8306c33d138d24499f966a219cdfa53edf53d649 | |
parent | c117f73ac0bd6a7230cce01c74e941ce42692204 (diff) | |
download | ldgallery-e7175f30c10be89930b4c753f84bdd659b76a948.tar.gz |
compiler: document options
-rw-r--r-- | design-notes.md | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/design-notes.md b/design-notes.md index 9d02e83..10272b0 100644 --- a/design-notes.md +++ b/design-notes.md | |||
@@ -68,12 +68,17 @@ Proposed configuration file, named `gallery.yaml` at the root of the source dire | |||
68 | 68 | ||
69 | ```yaml | 69 | ```yaml |
70 | compiler: | 70 | compiler: |
71 | # TODO: configuration options to be defined | 71 | thumbnailResolution: |
72 | width: 400 # default | ||
73 | height: 400 # default | ||
74 | |||
75 | pictureMaxResolution: # or unspecified to copy files as is | ||
76 | width: 1024 | ||
77 | height: 768 | ||
78 | |||
72 | # format normalisation? | 79 | # format normalisation? |
73 | # image maximum size? | ||
74 | # item compression? | 80 | # item compression? |
75 | # thumbnail size? | 81 | |
76 | # thumbnail generation algorithm? | ||
77 | 82 | ||
78 | viewer: | 83 | viewer: |
79 | # TODO: configuration options to be defined | 84 | # TODO: configuration options to be defined |