https://bugs.winehq.org/show_bug.cgi?id=48761
Bug ID: 48761
Summary: ConEmu does not highlight selection
Product: Wine
Version: 5.4
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: rpisl(a)seznam.cz
Distribution: ---
ConEmu does not highlight selected text/block while selecting by mouse and
after the block is selected. The selected text/block is however correctly
highlighted after alt+tab to another application and back. It seems that some
events are not generated properly.
The selection is otherwise functional so it is a minor issue. Fixing that would
make ConEmu perfect ;-)
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=50824
Bug ID: 50824
Summary: ISdone.dll error 5, something releated to insufficient
virtual memory
Product: Wine
Version: 6.4
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: gab.pulcio(a)gmail.com
Distribution: ---
Created attachment 69642
--> https://bugs.winehq.org/attachment.cgi?id=69642
WINEDEBUG loaddll
Warning: I know I'm about to ask you to fix something releated to game repacks,
which they're illegal (provided I don't have the legal copy) but in my logic,
that's a windows releated-thing and it should be fixed, maybe not now, but at
least should be considered.
Now, fitgirl repacks crashes at random progress, while rg-mechanics repacks are
straight to the error, the same as always.
I read that in the past this was fixed so that's a regression but since no-one
has reported this and apparently no one has that problem, I'm filing this bug
as normal.
For the record: this bug happens since I installed linux, at the time Wine was
at version 6.0.
In my case, this repack is of a game that I legally own (Far Cry 3: Blood
Dragon) but I've got a capped data plan and I have to install a repack then
I'll be able to verify the game with Uplay.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=49487
Bug ID: 49487
Summary: list control custom draw in report view shows blank
item if handler clears uItemState CDIS_SELECTED flag
Product: Wine
Version: 5.0.1
Hardware: x86
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: victimofleisure(a)yahoo.com
I'm the developer of a free software application called Polymeter. The issue
occurs when running Polymeter under Mac OS / High Sierra. I have reproduced it
on multiple machines. I install my software using WineBottler (both 1.8.6 and
4.0.1 exhibited the issue). WineBottler uses WineHQ 5.0 according to their
page.
The issue is per-item background color for *selected* list control items in
report view. The usual method for achieving per-item color is to request item
notifications, and when the prepaint notification is received, set the per-item
background color (pLVCD->clrTextBk). However by default this only works for
non-selected items: selected items continue to use the system default
background color (typically a dark blue) instead of the per-item color. The
workaround is for the custom draw handler to also clear the "selected" flag
(CDIS_SELECTED) in the item state (pLVCD->uItemState). This technique is fairly
common and can be observed in the wild, e.g. here.
https://social.msdn.microsoft.com/Forums/vstudio/en-US/40234af5-a9e7-433f-a…
However in my application under WineBottler, this technique causes the list
item in question to be completely white, both text and background.
I enclose a code snippet below. This may be related to 39721 or even a
duplicate of it, but it's hard to tell because that report is not as specific
and doesn't mention selected items. If list control per-item background color
is broken in all cases regardless of selection, that would explain my issue
obviously, but that seems doubtful since many Windows programs use list control
custom draw.
Best wishes,
Chris Korda
https://victimofleisure.github.io/Polymeter/
void CMappingBar::OnListCustomDraw(NMHDR* pNMHDR, LRESULT* pResult)
{
NMLVCUSTOMDRAW* pLVCD = reinterpret_cast<NMLVCUSTOMDRAW*>(pNMHDR);
*pResult = CDRF_DODEFAULT;
if (theApp.m_bIsMidiLearn) { // if learning MIDI input
switch (pLVCD->nmcd.dwDrawStage) {
case CDDS_PREPAINT:
*pResult = CDRF_NOTIFYITEMDRAW;
break;
case CDDS_ITEMPREPAINT:
// this will NOT work with LVS_SHOWSELALWAYS; see uItemState in
NMCUSTOMDRAW doc
if (pLVCD->nmcd.uItemState & CDIS_SELECTED) { // if item
selected
pLVCD->clrTextBk = MIDI_LEARN_COLOR; // customize item
background color
// trick system into using our custom color instead of
selection color
pLVCD->nmcd.uItemState &= ~CDIS_SELECTED; // clear item's
selected flag
}
break;
}
}
}
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=43866
Bug ID: 43866
Summary: Crash while opening [彼女は天使で妹で] trial version
Product: Wine
Version: 2.18
Hardware: x86
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: howard.no1(a)163.com
Created attachment 59452
--> https://bugs.winehq.org/attachment.cgi?id=59452
Bug Report
Crash while opening [彼女は天使で妹で] trial version
Free downloading site: http://www.h-comb.biz/new_title/16/download_trial.html
MD5 (imoten_trial.exe) = 080a95479692cd197e29b9ef0a4c66d7
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=26649
Summary: painting in dialog: wrong aspect ratio
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Mac OS X 10.6
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdi32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tom98765x(a)yahoo.com
Created an attachment (id=33921)
--> (http://bugs.winehq.org/attachment.cgi?id=33921)
executable program demonstrating the bug
Drawing things inside a modeless dialog box: wrong aspect ratio, and does not
show up directly (dialog box has to be moved before). Source was from Petzold
sample (colors2), but modified a little.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=44434
Bug ID: 44434
Summary: Error: unsupported compressor 8
Product: Wine
Version: 3.0
Hardware: x86
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: wine_bz(a)ul-lange.de
Created attachment 60376
--> https://bugs.winehq.org/attachment.cgi?id=60376
Error messages after typing command winecfg
After a competed installation of Wine 3.0 on macOS 10.13.3, Kernel-Version:
Darwin 17.4.0 and entering command of "winecfg" together with some other
messages
"Error: unsupported compressor 8" have been indicated (see attached file).
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=50477
Bug ID: 50477
Summary: Presonus Studio One 5: Browser windows won't update
with scrolling (D2D-related debug)
Product: Wine
Version: 6.0-rc6
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: d2d
Assignee: wine-bugs(a)winehq.org
Reporter: moseskim84(a)gmail.com
Distribution: ---
Created attachment 69113
--> https://bugs.winehq.org/attachment.cgi?id=69113
Images
Hello,
I'm running Ubuntu 20.10 (x64), Wine RC-6 (patched dcomp.dll) and have
installed Studio One 5 Professional. There is a bug that renders it pretty
useless, and that's lack of browser window updating whenever there is scrolling
within a window. I have attached a screenshot showing the window on the left
and the associated messages on the right. If you notice the scroll bar on the
right, it continues to move but there is no update to the window. If you scroll
back and forth enough it starts to distort, but the only way to get it back to
normal is to go to another window and back. That just gets you back to the top
of the window, without any scrolling.
I have DVXK latest version installed, with esync enabled as well with no
change. GDIplus_winxp is also installed, I cannot get gdiplus to install into a
64 bit prefix even with -q.
Please let me know what else I can do to help resolve this issue. Thanks!
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47448
Bug ID: 47448
Summary: Homeworld Remastered Collection: Fullscreen broken
Product: Wine-staging
Version: 4.11
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: linards.liepins(a)gmail.com
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
Created attachment 64805
--> https://bugs.winehq.org/attachment.cgi?id=64805
Game log file 1
As of wine-4.11, the game is not launching anymore properly and is giving
following behavior:
- Sound starts from the intro video(s)
- Intro video ( gearbox ) ends and I hear the game is opened in the Main menu
level
- No video is being shown ('nothing happens') and the desktop is still showing
I have tried with no success the following:
- using official latest versions of Fedora 30 x64 packages and also Mesa 19.1.1
- using Wayland session
- changing all configs in winecfg ( resolution, decoration, staging settings)
- using Steam command launch options ( '-fakeFullscreen -window[ed] -w 1920 -h
1080' ) in different combinations
- running game from Nautilus by directly running the executable
I expect that game runs properly in full-screen same way it was working in
wine-4.9.
My config:
$ wine --version
wine-4.11 (Staging)
$ inxi -Gxxx
Graphics:
Device-1: AMD Ellesmere [Radeon RX 470/480/570/570X/580/580X/590]
vendor: XFX Pine driver: amdgpu v: kernel bus ID: 01:00.0
chip ID: 1002:67df
Display: x11 server: Fedora Project X.org 1.20.5 driver: amdgpu
compositor: gnome-shell v: 3.32.2 tty: N/A
OpenGL: renderer: Radeon RX 580 Series (POLARIS10 DRM 3.30.0
5.1.15-300.fc30.x86_64 LLVM 8.0.0)
v: 4.5 Mesa 19.1.1 direct render: Yes
P.S. Similar issue has been noticed for StepMania 5 and Age of Mythology:
Extended, but these games have ways to enforce windowed mode both from Steam
Launch Options or from configuring config files.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=46247
Bug ID: 46247
Summary: BF2 Complete Collection 1.50 Crashes when using
Anti-Aliasing 8x
Product: Wine-staging
Version: 3.20
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: linards.liepins(a)gmail.com
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
All settings are Maxed Out; I tried with 2x and 4x and no crashes/issues noted.
Wine details:
sh winetricks list-installed
------------------------------------------------------
You are using a 64-bit WINEPREFIX. Note that many verbs only install 32-bit
versions of packages. If you encounter problems, please retest in a clean
32-bit WINEPREFIX before reporting a bug.
------------------------------------------------------
Using winetricks 20181203-next - sha256sum:
90643712034ccea3dad530e2e33761d872fd532c3f6018919b21ae006ecba680 with wine-3.20
(Staging) and WINEARCH=win64
binkw32
d3dx9_42
gmdls
l3codecx
lucida
mfc40
mfc42
physx
tahoma
w_workaround_wine_bug-30713
vcrun2008
w_workaround_wine_bug-30713
vcrun2012
w_workaround_wine_bug-37781
w_workaround_wine_bug-30713
vcrun2015
w_workaround_wine_bug-22053
steam
w_workaround_wine_bug-30713
vcrun2010
d3dx9_36
win7
setupapi
w_workaround_wine_bug-30713
vcrun2005
corefonts
msls31
w_workaround_wine_bug-25648
ie8
vulkanrt
msscript
vulkansdk
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.