- Joined
- Feb 23, 2018
- Messages
- 225
- Reaction score
- 35
- Achievement
Hi everyone !
There is some important bugs about macros, security issue and leak of performance, this bugs has been fixed and re uploaded. Please download the patch and update your viewer to ensure it's work properly and improve performance !
You may download the patch from your panel manually or use this script for easy update.
For windows, create a batch file inside the viewer folder, for example, I create a file named 9h_update.bat
Copy the code bellow to the file, replace PATCH_URL with the download url base on your current version (32/64 bit), save and run it.
For linux, open terminal, cd to the viewer folder
And then use this commands, replace PATCH_URL with the download url from the panel, you may not need to install p7zip if its already installed on your computer.
Sorry for the inconvenience !
Thanks all
There is some important bugs about macros, security issue and leak of performance, this bugs has been fixed and re uploaded. Please download the patch and update your viewer to ensure it's work properly and improve performance !
You may download the patch from your panel manually or use this script for easy update.
For windows, create a batch file inside the viewer folder, for example, I create a file named 9h_update.bat

Copy the code bellow to the file, replace PATCH_URL with the download url base on your current version (32/64 bit), save and run it.
Code:
powershell -Command "(New-Object Net.WebClient).DownloadFile('PATCH_URL', '%~dp0%update.zip')"
call "%~dp0resource\7z.exe" x "%~dp0%update.zip" -y
start "" "%~dp09hmultiss.exe" --auto-start --hide-browser

And then use this commands, replace PATCH_URL with the download url from the panel, you may not need to install p7zip if its already installed on your computer.
Code:
sudo apt-get install p7zip-full
wget PATCH_URL -O ./update.zip
7z x ./update.zip -y
Thanks all