bump version to 0.7.4
This commit is contained in:
@ -1,5 +1,25 @@
|
||||
# Change log
|
||||
|
||||
## Version 0.7.4 (2022/11/05)
|
||||
|
||||
### Bugs Fixed
|
||||
|
||||
* [#260](https://github.com/SamR1/FitTrackee/issues/260) - Files size is not checked in zip archive
|
||||
* [#261](https://github.com/SamR1/FitTrackee/issues/261) - The API should return an error when the number of files in an archive exceeds the limit
|
||||
|
||||
Note: archive import still needs some improvements (see [#89](https://github.com/SamR1/FitTrackee/issues/89))
|
||||
|
||||
### Translations
|
||||
|
||||
* [b1536fc](https://github.com/SamR1/FitTrackee/pull/262/commits/b1536fc637649c4c32a88af6d96c131f05bc1742) - fix french translations in administration
|
||||
|
||||
### Documentation
|
||||
|
||||
* [#257](https://github.com/SamR1/FitTrackee/issues/257) - Add client_max_body_size note to example nginx config
|
||||
|
||||
Thanks to @jat255
|
||||
|
||||
|
||||
## Version 0.7.3 (2022/11/01)
|
||||
|
||||
### Features and enhancements
|
||||
|
@ -105,9 +105,9 @@ Administration
|
||||
The following parameters can be set:
|
||||
|
||||
- active users limit. If 0, registration is enabled (no limit defined)
|
||||
- maximum size of uploaded files
|
||||
- maximum size of gpx file (individually uploaded or in a zip archive) (*changed in 0.7.4*)
|
||||
- maximum size of zip archive
|
||||
- maximum number of files in the zip archive. If an archive contains more files, only the configured number of files is processed, without raising errors.
|
||||
- maximum number of files in the zip archive (*changed in 0.7.4*)
|
||||
- administrator email for contact (*new in 0.6.0*)
|
||||
|
||||
.. warning::
|
||||
|
@ -480,13 +480,13 @@ Production environment
|
||||
.. warning::
|
||||
| Note that FitTrackee is under heavy development, some features may be unstable.
|
||||
|
||||
- Download the last release (for now, it is the release v0.7.3):
|
||||
- Download the last release (for now, it is the release v0.7.4):
|
||||
|
||||
.. code:: bash
|
||||
|
||||
$ wget https://github.com/SamR1/FitTrackee/archive/v0.7.3.tar.gz
|
||||
$ tar -xzf v0.7.3.tar.gz
|
||||
$ mv FitTrackee-0.7.3 FitTrackee
|
||||
$ wget https://github.com/SamR1/FitTrackee/archive/v0.7.4.tar.gz
|
||||
$ tar -xzf v0.7.4.tar.gz
|
||||
$ mv FitTrackee-0.7.4 FitTrackee
|
||||
$ cd FitTrackee
|
||||
|
||||
- Create **.env** from example and update it
|
||||
@ -606,13 +606,13 @@ Prod environment
|
||||
|
||||
- Change to the directory where FitTrackee directory is located
|
||||
|
||||
- Download the last release (for now, it is the release v0.7.3) and overwrite existing files:
|
||||
- Download the last release (for now, it is the release v0.7.4) and overwrite existing files:
|
||||
|
||||
.. code:: bash
|
||||
|
||||
$ wget https://github.com/SamR1/FitTrackee/archive/v0.7.3.tar.gz
|
||||
$ tar -xzf v0.7.3.tar.gz
|
||||
$ cp -R FitTrackee-0.7.3/* FitTrackee/
|
||||
$ wget https://github.com/SamR1/FitTrackee/archive/v0.7.4.tar.gz
|
||||
$ tar -xzf v0.7.4.tar.gz
|
||||
$ cp -R FitTrackee-0.7.4/* FitTrackee/
|
||||
$ cd FitTrackee
|
||||
|
||||
- Update **.env** if needed (see `Environment variables <installation.html#environment-variables>`__).
|
||||
@ -733,6 +733,14 @@ Examples (to update depending on your application configuration and given distri
|
||||
ssl_certificate fullchain.pem;
|
||||
ssl_certificate_key privkey.pem;
|
||||
|
||||
## this parameter controls how large of a file can be
|
||||
## uploaded, and defaults to 1MB. If you change the FitTrackee
|
||||
## settings to allow larger uploads, you'll need to change this
|
||||
## setting by uncommenting the line below and setting the size limit
|
||||
## you want. Set to "0" to prevent nginx from checking the
|
||||
## request body size at all
|
||||
# client_max_body_size 1m;
|
||||
|
||||
location / {
|
||||
proxy_pass http://127.0.0.1:5000;
|
||||
proxy_redirect default;
|
||||
|
Reference in New Issue
Block a user