https://bugs.winehq.org/show_bug.cgi?id=45553
Bug ID: 45553
Summary: the hiarcs program stopped working after the
installation of wine 3.12
Product: Wine
Version: 3.12
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: winelib
Assignee: wine-bugs(a)winehq.org
Reporter: visconde77(a)yahoo.com.br
Distribution: ---
Created attachment 61974
--> https://bugs.winehq.org/attachment.cgi?id=61974
stop
the hiarcs program stopped working after the installation of wine 3.12
--
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=44898
Bug ID: 44898
Summary: Microsoft DirectX 9.0c Redistributable (June 2010)
installer crashes (when installing without prefix that
is created earlier)
Product: Wine
Version: 3.5
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: t6zm3v62fkp7fe5(a)yandex.ru
Distribution: ---
Created attachment 60970
--> https://bugs.winehq.org/attachment.cgi?id=60970
Wine 3.0 terminal output
I used to create prefixes for games with installed DirectX 9.0c by command
wine '<folder>/DXSETUP.exe'
It's comfortable and saves my time.
But in Wine 3.5, DirectX crashes in the beginning of installing and says
"Internal system error occured. Please refer to DXError.log and DirectX.log in
your Windows folder to determine problems".
And now I have to create the game prefix by any other command like
winecfg
and install DirectX in this already created prefix, it doesn't crash in this
way.
Here are all logs from Wine 3.5 and output terminals from Wine 3.0 and 3.5.
OS: Lubuntu 16.04.4, Wine from official Wine repos.
File link: https://www.microsoft.com/en-us/download/details.aspx?id=8109
sha256: 8746ee1a84a083a90e37899d71d50d5c7c015e69688a466aa80447f011780c0d
--
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=40864
Bug ID: 40864
Summary: Error message on Exit from PDF Eraser
Product: Wine
Version: 1.9.13
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: yousifjkadom(a)yahoo.com
Distribution: ---
Hi. During evaluation of PDF eraser on version 1.9.13 of winehq, I get error
message after closing PDF eraser (after I failed to register PDF eraser due to
bug 40779) & assessment of bug 40778 & bug 40505. Please look for attached
files:
file 1, 2, 3 are screenshots show part of message.
file backtrace error message by using option "save as" that existing in error
message window
--
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=58132
Bug ID: 58132
Summary: HoMM4 map editor crashes on a specific map
Product: Wine-staging
Version: 10.5
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: ww.lss.su(a)gmail.com
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
Created attachment 78407
--> http://bugs.winehq.org/attachment.cgi?id=78407
backtrace and the map in question in the archive
How to repeat:
1. Run the Heroes of Might and Magic IV map editor (I used GOG version).
2. Open the attached map.
3. In the editor toolbar click "Selection tool" and "Underground".
4. In the middle of the map (in the underground) find the quest hut, the quest
log entry for it must be "Seasonal workers' hut.". Click the "Triggered script"
tab.
--
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=30819
Bug #: 30819
Summary: File|Open and File|Save doesn't work, crash with Wine
COMCTL32.DLL, COMDLG32.DLL
Product: Wine
Version: 1.5.5
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alejandronova(a)gmail.com
Classification: Unclassified
Created attachment 40360
--> http://bugs.winehq.org/attachment.cgi?id=40360
Backtrace of the crash I get while trying to open files with this editor.
APP REPORT:
http://appdb.winehq.org/objectManager.php?sClass=application&iId=14244
Basically, when I press "Utility | File | Open...", "Utility | File | Save...",
the following happens.
- Pressing the "Desktop" button leads me to an immediate crash.
- There are many issues with file associations.
* PCG files, Utility | File | Import... : They flash for a moment and then
disappear.
* .M50all, .M50prog and .M50combi files: They appear after an F5. If I try to
open them, I get a crash.
Backtrace attached.
--
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.
http://bugs.winehq.org/show_bug.cgi?id=58122
Bug ID: 58122
Summary: WSAENOTSOCK error when calling winsock.Send() on
duplicated socket
Product: Wine-staging
Version: 10.4
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: digitman63(a)gmail.com
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
Process A creates a listening socket, accepts an incoming connection, and
obtains a socket handle hSock.
Process A spawns Process B with the InheritHandles flag, passing its own
ProcessID and the socket handle hSock as command-line arguments.
Process B calls OpenProcess() to get a handle hSrcProcess for the given
ProcessID, then duplicates hSock into hDupSock using
DuplicateHandle(hSrcProcess, hSock, GetCurrentProcess(), &hDupSock, ...);
Process B successfully receives data from the duplicated socket using
winsock.recv(hDupSock, ...).
Process B attempts to send data via winsock.send(hDupSock, ...), but the call
fails with WSAENOTSOCK (10038) ("Socket operation on non-socket").
Process B then tries sending the same data using kernel32.WriteFile(hDupSock,
...), and this operation succeeds.
Why does send() fail while WriteFile() works on the same duplicated handle?
--
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=54812
Bug ID: 54812
Summary: Wine file dialogs miss button to move up one dir
Product: Wine
Version: 8.4
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: comdlg32
Assignee: wine-bugs(a)winehq.org
Reporter: scallegari(a)arces.unibo.it
Distribution: ---
In the file dialog I get a `back` arrow, but not an `up` arrow button. To move
to the parent directory I can put `..` in the filename and press enter, but it
is not so nice.
--
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=56576
Bug ID: 56576
Summary: Program error window for Screamer Radio when updating
the aforementioned
Product: Wine
Version: 9.6
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: olav.magi(a)hotmail.com
Distribution: ---
Created attachment 76329
--> https://bugs.winehq.org/attachment.cgi?id=76329
Program Error from Wine Debugger
Hi!
I tried to update Screamer Radio from "Stable 2024-04-14" to "Stable
2024-04-15" but the updating was interrupted by the attached dialogue.
"Upgrade timed out" showed up in the Screamer Radio tab/bar where I clicked the
Upgrade button made available under the information of radio station.
How to update this software without the aforementioned error?
--
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=57915
Bug ID: 57915
Summary: A bug with weapons in the game Dungeon Siege 2.
Product: Wine
Version: 10.2
Hardware: x86-64
OS: Windows
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: d3d
Assignee: wine-bugs(a)winehq.org
Reporter: evil.tyrael.666(a)gmail.com
Created attachment 78156
--> https://bugs.winehq.org/attachment.cgi?id=78156
weapon at the feet
Good morning! I want to report a bug in your program when using it in the game
Dungeon Siege 2. The characters' weapons move from their hands to their feet,
specifically to the very bottom of their legs (screenshot).
I used the following version of the program: WineD3DForWindows_10.2-staging.
There are many complaints about a similar issue in the comments on Steam under
this game (Dungeon Siege 2) when other people also used the WineD3D
application.
I hope my information is useful and helps to fix this issue.
--
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=57911
Bug ID: 57911
Summary: TUBERANK JEET AI SOFTWARE NOT OPENING
Product: Wine
Version: 10.2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: winedbg
Assignee: wine-bugs(a)winehq.org
Reporter: pocomal112(a)codverts.com
Distribution: ---
Created attachment 78154
--> https://bugs.winehq.org/attachment.cgi?id=78154
tuberankjeet AI SOFTWARE FOR RANKIN YOUTUBE VIDEO BUG APP NOT OPENING
THE SOFTWARE CALLED TUBERANK JEET AI DOES NOT WORK DUE TO A BUG THAT DOES NOT
ALLOW THE SOFTWARE TO WORK. I'm asking the team to fix this bug. and there's
another program called YouTube By-Click that also doesn't work in Wine because
of a bug. Please fix the bugs of these two programs. Because I gave up on Linux
because these programs don't work. And I've reported their bugs a lot of times
and no one cares. I'm begging the wine team to fix these programs otherwise I'm
not going back to Linux anymore
If you want information about the software, here it is
https://www.byclickdownloader.com/https://tuberankjeet.com/freeversion
--
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.