-v3.3.7.
-Clean up config.php comments.
-Delete "SUPPORTED_FORMAT_INFORMATION.txt" development work file.
-Finish updating and adding support to the list of supported formats using the latest ffmpeg build process.
-Added support for ~357 file formats. The total of supported formats is now up to 445. (!!!)
-Update INSTALLATION_INSTRUCTIONS.txt to reflect the ffmpeg build-from-source procedure.
-Create DOCKER_BUILD_INSTRUCTIONS.txt for me to remember how to build docker images.
-I typically develop this stuff on VMware with installed locally dependencies.
-Update Dockerfile with the latest ImageMagick and FFMPEG build process.
-Fix Docker build process, update Docker Hub.
-v3.3.6.
-Special thanks to:
Ask Ubuntu User: Lucas Walter
https://askubuntu.com/questions/1127260/imagemagick-convert-not-allowedhttps://askubuntu.com/users/27302/lucas-walter
# Open the file
sudo nano /etc/ImageMagick-6/policy.xml
# find and edit the line
<policy domain="coder" rights="none" pattern="PDF" />
# to :
<policy domain="coder" rights="read|write" pattern="PDF" />
-The above code will allow pre-installed versions to convert pdf files as images in addition to documents and OCR.
-Added CBR and CBZ support.
-They are just zip files full of jpeg images.
-We treat them as .zip files, but we use 7z to extract them because zip doesn't work for some reason.
-After they are converted to a proper archive we can convert them further.
-It could be possible to improve quality of the jpegs by creating a dedicated convertComics() function with direct output formats.
-Can we get the comic community to show the project some love to get this done? ;)
-Update the installation instructioins to allow PDF conversions as images.
-v3.3.2.
-Fix bug where the loading spinner would never disappear for archive operations.
-Update docker URL in installation instructions.
-Add victory and failure icons where the loading spinner goes for 5 seconds after a file operation.
-Add Wide GUI.
-Fix bug with GUI selection where the GET input was case sensitive, but the core was forcing it to be interpreted as lower case.
-Fix bug with GUI selection variables not being scoped properly.
-Make colors user selectable.
-Add missing div tag to convergGui2.html.
-I can't find any HTML erros in console anywhere. Yipee!!!
-Utilize POST and GET for language, GUI, and color inputs.
-Utilize the standardized sanitization procedure for these inputs.
-It was somewhat ad-hoc before, even though the global sanitized variables were already pre-prepared.
-v3.3.1.
-Move a bunch of files.
-Move versionInfo.php and config.php into the Resources folder.
-Create build folder.
-Move rc.local, rc.local.service, and a php.ini sample file in there that will be used for Docker installs.
-Move all resources into the UI\Default folder.
-Relieve the core of the logic of defining CSS, JS, and images for the UI pack. That's not very modular.
-Now the UI pack defines these in header.php.
-Resources folder is not a required part of a UI pack. So the core won't check for it,
-Although the core does define a relative path where the Resources folder, and JS, CSS, Images subfolders should go as a convinience.
-It is not required by the core to have these folders, or to organize your theme into them.
-Remove LICENSE file from the root of the repository, as this is also in the Documentation folder.
-Add a return value to cleanFiles() because I need one for the changes to verifyInstallation().
-Use the return value to make the variables $CleanedConvertLoc and $CleanedTempLoc meaningful by passing the return value to them.
-verifyInstallation() now checks config.php for $DeleteBuildEnvironment, and if true will delete the /Build folder.
-This is enabled by default to prevent attackers from using this to enumerate configuration information about the server or application.
-Improve documentation, formatting of styleCore.php for consistency/readability.
-Continue the long, ardous task of converting all the double quotes in convertGui2.php to single quotes.
-This will take a while, but I have done enough to be able to find/replace what I need.
-Remove Error 2-1 from ERROR_DESCRIPTIONS.txt because it is no longer generated by the application.
-Move supported formats to config.php so server administrators can control their own fate, if they dare.
-Default values are also listed in config.php if needed.
-Add support to remove the build environment & "development docs" that give away version info like readme.md & changelog.txt.
-Changed default color scheme from grey to blue because grey is especially gross looking to me right now.
-Fix bug where font defined in config.php was not propagating to styleCore.php.
-Fix bug with user virus scans when using ClamAV to scan an individual file for viruses.
-The scan would complete, but it would utilize both ScanCore and ClamAV when all the user asked for was ClamAV.
-Move default installation location to /DATA/HRConvert2 to make it consistent for Docker implementation.
-Start working on official Docker version.
-Minor update to installation instructions, consistency, consolidate steps.
-Added icon files to the Resources directory to be used in a future update.