Skip to content

Commit 0ca8ea3

Browse files
committed
Prepare v1.103.3 release
1 parent 8eb50a3 commit 0ca8ea3

File tree

2 files changed

+22
-4
lines changed

2 files changed

+22
-4
lines changed

RELEASES.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
Version 0.103.3 (2024-02-21)
2+
============================
3+
4+
Bug fixes
5+
---------
6+
7+
* Fix the mouse wheel not working depending on the cursor's position.
8+
* Fix window size limits only taking the primary monitor's resolution into account. Now uses whichever monitor the window is currently on.
9+
* Fix full screen only working on the primary monitor. Now uses whichever monitor the window is currently on.
10+
* Fix the game's window being moved incorrectly when placed on a monitor either above or to the left of the primary monitor.
11+
* Remember the window's position before entering full screen mode rather than always returning to the center of the primary monitor.
12+
* The `position` config in `d2dx.cfg` can now be used to set a negative value to support position left and above the primary monitor. `[-1, -1]` is still used as a special value to mean the center of the primary monitor.
13+
14+
Other
15+
-----
16+
17+
* The `position` config in `d2dx.cfg` now refers to the center of the window, not the top left.
18+
119
Version 0.103.2 (2024-02-19)
220
============================
321

src/d2dx/d2dx.rc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ LANGUAGE LANG_NEUTRAL, SUBLANG_DEFAULT
2525
//
2626

2727
VS_VERSION_INFO VERSIONINFO
28-
FILEVERSION 0,103,2,0
29-
PRODUCTVERSION 0,103,2,0
28+
FILEVERSION 0,103,3,0
29+
PRODUCTVERSION 0,103,3,0
3030
FILEFLAGSMASK 0x3fL
3131
#ifdef _DEBUG
3232
FILEFLAGS 0x1L
@@ -43,12 +43,12 @@ BEGIN
4343
BEGIN
4444
VALUE "CompanyName", "Jarcho"
4545
VALUE "FileDescription", "Glide wrapper for D2"
46-
VALUE "FileVersion", "0.103.2.0"
46+
VALUE "FileVersion", "0.103.3.0"
4747
VALUE "InternalName", "d2dx.dll"
4848
VALUE "LegalCopyright", "Copyright (C) 2024"
4949
VALUE "OriginalFilename", "d2dx.dll"
5050
VALUE "ProductName", "D2DX"
51-
VALUE "ProductVersion", "0.103.2.0"
51+
VALUE "ProductVersion", "0.103.3.0"
5252
END
5353
END
5454
BLOCK "VarFileInfo"

0 commit comments

Comments
 (0)