v1.1.2 (1)

General bug fixes. This update is recommended for everyone.
This commit is contained in:
Deja
2024-08-22 14:33:12 +00:00
parent bb247bafc0
commit b8e22740e2
5 changed files with 24 additions and 8 deletions

View File

@@ -2,18 +2,24 @@
A simple and efficient server emulator for DVDFab products; including DVDFab, StreamFab, MusicFab and more...
## Mirrors
_**I do not have a GitHub repository for this project. If you see this project on GitHub, it is an unofficial mirror. The only official source is [The CDM-Project](https://cdm-project.com)**_
## Installation
Download the distribution (`DVDFabServerEmulator.zip`) and unpack it to a directory you can easily access.
Download the [latest distribution (`DVDFabServerEmulator.zip`)](https://cdm-project.com/Deja/DVDFabServerEmulator/releases/latest) and unpack it to a directory you can easily access, such as your (`Documents`) folder.
Afterwards, run the runtime script (`start.bat`) and enjoy! You can now install and use any DVDFab software locally without having to connect to external authentication servers.
Afterwards, run the runtime script (`start.bat`) and enjoy! You can now install and use any DVDFab software locally without having to connect to any external authentication servers.
Please note that you will need to keep the emulator/proxy running whilst using DVDFab software.
It is recommended to run the clean-up script (`stop.bat`) to disconnect from the local proxy after you're done using it, as it can interfere with other programs.
_**It is a requirement for you to press (`CTRL-C`) to disconnect from the local proxy after you're done using it, as it can interfere with other programs.**_
_If you closed the emulator without pressing (`CTRL-C`), you can run the clean-up script (`stop.bat`)._
## Notes
This project is not affiliated with StreamFab or any other subsidiary of DVDFab, and does not contain any copyrighted work.
This software is only intended to allow legitimately licensed users of the DVDFab software suite to use their rightfully purchased software without having to connect to an external authentication server, it is not intended to promote or encourage piracy of any kind, and should only be used by legitimate owners of DVDFab software.
This software is only intended to allow legitimately licensed users of the DVDFab software suite to use their rightfully purchased software without having to connect to any external authentication servers, it is not intended to promote or encourage piracy of any kind, and should only be used by legitimate owners of DVDFab software.

View File

@@ -1,6 +1,6 @@
{
"name": "dvdfabserveremulator",
"version": "1.1.1",
"version": "1.1.2",
"description": "A simple and efficient server emulator for DVDFab products; including DVDFab, StreamFab, MusicFab and more...",
"main": "index.js",
"scripts": {

View File

@@ -1,6 +1,16 @@
@echo off
if "%~1"=="-FIXED_CTRL_C" (
SHIFT
) ELSE (
CALL <NUL %0 -FIXED_CTRL_C %*
GOTO :EOF
)
cd /d %~dp0
@call npm install
setx http_proxy "http://localhost:8000"
setx https_proxy "http://localhost:8000"
start node %~dp0"index.js"
cls
node .
setx http_proxy ""
setx https_proxy ""
exit /b 0

View File

@@ -1,5 +1,5 @@
@echo off
taskkill /f /im node.exe*
taskkill /f /im "node.exe*"
setx http_proxy ""
setx https_proxy ""
exit /b 0

View File

@@ -1 +1 @@
6194
6195