diff --git a/README.md b/README.md index b462a18dd68519f7ec7974ff54e012c09210425d..3d750ce8b45b13cddad27ac1e09d225cd4fdc1da 100644 --- a/README.md +++ b/README.md @@ -33,6 +33,16 @@ plugin.tx_sgjobs { } ``` +## Upload file size +By default the maximum file size for an upload is 5MB / 5000kB. You can change this limit in the **constants.ts** configuration file: + + settings { + ..... + # cat=plugin.tx_sgjobs/other; type=string; label=Allowed maximum file size for uploads in kB + allowedMaxFileSize = 5000 + } + + ## Backend Module The Backend module is found in the **WEB** section under the name **Job Offers**. diff --git a/composer.json b/composer.json index 2dc2396a8e5fdcb0ff5df5d70ffd5d04b263135f..ca9047cc0929121fc32341d7eac1a30f6671729d 100644 --- a/composer.json +++ b/composer.json @@ -6,7 +6,7 @@ "license": [ "GPL-2.0-or-later" ], - "version": "1.12.1", + "version": "1.13.0", "support": { "issues": "https://gitlab.sgalinski.de/typo3/sg_jobs" }, diff --git a/ext_emconf.php b/ext_emconf.php index 6ac861c04f8d25562b63da72fd2be6f4656b9681..c80606d170caa36ad902ff52574f06dbab1ba476 100644 --- a/ext_emconf.php +++ b/ext_emconf.php @@ -4,7 +4,7 @@ $EM_CONF[$_EXTKEY] = array ( 'title' => 'Jobs', 'description' => 'Manage and display your Job offers.', 'category' => 'plugin', - 'version' => '1.12.1', + 'version' => '1.13.0', 'state' => 'stable', 'uploadfolder' => FALSE, 'createDirs' => '',