-
Notifications
You must be signed in to change notification settings - Fork 6
/
NEWS
60 lines (38 loc) · 1.48 KB
/
NEWS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
2021-03-23 1.0.5
* Remove remnant CLI file.
* Better error message when upload response from server has unexpected format.
2021-03-15 1.0.4
* Loosen httpx version restriction.
2021-01-07 1.0.3
* Fix "Unsupported file type: <some weird MIME type>" error message.
2020-12-08 1.0.2
* Remove left-over CLI entry point from setup script.
* Try harder to provide some kind of error message.
2020-11-09 1.0.1
* Remove debugging print()
2020-10-31 1.0.0
* Move CLI tool into a separate project: https://github.com/plotski/imgbox-cli
* Make everything asynchronous.
* Gallery.add() expects a sequence of file paths.
* New Gallery.upload() uploads a single image.
2020-08-26 0.3.2
* Print error message if no CLI arguments are given instead of creating an
empty gallery.
* When reading image file paths from stdin, ignore empty strings and strings
that contain whitespace only.
* Report error before creating a new gallery if image file doesn't exist or if
it is not readable or too large.
* For unexpected exceptions, actually print the exception, not only the
traceback.
2020-07-15 0.3.1
* Catch timeouts and other exceptions from HTTP requests
2020-06-18 0.3.0
* Read newline-separated file paths from stdin
2020-06-17 0.2.1
* Fix typo in examples
2020-06-17 0.2.0
* Redesign Gallery class and CLI tool
* Added options --adult and --square-thumbs
* Option --thumbnail-size was renamed to --thumb-width
2020-06-14 0.1.0
* Initial release