You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- **Mouse Positioning Fix:** Resolved an issue where the mouse position was incorrect when the remote desktop is smaller than the local desktop in mirror mode. The mouse is now accurately positioned across screens of different sizes.
- **`CTRL+[A-Z]` Shortcut Fix for Windows:** Fixed a bug on the Windows client where `CTRL + [A-Z]` keyboard shortcuts were not functioning properly. Shortcuts are now correctly processed.
- **Connection Window Enhancements:** Pressing ESC on the connection window now closes the application. Pressing ENTER or RETURN starts the connection process immediately.
Copy file name to clipboardExpand all lines: README.md
+22-4Lines changed: 22 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -39,14 +39,25 @@ The project was renamed to Arcane to avoid the generic nature of the previous na
39
39
40
40
## Quick Setup ([PyPi.org](https://pypi.org))
41
41
42
-
The recommended way to install and launch the Arcane viewer is to first create a virtual environment. This can be done using **virtualenv** as follows:
42
+
*Creating a virtual environment is recommended to avoid conflicts with other Python packages but is not required.*
43
43
44
44
```bash
45
45
pip install virtualenv
46
46
python -m venv venv
47
+
```
48
+
49
+
### macOS / Linux
50
+
51
+
```bash
47
52
source venv/bin/activate
48
53
```
49
54
55
+
### Windows
56
+
57
+
```bash
58
+
.\venv\Scripts\activate
59
+
```
60
+
50
61
You can either install the official package from PyPi.org:
51
62
52
63
```bash
@@ -71,10 +82,11 @@ For detailed instructions on how to use and configure the Arcane Server, please
71
82
72
83
## Version Table
73
84
74
-
| Version | Protocol Version | Release Date | Compatible Servers |
| 1.0.5b | 5.0.1 | 22 August 2024 |[1.0.4](https://github.com/PhrozenIO/ArcaneServer/releases/tag/1-0-4)|
77
-
| 1.0.6 | 5.0.2 | 17 September 2024 ||
88
+
| 1.0.6 | 5.0.2 | 17 September 2024 |[1.0.5](https://github.com/PhrozenIO/ArcaneServer/releases/tag/1-0-5)|
89
+
| 1.0.7 | 5.0.2 | 30 September 2024 |[1.0.5](https://github.com/PhrozenIO/ArcaneServer/releases/tag/1-0-5)|
78
90
79
91
> ⓘ You can use any version of the viewer with any version of the server, as long as the protocol version matches. The protocol version ensures compatibility between the viewer and the server.
80
92
@@ -104,6 +116,12 @@ For detailed instructions on how to use and configure the Arcane Server, please
104
116
105
117
## Change Log
106
118
119
+
### Version 1.0.7
120
+
121
+
-**Mouse Positioning Fix:** Resolved an issue where the mouse position was incorrect when the remote desktop is smaller than the local desktop in mirror mode. The mouse is now accurately positioned across screens of different sizes.
122
+
-**`CTRL+[A-Z]` Shortcut Fix for Windows:** Fixed a bug on the Windows client where `CTRL + [A-Z]` keyboard shortcuts were not functioning properly. Shortcuts are now correctly processed.
123
+
-**Connection Window Enhancements:** Pressing ESC on the connection window now closes the application. Pressing ENTER or RETURN starts the connection process immediately.
124
+
107
125
### Version 1.0.6
108
126
109
127
-[x]**Arcane Protocol Update:** The protocol has been upgraded to version 5.0.2, bringing support for several server improvements, including dynamic display resolution updates, HDPI settings changes, and Secure Desktop support for Remote Desktop Streaming and Input (Mouse, Keyboard, Clipboard).]
0 commit comments