Skip to content

Commit

Permalink
Updated the readme.md, changelog.md.
Browse files Browse the repository at this point in the history
  • Loading branch information
jszuminski committed Sep 24, 2024
1 parent bf03844 commit a201fa2
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 4.1.0

_New Features:_

- Added `uploadSizeLimit` option (`OTHER_UPLOAD_SIZE_LIMIT` env) [(#580)](https://github.com/highcharts/node-export-server/pull/580).

# 4.0.2

_Hotfix_:
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,8 @@ The format, along with its default values, is as follows (using the recommended
"listenToProcessExits": true,
"noLogo": false,
"hardResetPage": false,
"browserShellMode": true
"browserShellMode": true,
"uploadSizeLimit": 52428800
},
"debug": {
"enable": false,
Expand Down Expand Up @@ -371,6 +372,7 @@ These variables are set in your environment and take precedence over options fro
- `OTHER_NO_LOGO`: Skip printing the logo on a startup. Will be replaced by a simple text (defaults to `false`).
- `OTHER_HARD_RESET_PAGE`: Determines whether the page's content should be reset from scratch, including Highcharts scripts (defaults to `false`).
- `OTHER_BROWSER_SHELL_MODE`: Decides whether to enable older but much more performant _shell_ mode for the browser (defaults to `true`).
- `OTHER_UPLOAD_SIZE_LIMIT`: Determines the maximum size of the uploaded file in bytes. The default is 50MB (52428800 bytes).

### Debugging Config
- `DEBUG_ENABLE`: Enables or disables debug mode for the underlying browser (defaults to `false`).
Expand Down

0 comments on commit a201fa2

Please sign in to comment.