From 12f4f539c09457bd2bb11600d269602cdf648d14 Mon Sep 17 00:00:00 2001 From: Torge Matthies Date: Sat, 31 Jul 2021 22:54:30 +0200 Subject: [PATCH] Release 2.0.0 Changes since 1.0.0: - Use a pipe instead of an eventfd on non-Linux platforms, so it might work on other kernels. - Proper command line argument parsing - pass --help to see the available options. - Optimized startup. - Added an option to make the process a system process under Wine. This doesn't do anything anymore since conhost got added to Wine, but it used to function like the service mode, where the process would not block prefix shutdown. - The process priority is now automatically lowered to "Below Normal". - The executable was split into two parts, a .exe and a .dll.so, to separate the Windows and *nix parts. - The service mode got fixed - Wine now waits for the proxy to finish starting up before running anything else. - Many other small fixes and improvements. Look at the commit log to see the boring details. --- .gitignore | 1 - .version | 3 +++ 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 .version diff --git a/.gitignore b/.gitignore index 2b19276..8bd2217 100644 --- a/.gitignore +++ b/.gitignore @@ -8,7 +8,6 @@ # E-Mail address: openglfreak@googlemail.com # PGP key fingerprint: 0535 3830 2F11 C888 9032 FAD2 7C95 CD70 C9E8 438D -/.version /obj/.version /obj/version.h /obj/version.res diff --git a/.version b/.version new file mode 100644 index 0000000..c3266f4 --- /dev/null +++ b/.version @@ -0,0 +1,3 @@ +major_version=2 +minor_version=0 +patch_version=0