This commit is contained in:
Milos Stojanovic
2019-09-05 14:12:32 +02:00
parent 1f7d9c68e6
commit e0cc5772a5
3 changed files with 6 additions and 2 deletions

View File

@@ -1,5 +1,9 @@
# Chanelog # Chanelog
## 7.1.0 - 2019-09-05
* Fix for UTF8 filename issues (#12) - may brake existing download links generated with previous versions
## 7.0.1 - 2019-08-01 ## 7.0.1 - 2019-08-01
* Fixed file upload bug - merging chunks after upload was failing * Fixed file upload bug - merging chunks after upload was failing

2
dist/index.php vendored
View File

@@ -35,7 +35,7 @@ if (! defined('APP_PUBLIC_PATH')) {
} }
define('APP_PUBLIC_DIR', __DIR__); define('APP_PUBLIC_DIR', __DIR__);
define('APP_VERSION', '7.0.1'); define('APP_VERSION', '7.1.0');
use Filegator\App; use Filegator\App;
use Filegator\Config\Config; use Filegator\Config\Config;

View File

@@ -9,7 +9,7 @@ currentMenu: install
## Download precompiled build ## Download precompiled build
Precompiled build is created for non-developers. In this version, the frontend (html, css and javascript) is compiled for you and the source code is removed so the final archive contains only minimum files. Precompiled build is created for non-developers. In this version, the frontend (html, css and javascript) is compiled for you and the source code is removed so the final archive contains only minimum files.
- Download: [v7.0.1](https://github.com/filegator/static/raw/master/builds/filegator_v7.0.1.zip) - Download: [v7.1.0](https://github.com/filegator/static/raw/master/builds/filegator_v7.1.0.zip)
- Unzip files and upload them to your PHP server - Unzip files and upload them to your PHP server
- Make sure you webserver can read and write to `/storage` and `/private` folders - Make sure you webserver can read and write to `/storage` and `/private` folders
- Set the website document root to `/dist` directory. This is also known as 'public' folder. - Set the website document root to `/dist` directory. This is also known as 'public' folder.