https://bugs.winehq.org/show_bug.cgi?id=48636
Bug ID: 48636
Summary: Lotus Organizer 97, Wine 5.0, Debian Stretch. Lotus
Organizer icon speech bubbles display incorrectly -
they are on square black background.
Product: Wine
Version: 5.0
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winelib
Assignee: wine-bugs(a)winehq.org
Reporter: john.p.langley(a)gmail.com
Distribution: ---
Created attachment 66488
--> https://bugs.winehq.org/attachment.cgi?id=66488
Screenshot showing various icon speech-bubbles displaying incorrectly.
- Debian Stretch stable - all updates as at 20/02/2020
- Wine 5.0
- Lotus Organizer 97.
- Logged in with user privileges.
- LXDE environment.
When hovering mouse cursor over Lotus Organizer 97 icons, the information
speech bubbles display on black square background.
When LXDE (and possibly other window managers) is switched to another window,
the speech-bubble often remains on top.
See screen-shot.
--
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=625
Julian Rüger <jr98(a)gmx.net> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |jr98(a)gmx.net
--
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=46940
Bug ID: 46940
Summary: GTA 5 clients cannot connect to each other behind home
router
Product: Wine
Version: 4.5
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: electrodexsnet(a)gmail.com
Distribution: ---
When the game is running, it seems to be unable to do anything that requires
the ability to host a direct connection. In most circumstances this is not
noticeable as the game will fall back to using rockstar servers when direct is
not available.
However, if you have multiple players behind the same home router, they will
experience symptoms of this issue, as the game expects to be able to use
p2p/direct connectivity between clients on a home network.
This includes:
* Inability to join an invite-only or friend-only session hosted by either
* Inability to join a public (or hosted by another player) session if either
player is already in it; as soon as one connects, the other cannot join, and
vice-versa. This can be worked around consistently by disabling UPnP on the
home router. Workaround only works for joining public sessions.
* Inability to join a heist hosted by either (even when started from a public
or 3rd-party hosted session)
These were tested and confirmed with 4 accounts at 4 computers at 2 locations.
Tested with respective firewalls enabled/disabled. Players at different
locations could connect to each other without issue; players at the same
location could not.
This issue does not manifest if one of the computers is Windows [tested W10
build 1803]. It can join or be joined to local friend-only/private sessions as
you'd expect.
====Steps used to produce logs (on Majaro Linux)====
(Did steps on 2 computers running separate instances of GTA 5)
sudo pacman -S --needed --noconfirm wine-staging wine-mono wine_gecko
winetricks lib32-gtk3 lib32-mpg123 mpg123 yay
WINEPREFIX=~/.wine_vulkan winetricks -q allfonts steam
yay -S --noconfirm dxvk-bin
WINEPREFIX=~/.wine_vulkan setup_dxvk install
WINEDLLOVERRIDES=winedbg.exe=d WINEPREFIX=~/.wine_vulkan wine Steam.exe
Launch game in Story Mode, then launch a Friend-only Online session.
Once both are at this point, try connecting either of them to the other.
GTA On-screen Messages:
Alert: Getting GTA Online session details
Alert: Unable to connect to game session.
========================
This affects both wine and wine-staging, but I could not get logs from vanilla
wine as GTA 5 in recent versions does not get past the socialclub launcher.
This also affects Proton. I've limited the logs scope to just wine for this
report, but you can find the related Proton reports here:
https://github.com/ValveSoftware/Proton/issues/37#issuecomment-445510575https://github.com/ValveSoftware/Proton/issues/37#issuecomment-478411346
--
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=31881
Bug #: 31881
Summary: Silverlight 5.x can't individualize
Product: Wine
Version: 1.5.14
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ehoover(a)mines.edu
Depends on: 31589
Classification: Unclassified
After working around Bug #31589 (attachment 41923) Silverlight 4.x is able to
individualize; however, Silverlight 5.x still has problems. It appears to
create the individualization files and then delete them after it fails to
connect to a named pipe:
0059:KERNEL32.CreateFileA(020ab990
"\\\\.\\pipe\\lrpc\\keysvc",c0000000,00000000,00000000,00000003,00000000,00000000)
ret=7e87340e
0059:Ret KERNEL32.CreateFileA() retval=ffffffff ret=7e87340e
This named pipe business is not attempted with Silverlight 4.x, so creating
this pipe would probably do the trick. A little googling finds this
documentation:
http://www.hsc.fr/ressources/articles/win_net_srv/msrpc_cryptsvc.html
--
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=47832
Bug ID: 47832
Summary: FindFirstFileExW believes every directory entry has
been read if NtQueryDirectoryFile underfills buffer
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: kernel32
Assignee: wine-bugs(a)winehq.org
Reporter: qsniyg(a)mail.com
Distribution: ---
When using USVFS (through ModOrganizer 2), it will hook NtQueryDirectoryFile,
and its implementation will occasionally underfill the buffer, even if there
are more directory entries to be read.
Due to this check in FindFirstFileExW:
if (!has_wildcard || info->data_len < info->data_size - max_entry_size)
{
...
info->data_size = 0; /* we read everything */
}
It will stop FindNextFileW from reading more. Windows doesn't seem to exhibit
this behavior.
Removing the `info->data_len < info->data_size - max_entry_size` check allows
it to work properly.
Unfortunately I wasn't able to find any reference to why that check exists. My
best guess after looking through the source code is that it's an optimization,
as the code should still run fine if wine's NtQueryDirectoryFile implementation
underfills the buffer (therefore indicating that there are no more files needed
to be read).
So far I've tested many various applications with the check patched out, with
no obvious regressions.
--
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=48445
Bug ID: 48445
Summary: Linux Mint Cinnamon
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: henadzitru(a)yandex.ru
Distribution: ---
Created attachment 66225
--> https://bugs.winehq.org/attachment.cgi?id=66225
game
Crashes when you install the game World of Tanks
--
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=50040
Bug ID: 50040
Summary: crash of MSMoney
Product: Wine
Version: 3.0.4
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: fbmines(a)gmail.com
Distribution: ---
Created attachment 68488
--> https://bugs.winehq.org/attachment.cgi?id=68488
crash log
Hello, MsMoney run with Wine 3.0.4 and earlier versions crashed randomly but
quite frequently when calling a function of the Investment windows or a report,
specially the Historic values of the Investments statements.
Attached the log of the crash.
Thanks for your help,
--
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=33679
Bug #: 33679
Summary: WordPerfect X6 trial does not install
Product: Wine
Version: 1.5.30
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: erik(a)familiendam.dk
Classification: Unclassified
Created attachment 44584
--> http://bugs.winehq.org/attachment.cgi?id=44584
Trace result from the installation attempt.
Tried installing a trial version of WordPerfect Office X6 I downloaded from
Corel's homepage on 29-may-13. It unpacks the .msi files, but after this it
fails, getting no further. I first tried with wine 1.4.0 since that is what is
provided as default when you install wine on a Ubuntu 12.10 dist, subsequently
I updated it to 1.5.30, but, alas, to no avail - same result.
--
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.