
-v3.3. -Update README.md. -Remove mention of Docker repo, as it is not maintained. -I appreciate all of the community feedback at https://github.com/zelon88/HRConvert2/issues/46. -I will come up with an official Docker solution. -Fix bug in cleanFiles() function that was causing problems with archive conversions & preventing cleanup. -Flip button CSS, so buttons don't appear quite so... upside-down... all the time. -Remove un-needed (redundant) button related CSS from HRConvert2.css. -Increase default DeleteThreshold in config.php from 30 to 60 minutes. -Remove un-needed extension being passed to the convertDrawings() function. -Fix drawings not returning a valid filename. -Conversions would complete, but not download. -Tested ImageMagick support for SVG, could not get it to work. -Tested Dia support for converting things into PNG, BMP, and JPG. Got PNG to work, so added support.
34 lines
1.5 KiB
PHP
34 lines
1.5 KiB
PHP
<?php
|
|
// / -----------------------------------------------------------------------------------
|
|
// / APPLICATION INFORMATION ...
|
|
// / HRConvert2, Copyright on 3/5/2024 by Justin Grimes, www.github.com/zelon88
|
|
// /
|
|
// / LICENSE INFORMATION ...
|
|
// / This project is protected by the GNU GPLv3 Open-Source license.
|
|
// / https://www.gnu.org/licenses/gpl-3.0.html
|
|
// /
|
|
// / APPLICATION INFORMATION ...
|
|
// / This application is designed to provide a web-interface for converting file formats
|
|
// / on a server for users of any web browser without authentication.
|
|
// /
|
|
// / FILE INFORMATION ...
|
|
// / v3.3.
|
|
// / This file contains the current HRConvert2 version for update verification purposes.
|
|
// /
|
|
// / HARDWARE REQUIREMENTS ...
|
|
// / This application requires at least a Raspberry Pi Model B+ or greater.
|
|
// / This application will run on just about any x86 or x64 computer.
|
|
// /
|
|
// / DEPENDENCY REQUIREMENTS ...
|
|
// / This application requires Debian Linux (w/3rd Party audio license),
|
|
// / Apache 2.4, PHP 8+, LibreOffice, Unoconv, ClamAV, Tesseract, Rar, Unrar, Unzip,
|
|
// / 7zipper, FFMPEG, PDFTOTEXT, Dia, PopplerUtils, MeshLab, Mkisofs & ImageMagick.
|
|
// /
|
|
// / <3 Open-Source
|
|
// / -----------------------------------------------------------------------------------
|
|
|
|
|
|
// / -----------------------------------------------------------------------------------
|
|
// / The version of this HRConvert2 installation.
|
|
$Version = 'v3.3';
|
|
// / -----------------------------------------------------------------------------------
|