https://bugs.winehq.org/show_bug.cgi?id=44589
Bug ID: 44589
Summary: The finally{} of a try/catch/finally on MS .NET
doesn't appear to be be respected as it should
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: epigramx(a)yahoo.com
Distribution: ---
My own code on MS seems to adhere to the notion that if something is in a
finally {} of a try/catch/finally it must always be called unless the program
doesn't continue at all.
On wine though (tested on current -devel and .NET 4.5.2) that doesn't seem to
be the case. Calls inside the finally{} may be ignored or in general be
inconsistent.
--
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=44411
Bug ID: 44411
Summary: CRASHING AND LACKING FONT civilization call to power
Product: Wine
Version: 3.0-rc6
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: kitisanutter(a)gmail.com
Distribution: ---
Game crashes with core fonts, there is nothing to suggest reason why other than
lack of core fonts.
--
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=44400
Bug ID: 44400
Summary: Elona+ custom crashes on exit, crash confirmation
windows appears in few senconds
Product: Wine
Version: 3.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: morichikarinnosukee(a)gmail.com
Distribution: ---
Created attachment 60323
--> https://bugs.winehq.org/attachment.cgi?id=60323
I tried all windows, but not work.
wine 1.8 tricks run elona+ custom1.75.1 is really good,But I update to 3.0 then
game crash when just show window.
I try use xp,win 7,8,or 10,but all not work.
--
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=45100
Bug ID: 45100
Summary: System.AccessViolationException for .Net when Form
start
Product: Wine
Version: 3.7
Hardware: x86-64
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: alekseenko_yan(a)mail.ru
Created attachment 61271
--> https://bugs.winehq.org/attachment.cgi?id=61271
Crashed log from Wine
I try to start Zeus Radio (hfrelectronics.com) written on .Net and using
DirectSound and OpenGL and application crashed.
PS. We try to start on Wine 3.6 under Linux Mint ant it WORKS.
Unhandled Exception: System.AccessViolationException: Attempted to read or
write protected memory. This is often an indication that other memory is
corrupt.
at System.Windows.Forms.SafeNativeMethods.ShowWindow(HandleRef hWnd, Int32
nCmdShow)
at System.Windows.Forms.Form.set_WindowState(FormWindowState value)
at CustomControls.CustomForm.OnLoad(EventArgs e) in
d:\Project\ZeusSDR\ZeusSDR\ui\Controls\CustomForm.cs:line 154
at System.Windows.Forms.Form.OnCreateControl()
at System.Windows.Forms.Control.CreateControl(Boolean fIgnoreVisible)
at System.Windows.Forms.Control.CreateControl()
at System.Windows.Forms.Control.WmShowWindow(Message& m)
at System.Windows.Forms.Control.WndProc(Message& m)
at System.Windows.Forms.ScrollableControl.WndProc(Message& m)
at System.Windows.Forms.ContainerControl.WndProc(Message& m)
at System.Windows.Forms.Form.WmShowWindow(Message& m)
at System.Windows.Forms.Form.WndProc(Message& m)
at CustomControls.CustomForm.WndProc(Message& m) in
d:\Project\ZeusSDR\ZeusSDR\ui\Controls\CustomForm.cs:line 572
at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr
wparam, IntPtr lparam)
at System.Windows.Forms.SafeNativeMethods.ShowWindow(HandleRef hWnd, Int32
nCmdShow)
at System.Windows.Forms.Control.SetVisibleCore(Boolean value)
at System.Windows.Forms.Form.SetVisibleCore(Boolean value)
at System.Windows.Forms.Control.Show()
at ZeusSDR.ZeusMainForm..ctor(Intro intro) in
d:\Project\ZeusSDR\ZeusSDR\ui\ZeusMainForm.cs:line 568
--
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=39056
Bug ID: 39056
Summary: Redirect a device printer port to a print command
(lpr)
Product: Wine
Version: 1.7.48
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: spooler
Assignee: wine-bugs(a)winehq.org
Reporter: hugocanalli(a)gmail.com
Distribution: ---
Sometimes I need to write directly to a print port.
That's because I have a old program that works only with ports named lpt[1-4]
or com[1-4]
I can do it creating a link to my device to the dosdevices folder.
E.g:
ln -s /dev/lp0 ~/wine/dosdevices/lpt1
ln -s /dev/ttyUSB0 ~/.wine/dosdevices/lpt2
Typing commands like echo 'hello' > lpt1 will work great.
There are some cases that my printer is not directly connected to my computer.
By example my Brother DCP-8085DN printer that works over network, a wireless
printer, or same my epson lx300 using lpt1 port but instead is installed on
another computer.
To map this kind of printers I use cups and it work on wine using print dialog
(e.g printing using notepad).
But what about if I need to use my old dos program or would like play around
with wine start.exe program and type commands like echo 'hello' > lpt1
Wine start.exe returns File not found.
Cups doesn't create /dev/xxx devices to printers. So I can't do a link to
dosdevices folder and I have to use the lpr command to print.
One solution is create a file named lpt1 on dosdevices folder and use loop
script in linux cheking for changes and redirect data to lpr.
I can do it easly using the following procedure:
cd ~/.wine/dosdevices
mkfifo lpt1
chmod 666 lpt1
And create a running forever script like:
while true
do
cat ~/.wine/dosdevices/lpt1 | lpr -o raw -P cups_printer_name
done
While this method can work would be great if we could do it only using wine
ways and therefore no need to such script.
--
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=43267
Bug ID: 43267
Summary: Wine error when trying to open a USB stick encrypted
by McAfee
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: cranky.frankie(a)gmail.com
Distribution: ---
Created attachment 58596
--> https://bugs.winehq.org/attachment.cgi?id=58596
Wine error when trying to open a USB stick encrypted by McAfee
The attachment contains the error I get when trying to open a USB stick that
has been encrypted on a Windows machine with McAfee encryption software. I have
the password but I cannot get Wine to open the file system for read access.
--
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=45754
Bug ID: 45754
Summary: GFXBench 5.0 benchmark doesn't run..
Product: Wine
Version: 3.15
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: rtfss1(a)gmail.com
Distribution: ---
Created attachment 62198
--> https://bugs.winehq.org/attachment.cgi?id=62198
log
Hi,
just trying to run GFXBench 5.0 Windows binary as 5.0 isn't avaiable for Linux
(yet?)..
it's a Vulkan benchmark also and would be useful to catch some error when
running Android app on Android-x86 having also Vulkan Mesa drivers..
anyway here is output:
A window opens saying network error but I have Internet working correctly and
also kishonti server is working..
seems fatal lines:
[INFO ]: Handshake error:
[ERROR]: error: NetworkError: INTERNAL_ERROR
full log atached..
--
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=53793
Bug ID: 53793
Summary: ClrMAME crash when accessing multiple files using an
huge memory allocation
Product: Wine
Version: 7.18
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: augusto7744(a)aol.com
Distribution: ---
Hello.
Thanks for using you time reading my bug report.
ClrMAME is an software read files checksum and renaming. The files are zip and
7Z.
Have an task "scanner" read all files in an path.
That software works correctly in WINE development 7.8.
In an new OS Ubuntu 20.04.5 installation was installed the WINE stagging 7.18.
The software start, but in the "scanner" task happen an strange behavior begin
to use more OS memory in each second at point RAM memory is totally used and
after the swap totally too ... resulting in an high not stop disk activity
because the OS not have any memory free available.
The OS is using Kernel 6.00.
When happen that bug error need power off or reset the machine.
Only reporting to WINE developers.
Need any other information ? Please reply me.
I wish an nice day for you.
--
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=41916
Bug ID: 41916
Summary: [regression] wine >=1.9.21 PDF-XChange Editor
6.0.317.1 [last known stable] and above *crash* while
using "Sticky Note Tool" (annotation)
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jackdachef(a)gmail.com
Distribution: ---
I've tried several versions of wine(-staging)
1.9.21-git
1.9.22
1.9.23
all in the staging variant,
currently compiling 1.9.21-staging
and will later try out vanilla 1.9.21 whether it also happens there (highly
probable).
OS is Gentoo ~amd64,
GCC 4.9.4 hardened, binutils 2.27
this also happens with GCC 6.2 hardened
hardened toolchain didn't make a difference in stability and operation before
since flags that break WINE are filtered out automatically.
Last known working and stable combination of using "Sticky Note Tool" (Bubbles
with Text in them) in PDF-XChange Editor and WINE is
WINE 1.9.21 and PDF-XChange Editor 6.0.317.1
all newer versions up to 6.0.319.0 crash while adding annotations and
attempting to add a "Sticky Note"
PDF-XChange Editor 6.0.317.1 and >WINE 1.9.21
while selecting "Sticky Note Tool" and pasting a bubble on the PDF file has a
problem of NOT displaying the content of the sticky note,
also AFTER the sticky note is added to the PDF file after a short amount of
time WINE / the program will crash
Will post stack-traces later when I don't need working WINE
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=51907
Bug ID: 51907
Summary: ddraw games don't work in xwayland
Product: Wine
Version: 6.19
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: ewtoombs(a)uwaterloo.ca
Distribution: ---
So far, I've tested Age of Empires II: The Conquerors 1.0c and Starcraft
Broodwar 1161. They both fail with the same error message:
```
0024:err:ddraw:ddraw_surface_create Failed to reset device.
```
Both games work fine in the standalone Xorg server. Neither works, whether I
use weston or sway.
Experimentally, I've determined that the games work in 5.13 and break in 5.14,
so I guess the bug was introduced in version 5.14.
--
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=21855
Summary: WordPro Windows pull down does not show file names
Product: Wine
Version: 1.1.38
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P4
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ToddAndMargo(a)verizon.net
Created an attachment (id=26459)
--> (http://bugs.winehq.org/attachment.cgi?id=26459)
Missing file names in Windows pull down
Hi All,
Would you guys fix this for me?
I am using Lotus Word Pro N9.8.0208.1200. When you open two files (documents)
from the command line (the jpeg I have attached), then go to the "Window" pull
down to select which file to bring into focus, the file names are missing. If
you start Word Pro, then use File, Open to select two files, one at a time, the
second file does not show.
Many thanks,
-T
--
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=50537
Bug ID: 50537
Summary: Magic the gathering Arena Installer: shows a grey
background instead of black
Product: Wine
Version: 6.0-rc4
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: litimetal(a)gmail.com
Distribution: ---
Created attachment 69200
--> https://bugs.winehq.org/attachment.cgi?id=69200
Screenshot_wine_A.png
wine-6.0-rc4
$ sha1sum MTGAInstaller.exe
2c8ebc796903d7701ed7bf442ac81f083f8657ae MTGAInstaller.exe
Run MTGAInstaller.exe
In wine, the background for the installer is grey, making it impossible to read
the text (white)
In Windows 7, the background is black
--
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=50588
Bug ID: 50588
Summary: Magic the gathering Arena: Game crashes after a game
finished
Product: Wine
Version: 6.1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: litimetal(a)gmail.com
Distribution: ---
Created attachment 69266
--> https://bugs.winehq.org/attachment.cgi?id=69266
backtrace.txt
1. Install the game (I copied the whole MTGA directory to ~/Downloads)
2. cd ~/Downloads/MTGA && wine MTGA.exe
3. Login, play a game
4. When the game finished, there was an MTGA error dialog related to Unity
5. Game crashed
--snip--
02a8:fixme:win:FlashWindowEx 000000000020EDB0 - semi-stub
0318:fixme:dbghelp_dwarf:dwarf2_parse_subprogram Unhandled Tag type 0x15 at
ctx(0000000063D1A850,L"ntdll.so"), for
debug_info(abbrev:00007FAB0A373B38,symt:00007FAB07C3678C)
0318:fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children
02b8:fixme:dbghelp_dwarf:dwarf2_parse_subprogram Unhandled Tag type 0x15 at
ctx(000000000021A500,L"ntdll.so"), for
debug_info(abbrev:0000000001851868,symt:00000000018C7B9C)
02b8:fixme:dbghelp_dwarf:dwarf2_parse_const_type Unsupported children
02b8:fixme:dbghelp:SymRegisterFunctionEntryCallback64 (0000000000000090
0000000140035A80 bda00): stub!
02b8:fixme:ntdll:NtQuerySystemInformation info_class
SYSTEM_PERFORMANCE_INFORMATION
wine: Unhandled page fault on read access to 0000000000000128 at address
00007FAC91E9B552 (thread 0318), starting debugger...
02b8:fixme:file:CancelSynchronousIo (0000000000000088): stub
----
--
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=50903
Bug ID: 50903
Summary: Magic the gathering Arena (MTGA) crashes when
launching the game
Product: Wine
Version: 6.5
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: litimetal(a)gmail.com
Distribution: ---
Created attachment 69713
--> https://bugs.winehq.org/attachment.cgi?id=69713
backtrace.txt
Wine was performing well for MTGA. On 2021 March 24, an update for MTGA was
pushed. After that, I started to meet this issue
--------
"Versions": {
"0.1.3536.856069": "3/24/21"
},
---------
I think this is not a dup of bug 47753
--
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=50383
Bug ID: 50383
Summary: Sierra Chart crashing
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: adam.benklian24(a)gmail.com
Created attachment 68993
--> https://bugs.winehq.org/attachment.cgi?id=68993
Backtrace
When I try to run Sierra chart 64 it says that wine encountered a critical
problem and needs to be closed.
--
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=43489
Bug ID: 43489
Summary: Bug on Hi suite that provoc the no connection of the
smartphone
Product: Wine
Version: 1.6.2
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: shikaruko-ryukan(a)legtux.org
Distribution: ---
Created attachment 58871
--> https://bugs.winehq.org/attachment.cgi?id=58871
Bug at launch of Hi suite on Wine 1.6.2
Bug on Hi suite that provoc the no connection of the smartphone
--
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=45266
Bug ID: 45266
Summary: SHFileOperation FO_MOVE fails to move files to target
directory
Product: Wine
Version: 2.0
Hardware: x86
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: shell32
Assignee: wine-bugs(a)winehq.org
Reporter: fheidenreich(a)gmail.com
When moving multiple files to one target directory, the SHFileOperation is
aborted with ERROR_CANCELLED.
I think it's caused by an erroneous check at
https://source.winehq.org/git/wine.git/blob/HEAD:/dlls/shell32/shlfileop.c#…
if (!(lpFileOp->fFlags & FOF_MULTIDESTFILES) &&
!flFrom->bAnyDirectories &&
flFrom->dwNumFiles > flTo->dwNumFiles)
{
return ERROR_CANCELLED;
}
If the target is one single directory, FOF_MULTIDESTFILES is not set.
flFrom->bAnyDirectories is false, since no directories are moved. And
flFrom->dwNumFiles > flTo->dwNumFiles since we move multiple files to one
target directory.
I'm not sure what's the reasoning behind !flFrom->bAnyDirectories anyway. Maybe
it's just a typo and should read !flTo->bAnyDirectories
--
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=51064
Bug ID: 51064
Summary: Crash from Starcraft 2 game in Direct Strike mode
Product: Wine-staging
Version: 6.7
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: terapy-session(a)bk.ru
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
Created attachment 69922
--> https://bugs.winehq.org/attachment.cgi?id=69922
screen
The bug is manifested for a long time. 100% repeatability. Through Proton no
problem. The problem is only in this mode.
--
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=44887
Bug ID: 44887
Summary: Pressure sensitivity lost when file requester is
opened in ZBrush
Product: Wine
Version: 3.4
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: f2267911(a)nwytg.com
Distribution: ---
ZBrush (4r8 and 2018) works quite fine but when a file requester (to load or
save a tool) is opened, ZBrush does not response to the pressure sensitivity.
Before loading a tool the pressure sensitivity worked fine.
--
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=51468
Bug ID: 51468
Summary: Crashes after disclaimer - 007: Quantum Of Solace
Product: Wine-staging
Version: 6.11
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: kreyren(a)fsfe.org
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
Created attachment 70307
--> https://bugs.winehq.org/attachment.cgi?id=70307
wine.log
Using myabadonware.com version on clean wineprefix the game shows `LOADING` at
the bottom-left of the screen, disclaimer and crashes with [wine.log].
--
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=51630
Bug ID: 51630
Summary: "Enemy Territory: Quake Wars SDK 1.5 (EditWorld)" When
typing in dialog forms (values, file names, etc.)
program crashes
Product: Wine
Version: 6.15
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: shell32
Assignee: wine-bugs(a)winehq.org
Reporter: tx3nl5aq(a)protonmail.com
Distribution: Slackware
Created attachment 70486
--> https://bugs.winehq.org/attachment.cgi?id=70486
console output with WINEDEBUG=+seh,+tid,+loaddll
DESCRIPTION:
-------------
When typing in dialog forms (values, file names, etc.) program crashes on first
character. Pasting text in these forms works with "SHIFT+INS", but confirming
it with "Enter" causes the program crash.
REPRODUCTION:
-------------
# set "Windows Version: Windows XP" with winecfg on new wineprefix
WINEARCH=win32 WINEPREFIX=[WINEPREFIX] winecfg
# install ETQW from disk
WINEPREFIX=[WINEPREFIX] wine /mnt/dvd/setup.exe
# upgrade game to 1.5 version from:
#
https://cdn.splashdamage.com/downloads/games/etqw/ETQW-client-1.0-1.5-updat…
# cfdea517cca5c34eda3100d6097f372e30484118 ETQW-client-1.0-1.5-update.exe
WINEPREFIX=[WINEPREFIX] wine ETQW-client-1.0-1.5-update.exe
# install ETQW-SDK-1.5 from:
# https://cdn.splashdamage.com/downloads/games/etqw/ETQW-SDK-1.5.exe
# 6ef6913398aa37401165328b4886bf5b33bd33f7 ETQW-SDK-1.5.exe
WINEPREFIX=[WINEPREFIX] wine ETQW-SDK-1.5.exe
# launch sdklauncher.exe from "SDK 1.5" installation directory
cd [WINEPREFIX]/[PATH]/SDK\ 1.5
WINEPREFIX=[WINEPREFIX] wine sdklauncher.exe
# set the game path and choose the tool to launch: "editWorld"
# click on "Property Editor" tab inside "Inspectors" window
# type something in "Value" form
# at this point the program crashes
ATTACHMENTS:
------------
console output with WINEDEBUG=+seh,+tid,+loaddll: "console.txt"
corresponding backtrace: "backtrace.txt"
images of windows forms: "save.jpg", "value.jpg"
--
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=52150
Bug ID: 52150
Summary: GIANTS Editor new version (9.0.1) crashed
Product: Wine-staging
Version: 6.22
Hardware: x86-64
URL: https://gdn.giants-software.com
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jfor.fun(a)ya.ru
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ArchLinux
Created attachment 71199
--> https://bugs.winehq.org/attachment.cgi?id=71199
terminal and backtrace
This version 9.0.1 editor run, but in dialog crash straightaway with shader
compute/compilate errors. In windows on same device works fine. Older versions
(8.2.2, etc) works fine.
Download editor https://gdn.giants-software.com/index.php (need registration).
Hardware:
CPU amd a8-6410 APU with amd radeon r5 graphics
GPU AMD Radeon R7 M260
amdgpu driver
--
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=28759
Bug #: 28759
Summary: 'start inetcpl.cpl' fails
Product: Wine
Version: 1.3.30
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: RandomAccountName(a)mail.com
Classification: Unclassified
Starting inetcpl.cpl directly via the start command doesn't seem to be possible
in Wine. Running 'wineconsole cmd' and then 'start inetcpl.cpl' from within cmd
gives:
Application could not be started, or no application associated with the
specified file.
ShellExecuteEx failed: File not found
start C:/Windows/system32/inetcpl.cpl gives:
Application could not be started, or no application associated with the
specified file.
ShellExecuteEx failed: Success
Both cases bring up the Internet Options control panel applet on Windows XP.
Just running "wine inetcpl.cpl" also fails, with no output except "Segmentation
fault".
--
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=22273
Summary: CDBurnerXP doesn't start with Mono
Product: Wine
Version: 1.1.42
Platform: x86-64
URL: http://cdburnerxp.se/
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: RandomAccountName(a)mail.com
The summary basically says it all... with winetricks mono26, the program
installs but won't start. With winetricks dotnet20, it's buggy but at least
somewhat usable. There's not much terminal output:
fixme:actctx:parse_depend_manifests Could not find dependent assembly
L"Native.CDBXP" (1.0.4.0)
fixme:reg:GetNativeSystemInfo (0x9c9bf58) using GetSystemInfo()
--
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=30018
Bug #: 30018
Summary: Creative Writer 2 fails to open RTF and plain text
files
Product: Wine
Version: 1.4-rc5
Platform: x86-64
URL: ftp://ftp.microsoft.com/deskapps/kids/cw2install.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ole32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: RandomAccountName(a)mail.com
Classification: Unclassified
Created attachment 39086
--> http://bugs.winehq.org/attachment.cgi?id=39086
terminal output
Creative Writer 2 fails to open files in plain text or RTF format with the
message "Oops! An unexpected error 0x80030050 occurred." Files in its native
format (.max) can be opened successfully.
In older Wine versions, it was possible to work around this with native ole32
from DCOM98.
--
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=25172
Summary: Creative Writer 2: partially-hidden "home" button on
the file dialogs
Product: Wine
Version: 1.3.7
Platform: x86-64
URL: http://download.cnet.com/Microsoft-Creative-Writer/300
0-13455_4-15232.html
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: RandomAccountName(a)mail.com
Created an attachment (id=31936)
--> (http://bugs.winehq.org/attachment.cgi?id=31936)
Terminal output
The open and save file dialogs in Creative Writer 2 have an extra "home" button
next to the location dropdown and some standard buttons (up one level, desktop,
new folder...). The button mostly displays fine, but the left edge is not
visible. It appears to be covered up by a border around the standard buttons?
Screenshot coming up...
--
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=22448
Summary: Scrabble installer for Windows 3.1 crashes immediately
Product: Wine
Version: 1.1.43
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: RandomAccountName(a)mail.com
Created an attachment (id=27495)
--> (http://bugs.winehq.org/attachment.cgi?id=27495)
Crash log
Trying to launch the installer for the Windows 3.1 version of Scrabble results
in an immediate crash in winevdm. The same crash occurs in all Wine versions I
tested (the oldest being 0.9.33).
--
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=19661
Summary: Lotus Approach 3.1 causes a page fault on load
Product: Wine
Version: 1.1.27
Platform: PC
OS/Version: Linux
Status: NEW
Keywords: win16
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
Created an attachment (id=22944)
--> (http://bugs.winehq.org/attachment.cgi?id=22944)
Wine 1.1.27 console output
Lotus Approach 3.1 causes a page fault on loading and has to be killed.
--
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=44476
Bug ID: 44476
Summary: winevdm crash during wizardry gold install
Product: Wine
Version: 2.0.3
Hardware: x86
OS: NetBSD
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: stanton_arch(a)mail.com
Created attachment 60426
--> https://bugs.winehq.org/attachment.cgi?id=60426
backtrace of crash
I'm trying to install wizardry gold and wine is crashing almost immediately
with apparent winevdm.exe errors.
I have the CD and copied it to my disk drive and tried running "wine
SETUP.EXE". I'm using NetBSD i386.
I also tried using wine 1.6.2 which failed also. It didn't crashed but seemed
to just hang.
--
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=53892
Bug ID: 53892
Summary: Page fault when attempting to run Calmira 3.3
Product: Wine
Version: 7.20
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: dos
Assignee: wine-bugs(a)winehq.org
Reporter: hjlinq(a)gmail.com
Distribution: ---
Created attachment 73435
--> https://bugs.winehq.org/attachment.cgi?id=73435
dump produced after the "winevdm.exe has encountered a serious error" message
WineVDM page faults when attempting to run the Calmira 3.3 setup program.
System: Fresh install of alpine-extended-3.16.2-x86.iso
Hardware: Virtualbox
To replicate:
1. Install Alpine linux (setup-alpine)
(Important: must be the x86 version since musl-libc doesn't support multilib)
2. In "/etc/apk/repositories",
uncomment the edge/main and edge/community repositories
and comment out both v3.16 repositories
3. apk -alU upgrade
4. setup-xorg-base
5. apk add xinit xterm xfce4 wine
6. echo "exec winecfg" > .xinitrc
7. startx
8. in the "Graphics" tab, check "Emulate a virtual desktop", click "Apply" and
"Ok"
9. echo "exec wine explorer" > .xinitrc
10. wget http://www.calmira.de/downloads/files/erwin/c33setup.exe
11. startx
12. navigate to c33setup.exe using wine explorer and double-click on the
installer
--
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=53008
Bug ID: 53008
Summary: When playing civilizatin2, winevdm crash
Product: Wine
Version: 7.8
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: clabbe.montjoie(a)gmail.com
Distribution: ---
Created attachment 72378
--> https://bugs.winehq.org/attachment.cgi?id=72378
backtrace of winevdm
When playing civilization 2, game menu start, but after some time, game crash.
I am sure that it worked before, but i need some time digging backup to find
which version of wine I used.
--
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=49405
Bug ID: 49405
Summary: winevdm has encountered a serious problem
Product: Wine
Version: 5.3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: rquint(a)rain2.org
Distribution: ---
Created attachment 67480
--> https://bugs.winehq.org/attachment.cgi?id=67480
backtrace.txt generated by WINE
Please bear with this long discursive report.
I'm trying to run the CD-ROM version of the OED (Oxford English Dictionary), an
old Windows 3.1 app, under WINE.
Currently I have it running successfully on
Ubuntu 18.04
rquint@Maria-Agnesi:~$ uname -a
Linux Maria-Agnesi 4.15.0-106-generic #107-Ubuntu SMP Thu Jun 4 11:27:52
UTC 2020 x86_64 x86_64 x86_64 GNU/Linux
rquint@Maria-Agnesi:~$ wine --version
wine-3.0 (Ubuntu 3.0-1ubuntu1)
Ubuntu 19.10
rquint@Cosmic-Box:~$ uname -a
Linux Cosmic-Box 5.3.0-59-generic #53-Ubuntu SMP Wed Jun 3 15:52:15 UTC
2020 x86_64 x86_64 x86_64 GNU/Linux
rquint@Cosmic-Box:~$ wine --version
wine-4.0.2 (Ubuntu 4.0.2-1)
and
Ubuntu 20.04
rquint@Twenty4:~$ uname -a
Linux Twenty4 5.4.0-37-generic #41-Ubuntu SMP Wed Jun 3 18:57:02 UTC 2020
x86_64 x86_64 x86_64 GNU/Linux
rquint@Twenty4:~$ wine --version
wine-5.0 (Ubuntu 5.0-3ubuntu1)
On a second Ubuntu 20.04 installation the OED crashes
rquint@disco-box:~/.wine/drive_c/Program Files/OED$ uname -a
Linux disco-box 5.4.0-37-generic #41-Ubuntu SMP Wed Jun 3 18:57:02 UTC
2020 x86_64 x86_64 x86_64 GNU/Linux
rquint@disco-box:~/.wine/drive_c/Program Files/OED$ wine --version
wine-5.0 (Ubuntu 5.0-3ubuntu1)
I'm attaching the backtrace.txt generated when it crashes as
backtrace.txt.disco-box. Also, it may be significant that when I first ran the
app on Twenty4, an almost identical backtrace.txt was generated, but despite
the usual definition of insanity, I tried starting it several times and after
three or four attempts it ran without problems.
--
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=46232
Bug ID: 46232
Summary: Page fault in AmiPro 3.1
Product: Wine
Version: 3.0.3
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jeppe(a)bundsgaard.net
Distribution: ---
Created attachment 62930
--> https://bugs.winehq.org/attachment.cgi?id=62930
Dump
AmiPro (https://winworldpc.com/product/amipro/3x) can now be installed without
errors. An earlier problem with too many fonts has been solved (the hack in
this bug has been implemented:
https://bugs.winehq.org/show_bug.cgi?id=15906#c9).
But when running the program, I get a "Unhandled exception: page fault on read
access to 0xffffffff in 16-bit code (1e2f:0476)."
I have tried with windows versions from 2.0, 3.1, xp, Windows 7. They all
through the same error.
Any suggestions?
--
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=19660
Summary: Lotus Ami Pro 3.1 causes a page fault on load
Product: Wine
Version: 1.1.27
Platform: PC
OS/Version: Linux
Status: NEW
Keywords: win16
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
Created an attachment (id=22942)
--> (http://bugs.winehq.org/attachment.cgi?id=22942)
Wine 1.1.27 console output
Lotus Ami Pro 3.1 causes a page fault on load.
3 0x7ec726cf enum_font_callback+0xf5(plf=0x73daa8, ptm=0x73da44, fType=4,
param=7593320) [/home/test/wine-git/dlls/gdi32/gdi16.c:219] in gdi32
(0x0073d7d8)
4 0x7ec9a5cd FONT_EnumInstance+0xfa(plf=0x73daa8, ptm=0x73da44, fType=4,
lp=7593092) [/home/test/wine-git/dlls/gdi32/font.c:615] in gdi32 (0x0073d928)
5 0x7ecaf7c1 WineEngEnumFonts+0x511(plf=0x73dd0c, proc=0x7ec9a4d3,
lparam=7593092) [/home/test/wine-git/dlls/gdi32/freetype.c:4143] in gdi32
(0x0073dc58)
"winetricks allfonts" doesn't help.
--
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=43490
Bug ID: 43490
Summary: Broken native support for comctl32.dll.
Product: Wine
Version: 2.14
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: comctl32
Assignee: wine-bugs(a)winehq.org
Reporter: s3141p(a)gmail.com
Distribution: ---
# Summary
Broken native support for comctl32.dll.
This results in a number of popular Windows applications partially, or sometime
totally, not working anymore, such as IrfanView, Faststone Image Viewer, and
XPDF-Xchange viewer.
I confirmed that both wine 2.10 2.13, and 2.14 exhibit the same problem. I
hypothesize that this issue was introduced in wine 2.8 following the changes
for fake dll generation that were announced in
https://www.wine-staging.com/news/2017-05-16-release-2.8.html.
# Reproducing this issue
1. Install 32-bit wine 2.14.
2. Install 32-bit IrfanView 4.44 - latest version as of this writing.
3. Install `winetricks comctl32` - Microsoft COM control DLL 5.8 for Windows
XP, year 2001.
Note: #2 and #3 have worked together for me for all wine versions up to 2.6 (I
skipped 2.8-9, and 2.11-12).
4. Run IrfanView, select menu entry File > Open; IrfanView crashes. Terminal
output shows this message:
```
err:wineboot:ProcessRunKeys Error running cmd
L"C:\\windows\\system32\\winemenubuilder.exe -a -r" (2)
err:module:DelayLoadFailureHook failed to delay load
comctl32.dll.HIMAGELIST_QueryInterface
wine: Call from 0x7b4367c6 to unimplemented function
comctl32.dll.HIMAGELIST_QueryInterface, aborting
wine: Unimplemented function comctl32.dll.HIMAGELIST_QueryInterface called at
address 0x2e0023:0x7b4367c6 (thread 0031), starting debugger...
fixme:service:QueryServiceConfig2W Level 6 not implemented
fixme:service:QueryServiceConfig2W Level 6 not implemented
fixme:service:QueryServiceConfig2W Level 6 not implemented
fixme:service:QueryServiceConfig2W Level 6 not implemented
fixme:service:QueryServiceConfig2W Level 6 not implemented
fixme:ntdll:EtwEventUnregister (deadbeef) stub.
```
Of course, the Microsoft Windows XP comctl32.dll doesn't implement
HIMAGELIST_QueryInterface, which, according to
https://msdn.microsoft.com/en-us/library/windows/desktop/bb761510(v=vs.85).…
requires at least Windows Vista. The corresponding wine API is documented in
https://source.winehq.org/WineAPI/HIMAGELIST_QueryInterface.html.
Other examples of Windows applications that fail with the same message include:
* PDF-Xchange Viewer version 2.5 - it doesn't start at all.
* FastStone Image Viewer 6.2 - it hangs with an hourglass mouse pointer.
The obvious work-around is not to load the native comctl32.dll and rely
entirely on the built-in dll. While this works, as it has always worked in the
past, the native implementation lacks enough functionality that at least
IrfanView and Faststone image capture do not work well. That is why several
forum threads recommend using Microsoft's comctr32.dll for such applications.
For IrfanView, the impairment is mainly cosmetic, so it can be tolerated.
Faststone Image Capture, however, can't display thumbnails past the first
screenful (about 20-30 pictures) if the native comctl32 DLL isn't loaded.
# Conclusion
IrfanView and other important Windows applications fail to work partially or
entirely when the native comctl32.dll is loaded. Before version wine 2.10
(possibly 2.8) they all worked without a glitch. The native comctl32.dll is
still needed for full application compatibility because the built-in
replacement DLL lacks some functionality (tested with wine 2.14).
--
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=33422
Bug #: 33422
Summary: reporting 'EditWndProc_common undocumented message
0xbf' on behalf of the message
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: heinrich5991(a)gmx.de
Classification: Unclassified
fixme:edit:EditWndProc_common undocumented message 0xbf, please report
That's how you can reproduce it:
1. Download Kaiser 1.22a (http://www.yadam.de/KAISER/kaiser.htm).
2. Start it.
3. When prompted for the names of the players, focus the edit field and click
somewhere else in the window where no other input are.
--
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=52952
Bug ID: 52952
Summary: Jagex Launcher: Installer does not show
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: mshtml
Assignee: wine-bugs(a)winehq.org
Reporter: zanzu1(a)outlook.com
Distribution: ---
Created attachment 72322
--> https://bugs.winehq.org/attachment.cgi?id=72322
wine output
Running the setup for jagex launcher with wine does not show anything.
Tested on a clean prefix with wine 7.7 (staging).
Download link: https://cdn.jagex.com/Jagex%20Launcher%20Installer.exe
--
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=18288
Summary: Quicktime 3 creates unusual menus / string value error
Product: Wine
Version: 1.1.20
Platform: PC
URL: http://www.oldversion.com/download/quicktime302.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
Created an attachment (id=20819)
--> (http://bugs.winehq.org/attachment.cgi?id=20819)
Wine 1.1.20 +menubuilder
The Quicktime 3.0.2 installer reports an error when attempting to create
program groups and icons:
"String variable is not large enough for string.
Check the string declarations.
Error 401."
The installer then creates an unusual directory structure:
ls -aR /home/test/.local/share/applications/wine/Programs
/home/test/.local/share/applications/wine/Programs:
. .. QuickTime QuickTime 3.0
/home/test/.local/share/applications/wine/Programs/QuickTime:
. .. MoviePlayer.desktop PictureViewer.desktop ReadMe.desktop UnInstall
QuickTime 3.0.desktop
/home/test/.local/share/applications/wine/Programs/QuickTime 3.0:
. .. .desktop
Setup completes successfully.
--
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=39000
Bug ID: 39000
Summary: Netgear ReadyNAS Remote error during install
Product: Wine
Version: 1.7.48
Hardware: x86-64
URL: http://remote.readynas.com/ReadyNASRemoteSetup.exe
OS: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: mscoree
Assignee: wine-bugs(a)winehq.org
Reporter: imwellcushtymelike(a)gmail.com
Distribution: Ubuntu
Created attachment 51959
--> https://bugs.winehq.org/attachment.cgi?id=51959
wine-1.7.48-46-g571462c console output
During the installation of Netgear's ReadyNAS Remote a dialog pops up stating:
"The C:\windows\mono\mono-2.0\lib\mono\4.5\RegAsm.exe files was not found."
Indeed, the file does not exist, but I doubt it is looking in the correct
place.
Workaround is "winetricks dotnet40".
During installation there is another error about NPF not being found; this is
WinPcap and the same occurs on Windows 8.1 - WinPcap simply isn't installed.
$ sha1sum ReadyNASRemoteSetup.exe
e46dc008f3c082200b9332c0ca8364f08c331b88 ReadyNASRemoteSetup.exe
--
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=44203
Bug ID: 44203
Summary: SlingPlayer 2 crashes under Wine Staging
Product: Wine-staging
Version: 2.21
Hardware: x86
URL: http://download.slingmedia.com/player/pc/SlingPlayer_2
.0.4522_Setup-Global.exe
OS: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: imwellcushtymelike(a)gmail.com
CC: erich.e.hoover(a)wine-staging.com, michael(a)fds-team.de,
sebastian(a)fds-team.de
Distribution: Ubuntu
Created attachment 59971
--> https://bugs.winehq.org/attachment.cgi?id=59971
Wine Staging 2.21 console output
Under Wine Staging 2.21, SlingPlayer 2.0 crashes in a way that it does not
under vanilla Wine 3.0-rc2.
I tried patching latest git with the dxva2 patches, as that seems to be the
last thing mentioned in the log before the crash but when I did that it doesn't
seem to be used:
0009:trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\dxva2.dll"
at 0x7c020000: builtin
0009:trace:loaddll:free_modref Unloaded module
L"C:\\windows\\system32\\dxva2.dll" : builtin
I guess something needs setting in the registry or the likes.
To get this far, the following overrides are needed:
WINEARCH=win32 - Bug 35268 / Bug 35276
quartz - Bug 18556
wmp9 - Bug 28669
mf - Bug 44201
The application crashes on load so you do not need a Slingbox to test.
01:00.0 VGA compatible controller: NVIDIA Corporation NV34 [GeForce FX 5200]
(rev a1)
--
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=26871
Summary: Dawn of War demo uninstaller doesn't do anything
Product: Wine
Version: 1.3.18
Platform: x86-64
URL: http://download.cnet.com/Warhammer-40-000-Dawn-of-War-
demo/3000-7483_4-10317161.html
OS/Version: Linux
Status: NEW
Keywords: download, Installer
Severity: minor
Priority: P3
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
Created an attachment (id=34254)
--> (http://bugs.winehq.org/attachment.cgi?id=34254)
Wine 1.3.18 +msi +msidb [3.3MB]
The Warhammer 40k: Dawn of War demo uninstaller claims to complete
successfully, but doesn't actually do anything.
Nothing useful in the console.
--
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=52126
Bug ID: 52126
Summary: SlingPlayer 1.5 uninstaller fails in a 64-bit
wineprefix
Product: Wine
Version: 6.22
Hardware: x86-64
URL: http://download.slingmedia.com/player/pc/SlingPlayer-S
etup-EU-1.5.1.343.exe
OS: Linux
Status: NEW
Keywords: download, Installer
Severity: minor
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: imwellcushtymelike(a)gmail.com
Distribution: Ubuntu
Created attachment 71161
--> https://bugs.winehq.org/attachment.cgi?id=71161
Wine 6.22 +msiexec,+msidb [3.8 MB]
In a 64-bit WINEPREFIX, the uninstaller for SlingPlayer 1.5 briefly appears,
then exits silently.
In a 32-bit WINEPREFIX it gets further but is still useless (Bug 44233).
0130:fixme:imm:ImeSetActiveContext (0x42120, 1): stub
0130:fixme:imm:ImmReleaseContext (0000000000010056, 0000000000042120): stub
0144:fixme:imm:ImeSetActiveContext (0x5443e8, 1): stub
0144:fixme:imm:ImmReleaseContext (000100A8, 005443E8): stub
0144:fixme:file:NtLockFile I/O completion on lock not implemented yet
0144:fixme:ntdll:NtQuerySystemInformation info_class
SYSTEM_PERFORMANCE_INFORMATION
0144:fixme:apphelp:ApphelpCheckInstallShieldPackage stub: 0032F06C
L"C:\\windows\\Downloaded
Installations\\{B88A2B9B-2C2F-425D-ACC8-29AE0207D80C}\\SlingPlayer.msi"
0144:err:ole:CoReleaseMarshalData StdMarshal ReleaseMarshalData failed with
error 0x8001011d
I'd be surprised if this isn't a duplicate but I can't find anything matching
it.
--
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=15590
Summary: Photoshop CS3 fails due to Bonjour Service startup error
Product: Wine
Version: CVS/GIT
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gimpel(a)sonnenkinder.org
Created an attachment (id=16593)
--> (http://bugs.winehq.org/attachment.cgi?id=16593)
photoshop cs3 bonjour error
I'm still having problems installing Photoshop CS3. It fails due to the bonjour
service not starting correctly. The shared components seem to install correctly
though.
Wine version is yesterday's GIT (1.1.6+). My system does have mDNSResponder
installed, but not started. Otherwhise there is no support for Zeroconf
protocol available (No avahi, no nss-mdns installed etc)
Attached is the installer output (last few lines)
--
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=23345
Summary: Adobe Reader freezes when trying to open embedded
multimedia
Product: Wine
Version: 1.2-rc4
Platform: x86-64
URL: http://www.adobe.com/
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: septim.dt(a)gmail.com
Created an attachment (id=29085)
--> (http://bugs.winehq.org/attachment.cgi?id=29085)
Terminal output with backtrace on wine-1.2-rc4-119-g410f8e9
When I try to play an avi video embedded in a PDF file (made with the LaTeX
multimedia package) Adobe Reader freezes. I also found this problem reported on
the AppDB page, but I couldn't find a bug report. Terminal output with
backtrace attached (using wine wine-1.2-rc4-119-g410f8e9).
--
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=21918
Summary: Alt key doesn't show menu in Notepad++
Product: Wine
Version: 1.1.39
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mathias.buren(a)gmail.com
On Ubuntu 9.10c 32-bit; Wine 1.1.39. I installed Notepad++ (
http://notepad-plus.sourceforge.net/uk/site.htm ), went to options and enabled
"hide menu until alt key is pressed". The menu becomes hidden alright, but it
doesn't show the menu again when I press the alt key (tried both left and right
alt).
Expected behaviour: The menu shows on when the alt key is pressed.
--
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=26550
Summary: Top shows unnamed process when running GomezPEER
Product: Wine
Version: 1.3.16
Platform: x86-64
URL: http://lastmile.gomez.com/PEERInstall.exe
OS/Version: Linux
Status: NEW
Keywords: download
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
When GomezPEER is running it launches java.exe (Windows version of command-line
Java), but Top shows a running process with no name.
gnome-system-monitor shows "." and the command line as the environment
variables only.
GomezPEER.exe itself appears on the list fine, as does the Wine .exes, but
java.exe seems to be affected in this way.
This could very easily be mistaken as a virus (which I thought when I initially
ran it way back).
Console output:
fixme:win:EnumDisplayDevicesW ((null),0,0x73a83c,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),1,0x73a83c,0x00000000), stub!
fixme:ddraw:DirectDrawEnumerateExA flags 0x00000001 not handled
fixme:win:EnumDisplayDevicesW ((null),0,0x74b69c,0x00000000), stub!
fixme:font:WineEngCreateFontInstance Untranslated charset 255
fixme:time:GetSystemTimes (0xd9ee5a0,0xd9ee5b0,0xd9ee5a8): Stub!
fixme:time:GetSystemTimes (0xd9ee5a0,0xd9ee5b0,0xd9ee5a8): Stub!
--
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=54336
Bug ID: 54336
Summary: Wow64 compatibility breaks on newer 64-bit glibc
releases
Product: Wine
Version: 8.0-rc4
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: ruanformigoni(a)gmail.com
Distribution: ---
Newer versions of 64-bit glibc break current Wow64 compatibility
implementation.
For a new vm of fedora 36:
$ ./wine-ge-7-35-continuous-x86_64.AppImage --version
Usage: wine PROGRAM [ARGUMENTS...] Run the specified program
wine --help Display this help and exit
wine --version Output version information and exit
glibc.x86_64 version is 2.35-20.fc36
glibc.i686 is not installed.
--
For a new vm of fedora 37:
$ /wine-ge-7-35-continuous-x86_64.AppImage --version
/tmp/.mount_wine-gEI9DJM/bin/wine: No such file or directory
glibc.x86_64 version is 2.36-9.fc37
glibc.i686 is not installed (installing fixes it).
--
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=42033
Bug ID: 42033
Summary: Fallout 3: Radio music not playing
Product: Wine
Version: 2.0-rc1
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: aaronbpaden(a)gmail.com
Distribution: ---
Created attachment 56507
--> https://bugs.winehq.org/attachment.cgi?id=56507
log
When listening to the radio in Fallout 3, the DJ's voice works, but the songs
don't. Sometimes you'll hear the song start for a second, but then it stops and
the DJ's voice starts up again. This happens both on GNR and the enclave
station.
--
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=48785
Bug ID: 48785
Summary: S.T.A.L.K.E.R. Anomaly : lighting problem with
flashlight?
Product: Wine-staging
Version: 5.3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: delentef(a)gmail.com
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
Hello,
I remember playing other STALKER mods 1 ou 2 years ago without problem (on
wine-staging 3.21 IIRC) . But here, with wine-staging 5.3, on Fedora 31, with
NVIDIA drivers 440.64 on a RTX2060, with DXVK 1.5 , I can't get the flashlight
to work: I press the key for the flashlight, I hear its sound, I see a brief
flash but it doesn't light anything after that.
I have tried the rendering modes available to the games: DX8, DX9 , DX10 and
DX11 (); DX10 and DX11 crash with an error in D3DX11GetImageInfoFromMemory /
function CRendeer::texture_load / file ..\xRenderDX10\dx10Texture.cpp for the
ui_font_hud_01.dds file.
DX8 and the various DX9 modes make the game work flawlessly, but I don't have
the flashlight...
I'm no expert at all, but it seems that there was a rendering issue introduced
between the last version of wine 3 and the first version of wine 4, because as
far as I remember it happened at this time. And I had to reinstall wine-staging
3.21 to be able to continue playing because wine-staging 4.0 had this lighting
problem already.
I can attach log files or debug traces if needs be.
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=54237
Bug ID: 54237
Summary: Metatrader 5 - dashed lines are not correctly drawn on
the charts
Product: Wine
Version: 8.0-rc2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: blueprint.trading(a)gmail.com
Distribution: ---
In MetaTrader 5 by inserting on a chart, for example, a moving average and
selecting the "dashed" style, the line designed on the graph is as if it had
the "solid" style, except in some short sections.
--
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=53885
Bug ID: 53885
Summary: MT5; tooltip still showing instead it should already
went away
Product: Wine
Version: 7.20
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: haxpor(a)gmail.com
Distribution: ---
Created attachment 73427
--> https://bugs.winehq.org/attachment.cgi?id=73427
Tooltip still shows
Tested with both wine-stable and wine-devel.
Tooltip should hide already, but it still shows. Please see the attached image.
Such tooltip will show where the mouse cursor would be, so if I move my mouse
cursor to somewhere else (literally anywhere) it will show such tooltip there,
and keep hanging there.
Until I close the file I'm editing, it will hide. But issue will repeat itself.
--
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=48810
Bug ID: 48810
Summary: Admiral Markets Meta Trader 5 can't dock windows when
window manager is allowed to decorate the windows
Product: Wine
Version: 5.4
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dark.shadow4(a)web.de
Distribution: ---
The main windows of the program has a bunch of sub-windows. You can drag them
out of the main window (turning them into a separate window) and then dock then
into the main window again.
Example for that are "Navigator" or "Data Window" on the left.
The problem only happens when the window manager is allowed to decorate the
windows:
winecfg Graphics->Allow the windows manager to decorate the windows
When that setting is enabled, the docking doesn't work properly. Dragging the
window bar won't dock the window into the main window.
There's a 1-4 pixel border below the window bar than can be used to dock the
window, but that's pretty difficult to hit.
The program is available for free, but you need to create an account to test.
Download Link:
https://admiralmarkets.com/trading-platforms/metatrader-5
Archived:
https://web.archive.org/web/20200325193024/https://download.mql5.com/cdn/we…
Default aplication path is ".wine/drive_c/Program Files/Admiral Markets MT5
/terminal64.exe"
--
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=48764
Bug ID: 48764
Summary: Some drop down in MT4 expert advisor not showing, but
we still can change the value by scroll or down or up
arrow
Product: Wine
Version: 5.3
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: comctl32
Assignee: wine-bugs(a)winehq.org
Reporter: iip.umar.rifai(a)gmail.com
Distribution: ---
Created attachment 66669
--> https://bugs.winehq.org/attachment.cgi?id=66669
Blue box mark is working fine, the black box mark is not working.
Some drop down doesn't work as expected, but we can change the value by scroll
or up/down arrow.
In attachment, the blue box mark is working fine, the black box mark is not
working.
--
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=48384
Bug ID: 48384
Summary: MetaTrader 4 - all accounts and messages in the
mailbox disappeared with wine-staging 5.0rc2
Product: Wine-staging
Version: 5.0-rc2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: tst1(a)mixbox.pl
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
After upgrading of wine-staging to 5.0rc2 there was a problems with MetaTreder
4: all my accounts and messages in the mailbox disappeared.
Downgrading wine-staging to 4.21 and restoring of my settings (from my backup)
in MetaTrader 4 solved this problem.
--
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=48352
Bug ID: 48352
Summary: Metatrader 4 window title header disappears
Product: Wine
Version: 5.0-rc2
Hardware: x86
OS: Mac OS X
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: shidianwei(a)gmail.com
Scenario 1:
1. Click "Experts" tab in "Terminal" window in Metatrader 4.
2. Click Timeframes buttons on the toolbar, that is "M1", "M5", "M15"......
This operation will generate some outputs in "Experts"
3. Scroll the vertical scroll bar in "Experts" to the bottom.
4. Click Timeframes buttons on the toolbar again.
5. The header in "Experts" disappears!
Scenario 2:
1. Place enough number of orders to make the vertical scroll bar visible in
"Trade" tab in "Terminal" window in Metarader 4.
2. Scroll the vertical scroll bar in "Trade" to the bottom.
3. The header in "Trade" disappears!
This bug exists since Wine version 4.
--
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=46767
Bug ID: 46767
Summary: I cannot connect to url in webrequest function of mt4
Product: Wine
Version: 4.3
Hardware: x86-64
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: angelalmuenda(a)gmail.com
Created attachment 63777
--> https://bugs.winehq.org/attachment.cgi?id=63777
log of mt4 in wine cannot connect to webrequest
I cannot connect to url in webrequest function of mt4 terminal
--
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=46424
Bug ID: 46424
Summary: не запускается с данным релизом
Product: Wine
Version: 3.0.4
Hardware: x86-64
OS: Mac OS X
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: nomig(a)yandex.ru
Created attachment 63196
--> https://bugs.winehq.org/attachment.cgi?id=63196
ошибка
не запускается приложение Metatrader 5 64 bit на Mac Os 10.14.2
--
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=45746
Bug ID: 45746
Summary: import pfx fails
Product: Wine
Version: 3.14
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: crypt32
Assignee: wine-bugs(a)winehq.org
Reporter: virexmail(a)gmail.com
Distribution: ---
crypt32 installed with a winetricks, but pfx files cannot be imported in
certification center, and programs cannot import certificates from pfx 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=45083
Bug ID: 45083
Summary: MetaTrader 5 hangs on exit
Product: Wine
Version: 3.7
Hardware: x86-64
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: persiantools(a)yahoo.com
Created attachment 61238
--> https://bugs.winehq.org/attachment.cgi?id=61238
Console error log
MetaTrader 5 hangs on exit. Please refer to the attached console log for
details.
--
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=44730
Bug ID: 44730
Summary: wineserver freeze, 50% CPU, with Metarader 5
Product: Wine
Version: 3.3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wineserver
Assignee: wine-bugs(a)winehq.org
Reporter: tpaul2015(a)yandex.com
Distribution: ---
Created attachment 60738
--> https://bugs.winehq.org/attachment.cgi?id=60738
shutdown messages
Built wine 3.3 from source using wow64 method on Centos 7. I used wine to
install Metatrader 5,
https://download.mql5.com/cdn/web/metaquotes.software.corp/mt5/mt5setup.exe,
Then
$cd .wine/drive_c/Program\ Files/MetaTrader\ 5/
$wine64 terminal64.exe
0009:fixme:heap:RtlSetHeapInformation 0x370000 0 0x23ed20 4 stub
Occasionally it runs without a problem. Often Metrader5 will not launch,
wineserver goes to around 50% CPU and cannot be killed. (wineserver -k9). Need
to reboot the system. On shutting down Centos states "failed to unmount /home"
ERROR: 0009:fixme:heap:RtlSetHeapInformation 0x370000 0 0x23ed20 4 stub
OS: Centos 7
Kernel: 3.10.0-693.17.1.el7.x86_64
CPU: AMD Athlon 7750 Dual-Core Processor
--
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=44425
Bug ID: 44425
Summary: MT4 popup hint window wrong
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: shidianwei(a)gmail.com
Created attachment 60367
--> https://bugs.winehq.org/attachment.cgi?id=60367
popup window displays even the cursor not on a bar
A feature in MetaTrader 4: A popup hint window will display when the cursor put
in the range of a bar.
MetaTrader 4 running on WINE popups the hint window EVERYWHERE even when the
cursor not in the range of a bar.
--
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=43997
Bug ID: 43997
Summary: MetaTrader 5 doesn't start
Product: Wine
Version: 2.20
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: ppc-2(a)mail.ru
Distribution: ---
Created attachment 59655
--> https://bugs.winehq.org/attachment.cgi?id=59655
bugtrace with description error
When I start programm MetaTrader 5, it show me warning window with critical
error.
It Does not want to work.
--
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=37589
Bug ID: 37589
Summary: Problem with toolbars in Metatrader 4
Product: Wine
Version: 1.6.2
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: michal.ciechelski(a)gmail.com
Distribution: ---
Created attachment 50017
--> https://bugs.winehq.org/attachment.cgi?id=50017
Toolbars in vertical position - I draw red "circles" in places where separators
are incorrectly displayed.
Hello,
I have noticed a problem with toolbars in Metatrader 4. When I change toolbars
with separators between icons from horizontal to vertical position, toolbars
aren't displayed properly - heights of toolbars are too small and separators
don't extend the entire width of the toolbar.
When I remove separators from each toolbar everything works fine.
In attached file I draw red "circles" in places where separators are
incorrectly displayed.
I'm using Metatrader 4 with Wine 1.6.2 on Xubuntu 14.04 LTS (32-bit).
Thank you for your help and sorry for any mistakes
Michal
--
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=36729
Bug ID: 36729
Summary: Metatrader 4.x can't install Expert Advisors from
market (EAs)
Product: Wine
Version: 1.7.19
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: home(a)simonb.org.uk
Created attachment 48776
--> http://bugs.winehq.org/attachment.cgi?id=48776
Output from MT4 terminal.exe when trying to install EA with MT4 already running
The website, http://www.mql4.com/, is integrated into the newest builds of
Metatrader. To install EAs, you click on the "Download" link of the EA. For
example, on this page...
http://www.mql5.com/en/market/product/1870
This redirects to a URL of the form,
"mql4buy://1870.PZ%20Goldfinch%20Scalper%20EA/free".
On Windows, this starts an instance of Metatrader terminal.exe with the
remainder of the URL passed as a parameter e.g.
terminal.exe "//1870.PZ Goldfinch Scalper EA/free"
This either starts Metatrader, or if it is already running, installs the EA and
exits.
The first part of the bug is that mql4buy URLs are not handled correctly by
Wine Explorer i.e. they are not passed to terminal.exe as they are on a real
Windows installation. The second issue is that even if the URL is fed to
terminal.exe manually, it does nothing. The EA is not installed.
The same problem exists using MT5, 64 bit.
I am using Kubuntu 14.04 and MT4 is installed in its own WINEPREFIX, 32bit
arch.
--
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=35974
Bug ID: 35974
Summary: Wine 1.7.16: MetaTrader 4 incorrect ellipse drawing
Product: Wine
Version: 1.7.16
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: aliakc(a)web.de
Created attachment 48089
--> http://bugs.winehq.org/attachment.cgi?id=48089
Wrong Ellipses drawing!
Since I remember MetaTrader 4 (Builds from 400 - 628) Wine shows issues when
drawing ellipses on the Chart. I will attach a picture showing this issue and
would really like to see a fix for it (in case of a Wine issue).
Drawing of Squares = Ok
Drawing of Triangles = Ok
Drawing of Ellipses = Fail
--
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=23278
Summary: MetaTrade4: There is no min horizontal window size.
Product: Wine
Version: 1.2-rc4
Platform: x86
URL: http://www.metatrader4.com/files/mt4setup.exe
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wylda(a)volny.cz
MetaEditor.exe (part of MetaTrader4) on WinXP has a minimum horizontal window
size limit 600px. Wine ignores this limit. I tried many versions since 0.9.49,
but it looks like MT4 never worked
correctly.
Requires: winetricks mfc42
--
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=23277
Summary: Icon transparency problem in MetaEditor.exe
Product: Wine
Version: 1.2-rc4
Platform: x86
URL: http://www.metatrader4.com/files/mt4setup.exe
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wylda(a)volny.cz
Created an attachment (id=29014)
--> (http://bugs.winehq.org/attachment.cgi?id=29014)
Screen shot WinXP vs Wine
MetaEditor (part of MetaTrader4) has problems with transparency of icons.
Attachment shows that better.
--
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=23279
Summary: MetaTrade4: Items in navigator are sorted differently
Product: Wine
Version: 1.2-rc4
Platform: x86
URL: http://www.metatrader4.com/files/mt4setup.exe
OS/Version: Linux
Status: NEW
Keywords: download
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wylda(a)volny.cz
Created an attachment (id=29015)
--> (http://bugs.winehq.org/attachment.cgi?id=29015)
Screen shot WinXP vs Wine
Entries in navigator's window of MetaEditor.exe (part of MetaTrader4) are
sorted differently compared to WinXP. I tried many versions since 0.9.49 till
1.2-rc4, but it looks like MT4 never worked correctly. Attachment shows that
better.
Requires: winetricks mfc42
--
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=13529
Summary: wine doesn't run under a X client for windows under wine
[dogfood?]
Product: Wine
Version: 1.0-rc2
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andriusmao(a)gmail.com
I was doing some tests and kde runs properly under a X client for windows (such
as Xming and WinaXe) under wine. But wine starts debugger when trying to run
any windows program (such as these provided by WinaXe or such as winecfg) in
"remote" display.
--
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=37833
Bug ID: 37833
Summary: BOINC uninstaller claims to be upgrading
Product: Wine
Version: 1.6.2
Hardware: x86-64
URL: http://boinc.berkeley.edu/dl/boinc_7.4.36_windows_inte
lx86.exe
OS: Linux
Status: NEW
Keywords: download, Installer, source
Severity: trivial
Priority: P2
Component: msi
Assignee: wine-bugs(a)winehq.org
Reporter: imwellcushtymelike(a)gmail.com
Distribution: Ubuntu
Created attachment 50381
--> https://bugs.winehq.org/attachment.cgi?id=50381
Wine 1.7.33 +msiexec,+msidb [5.5 MB]
When running the uninstall for BOINC from "wine uninstaller", the uninstaller
claims to be upgrading BOINC. The uninstall completes successfully. For some
reason the wrong messages are being displayed.
Tested with Wine 1.6.2 and Wine 1.7.33 with BOINC version 5.8.16, 6.6.38,
7.0.64 and 7.4.36, all 32-bit. 64-bit uninstall does not appear in the
uninstaller list.
Very little in the console so attaching a trace.
fixme:ntdll:NtLockFile I/O completion on lock not implemented yet
err:rpc:I_RpcGetBuffer no binding
err:rpc:I_RpcGetBuffer no binding
--
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=35250
Bug ID: 35250
Summary: BOINC service install fails
Product: Wine
Version: 1.7.9
Hardware: x86-64
URL: http://boinc.berkeley.edu/dl/boinc_7.2.33_windows_inte
lx86.exe
OS: Linux
Status: NEW
Keywords: download, Installer, source
Severity: minor
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: imwellcushtymelike(a)gmail.com
Classification: Unclassified
Created attachment 47015
--> http://bugs.winehq.org/attachment.cgi?id=47015
wine-1.7.9-43-gbfb4f28 console output
The installer for BOINC 7.2.33 fails if "install as a service" is chosen during
the installation.
err:msi:ITERATE_Actions Execution halted, action L"CAGrantBOINCMasterRights"
returned 1603
err:msi:ITERATE_Actions Execution halted, action L"ExecuteAction" returned 1603
Workaround: uncheck this option.
BOINC is open source but I don't know about the installer.
--
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=20036
Summary: Monopoly Tycoon crash while starting
Product: Wine
Version: 1.1.29
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-ddraw
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jaimerave(a)gmail.com
Created an attachment (id=23582)
--> (http://bugs.winehq.org/attachment.cgi?id=23582)
Console output
While the game is starting it shows a warning an after i close it it just
crash. You can see the console output.
--
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=26225
Summary: An unmanaged window moves wrong way (and disappears)
when mouse goes to another X screen
Product: Wine
Version: 1.3.13
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: winex11.drv
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: exclusion(a)gmail.com
When the window managed by Wine (not by X window manager) is moving with the
mouse and the mouse pointer goes to another screen (for example, at the right
side), the window starts to move down the screen and then dissapears.
It seems it's related to the MotionNotify event handler in
dlls/winex11.drv/mouse.c.
Xlib programming manual describes XMotionEvent as follows:
The same_screen member is set to indicate whether the event window is on the
same screen as the root window and can be either True or False . If True , the
event and root windows are on the same screen. If False , the event and root
windows are not on the same screen.
…
If the event window is on the same screen as the root window, the x and y
members are set to the coordinates relative to the event window's origin.
Otherwise, these members are set to zero.
But the MotionNotify event doesn't check the same_screen member and passes null
coordinates to the update_mouse_state function and it causes wrong window
positioning.
--
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=50487
Bug ID: 50487
Summary: C++ exception(object = 0x16b9e19c, type = 0x22565e84)
in Seneka EBYS/EBDYS
Product: Wine
Version: 6.0-rc1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: mtombak(a)hssgm.gov.tr
Distribution: ---
Created attachment 69132
--> https://bugs.winehq.org/attachment.cgi?id=69132
Backtrace file of Seneka EBYS/EBDYS and wine staging 6.0 rc1 (x86)
I am using Debian 10 buster (amd64). I am using Seneka EBDYS / EBYS Document
Managing System on Wine staging 6.0 rc1 (x86). The program fails when i try to
see and print any document. The backtrace file is in attachments
--
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=45182
Bug ID: 45182
Summary: RebelBetting: restore from systray crashes
Product: Wine
Version: 3.8
Hardware: x86
URL: http://rebelbetting.com/files/RebelBettingSetup.exe
OS: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: imwellcushtymelike(a)gmail.com
Distribution: Ubuntu
Created attachment 61402
--> https://bugs.winehq.org/attachment.cgi?id=61402
Wine 3.8 first run
With Wine 3.8, after configuring RebelBetting to "hide when closed" and "hide
from taskbar", the application will crash when restoring from the systray
(though sometimes it just zombies!).
However, the application reappears before truly "hiding" into the systray and
has to be "closed" (to systray) a second time. I am assuming the two are
related rather than separate bugs, but it is a pretty big assumption.
“winetricks dotnet45” needed to get this far (Bug 37883).
Account required to get this far.
Second run has a different log. Both attached (again, assuming to be the same
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=48014
Bug ID: 48014
Summary: Rebelbetting: multiple errors with Mono
Product: Wine
Version: 4.18
Hardware: x86-64
URL: http://rebelbetting.com/files/RebelBettingSetup.exe
OS: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: mscoree
Assignee: wine-bugs(a)winehq.org
Reporter: imwellcushtymelike(a)gmail.com
Distribution: Ubuntu
Created attachment 65547
--> https://bugs.winehq.org/attachment.cgi?id=65547
Wine 4.18 console log
Running Rebelbetting immediately pops up a “Serious error” dialog, which pops
up multiple times while trying to do anything with the application.
The application also doesn't load correctly: there are panes missing in the
main window.
0009:fixme:mscoree:parse_supported_runtime sku=L".NETFramework,Version=v4.5"
not implemented
Rebelbetting is a .Net 4.5 app.
I have tried running with WINE_MONO_TRACE=wrapper but it is a bit too busy.
Seems to hit Forms a lot.
Tried msxml{3,4,6} gdiplus vcrun2013 for giggles. No change. Same in Vanilla
and Staging.
Workaround is native dotnet45.
--
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=48013
Bug ID: 48013
Summary: Rebelbetting: crash during update
Product: Wine
Version: 4.18
Hardware: x86-64
URL: http://rebelbetting.com/files/RebelBettingSetup.exe
OS: Linux
Status: NEW
Keywords: download
Severity: trivial
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: imwellcushtymelike(a)gmail.com
Distribution: Ubuntu
Created attachment 65545
--> https://bugs.winehq.org/attachment.cgi?id=65545
Wine 4.18 console log
Rebelbetting 6.15 checks for an update on start-up, downloads it, and asks you
to install it before continuing.
The download completes normally but when clicking on “Install” the crash dialog
appears. It is not clear what effect this crash is having.
Following the install everything appears normal.
Workarounds:
WINEARCH=win32 winetricks -q dotnet45
No log-in needed to get this far.
sha1: 7141fbd9ab5bd7fc299d5a874e428a436f937507 RebelBettingSetup.exe
--
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=52296
Bug ID: 52296
Summary: UltraVNC 1.3.4.0 and later hangs after pressing
Connect.
Product: Wine
Version: 7.0-rc3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: bernhardu(a)mailbox.org
Distribution: ---
Starting vncviewer with no parameters shows the connection window.
After specifiying a UltraVNC server (1.3.6.0) and pressing "Connect"
the connection window closes and nothing more happens.
This is observable with versions 1.3.4.0, 1.3.4.1, 1.3.4.2, 1.3.6.0.
In previous version 1.3.2a after pressing "Connect"
a connection status window and another window to enter the password appears.
--
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=50465
Bug ID: 50465
Summary: My application does not want to run on my mac
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: apphelp
Assignee: wine-bugs(a)winehq.org
Reporter: lethaboblacc(a)gmail.com
Wine does not want to run on my Mac
--
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=50574
Bug ID: 50574
Summary: Ole32 breaks Explorer completely after installing
Product: Wine
Version: 6.0-rc6
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ole32
Assignee: wine-bugs(a)winehq.org
Reporter: didgeridude(a)ukr.net
Distribution: ---
Created attachment 69249
--> https://bugs.winehq.org/attachment.cgi?id=69249
The backtrace of ole32 installation and Explorer launch attempt is given.
Ole32 and oleaut32 components are needed by some MS applications like MS Word
to run working instances of associated applications inside the main application
and edit the attached content. However, installing them inside Wine breaks the
onboard Explorer with an error:
'fixme:wintrust:WinVerifyTrust unimplemented for 4'
This confirmed for Wine 5.x and staging Wine 6.x versions.
--
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=50575
Bug ID: 50575
Summary: Estou tentando baixar programas do Windows no Linux,
quando eu abro o arquivo, da erro no programa, e diz
pra acessar o Banco de dados
Product: WineHQ Apps Database
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: appdb-unknown
Assignee: wine-bugs(a)winehq.org
Reporter: danielrocha281004(a)gmail.com
Distribution: ---
Created attachment 69250
--> https://bugs.winehq.org/attachment.cgi?id=69250
erros do programa
Preciso de ajuda!
--
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=44870
Bug ID: 44870
Summary: dotnet40 doesn't install properly with windows version
> XP
Product: Wine
Version: 3.4
Hardware: x86
URL: https://www.microsoft.com/en-US/Download/confirmation.
aspx?id=17718
OS: Linux
Status: NEW
Keywords: dotnet, download
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dark.shadow4(a)web.de
Distribution: ---
Steps to reproduce:
Fresh 32bit wineprefix
wine uninstaller, remove wine-mono
(Set windows version to xp)
Run installer
Set mscoree to 'native'
When you don't set the windows version to xp, then it won't be able to find
mscoree:
> 0071:err:module:fixup_imports_ilonly mscoree.dll not found, IL-only binary L"WindowsFormsApplication1.exe" cannot be loaded
> 0071:err:module:attach_dlls Importing dlls for L"Z:\\dev\\shm\\ramdisk\\WindowsFormsApplication1.exe" failed, status c0000135
This affects both 32bit and 64bit prefixes.
--
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=43481
Bug ID: 43481
Summary: GeoForms Demo needs "vs_2_a" compilation target
Product: Wine
Version: 2.14
Hardware: x86-64
URL: http://www.nvidia.com/coolstuff/demos#!/geoforms
OS: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: directx-d3dx9
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
Distribution: ---
fixme:d3dcompiler:compile_shader Compilation target "vs_2_a" not yet supported
--
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=53238
Bug ID: 53238
Summary: WET (a dotnet45 framework for web printing terminal):
not print properly with thermal printer
Product: Wine
Version: 7.11
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P1
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dejoebad(a)yahoo.com
Distribution: ---
Created attachment 72635
--> https://bugs.winehq.org/attachment.cgi?id=72635
a6 size, on a4 on P3015 vs on a6 on TTP244 Pro
this is my configuration that work to print with a print terminal, build with
dotnet framework.
1. lubuntu 22.04
2. winehq-staging (wine 7.11)
3. printer terminal (WET.msi)
4. dotnet48
5. gdiplus
6. an HP P3015 printer
(same condition) this is my configuration that NOT work to print.
1. lubuntu 22.04
2. winehq-staging (wine 7.11)
3. printer terminal (WET.msi)
4. dotnet48
5. gdiplus
6. a TSC TTP244 Pro
--
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=46249
Bug ID: 46249
Summary: Art-Zvit crashes on start
Product: Wine
Version: 3.19
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P4
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: sunweb(a)hotmail.ru
Distribution: ---
Created attachment 62948
--> https://bugs.winehq.org/attachment.cgi?id=62948
error_log
Hi, i'm trying to install a program that is widely used in my country. It
installs but when i start it it crashes. Could you look at it please?
The program doesn't require any code to run so you can try to install it
yourselves.
Here is a link https://art-zvit.com.ua/uk/software/download it has hashes in
there to check.
Direct link to Full version with all dependecies included in the archive:
https://files.masterkey.ua/V4/ArtZvitPlus_Setup_Full.zip
Direct link to version without dependecies:
https://files.masterkey.ua/V4/ArtZvit_Setup.exe
--
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=50984
Bug ID: 50984
Summary: Amazon games application fails to install a game
pre-download
Product: Wine
Version: 6.6
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: ryan(a)rnrcarpet.com
Distribution: ---
Amazon games application and Wine 6.6+ at the very least, games fail to
download and install.
Amazon application error appears after what appears to be a timeout when trying
to install a game. Application continues to function fine but no games will
download.
See https://bugs.winehq.org/show_bug.cgi?id=49266 for details on getting to
this point.
Application requires amazon.com account and games probably require being or
having been an Amazon Prime member and obtaining free Amazon Prime Twitch
games.
No logs currently sorry.
--
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=49965
Bug ID: 49965
Summary: Wine crash upon clicking a password form
Product: Wine
Version: 5.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: javi(a)legido.com
Distribution: ---
Created attachment 68360
--> https://bugs.winehq.org/attachment.cgi?id=68360
Backtrace
First of all many thanks to all the people involved in this project for their
time.
A) Steps to reproduce
1.1. Create below Dockerfile:
```
vim Dockerfile
```
With below content:
```
FROM debian:testing
RUN dpkg --add-architecture i386 && apt update
RUN apt install -y \
wine \
wine32 \
wine64 \
libwine \
libwine:i386 \
fonts-wine \
wget
RUN apt-get install -y \
cabextract \
unzip \
p7zip \
wget \
zenity \
kdialog \
winbind
RUN wget
https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetric…
RUN chmod +x winetricks
RUN mv winetricks /usr/local/bin
```
1.2. Create a docker container
```
docker run \
--name wine \
--net=host \
-e DISPLAY \
-v $HOME/.Xauthority:/root/.Xauthority \
-d localhost/wine \
/bin/sh -c "while true; do echo hello world; sleep 1; done"
docker exec -ti wine bash
```
1.3. Install dotnet in 32 bits architecture
```
env WINEARCH=win32 WINEPREFIX=~/.wine32 winetricks dotnet461
```
Here I tried with other versions, looks like there's no difference
1.4. Restart docker container (Window$ philosophy):
```
exit
docker restart wine; docker exec -ti wine bash
```
1.5. Install Adobe Digital Editions 4.5
```
cd
env WINEARCH=win32 WINEPREFIX=~/.wine32 wine .wine32/drive_c/Program\
Files/Adobe/Adobe\ Digital\ Editions\ 4.5/DigitalEditions.exe
```
I also tried with version 4.0, but same result
1.6. Try to register
1.6.1. Click 'Help', then 'Authorize computer'
1.6.2. Click the password field in the form
B) Expected behaviour
Being able to type the password
C) Found behaviour
The application crashes and exited. Sometimes I can't even relaunch it with
below command:
```
cd
env WINEARCH=win32 WINEPREFIX=~/.wine32 wine .wine32/drive_c/Program\
Files/Adobe/Adobe\ Digital\ Editions\ 4.5/DigitalEditions.exe
```
D) Error found
Below error appears in the docker terminal:
```
0009:err:eventlog:ReportEventW L"Application: DigitalEditions.exe\nFramework
Version: v4.0.30319\nDescription: The application requested process termination
through System.Environment.FailFast(string message).\nMessage: Unrecoverable
system error.\nStack:\n at System.Environment.FailFast(System.String)\n at
MS.Intern"...
```
Attached a Windows trace that one time I was able to get.
Thanks.
Javier
--
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=47669
Bug ID: 47669
Summary: QuickBooks Pro 2019 installer fails differently after
4.12 fix
Product: Wine
Version: 4.14
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msi
Assignee: wine-bugs(a)winehq.org
Reporter: ryan(a)rnrcarpet.com
Distribution: ---
Created attachment 65112
--> https://bugs.winehq.org/attachment.cgi?id=65112
Wine debug log
Last log line when error dialog first appears
wine: Unhandled privileged instruction at address 0x35f69d9 (thread 0101)
--
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=11412
Summary: Photoshop CS2: Strange behaviour of window overlays
Product: Wine
Version: CVS/GIT
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: pascal.duersteler(a)gmail.com
Created an attachment (id=10543)
--> (http://bugs.winehq.org/attachment.cgi?id=10543)
Splashscreen and toolbar
Windows overlaying strange in CS2 with Wine 0.9.54, see Screenshots for
details. Examples for two cases as attachments.
Splashscreen overlays every other application like terminal, firefox, ...(funky
background is from photoshop main window)
The toolbar on the left side is from Photoshop CS2 which is opened fullscreen
but overlayed by ImageReady CS2 » Photoshop toolbar overlays everything other
Also when working with more than one image, clicking on another image window in
photoshop sets it between otehr windows instead of setting it into foreground
which is very annoying
--
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=18257
Summary: Quicktime 2 video problems
Product: Wine
Version: 1.1.20
Platform: PC
URL: http://www.oldversion.com/download/quicktime212.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
Videos in Quicktime 2 (32-bit) play for about 0.5 seconds and stop. Cycling
through the video draws the images but it refuses to play the whole video.
Don't know what traces would help here.
Tested with latest gitwine too, same problem.
wine-1.1.20-36-gdc31d87
Quicktime 2.1.2.59
This is the entire console output:
fixme:ole:OleRegisterServer (PlayerFrameClass,0x147100,0x147104,0x400000,1):
stub!
fixme:ole:OleRegisterServerDoc (1,C:\windows\SAMPLE.MOV): stub
--
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=54070
Bug ID: 54070
Summary: winevulkan Assertion failed
Product: Wine
Version: 7.22
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winevulkan
Assignee: wine-bugs(a)winehq.org
Reporter: santafejayyt(a)gmail.com
Distribution: ---
Created attachment 73619
--> https://bugs.winehq.org/attachment.cgi?id=73619
Image of the error
I'm currently unable to run Roblox Studio at all on the latest wine-staging
version, with winevulkan erroring with "Assertion failed! File:
wine-staging/dlls/winevulkan/loader_thunks.c Line: 5156"
Expression: "!status"
I don't see an stderr or stdout log anywhere except for this error. I tested
both a custom wine-staging build, the AUR package wine-staging, as well as
compiled from source.
--
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=48406
Bug ID: 48406
Summary: Epic Games Store fails to install prerequisites with
Wine Mono
Product: Wine
Version: 5.0-rc3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: sashok.olen(a)gmail.com
Distribution: ---
Created attachment 66178
--> https://bugs.winehq.org/attachment.cgi?id=66178
log
To reproduce the issue, you just need to install Epic Games Store with Wine
Staging. After you launch it and it downloads its own files, it will try to
install its "prerequisites", which will fail with Wine Mono. The issue
disappears if you install "dotnet48" using winetricks, or if you launch EGS
with -SkipBuildPatchPrereq flag, but neither are really good solutions as some
games don't seem to work with dotnet48 and -SkipBuildPatchPrereq sometimes
doesn't work.
Should be noted that on real Windows, it seems to install dotnet48 using
"Windows Features" component.
Attaching standard debug output. Let me know if you need a log with additional
debug channels.
--
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=54422
Bug ID: 54422
Summary: Metatrader 5 crashes with Wine Loader
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Mac OS X
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: loader
Assignee: wine-bugs(a)winehq.org
Reporter: donallen1031(a)gmail.com
When using Metatrader 5 and trying to add custom indicators to the platform, I
can't load the scripts and on occasion, the program crashes, with a Wine Loader
" error message. It locks the Mac down and I have to do a hard restart. I m not
a developer just a user. any help is appreciated. 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=50947
Bug ID: 50947
Summary: Metatrader 4 does not work with wine-staging 6.5
Product: Wine-staging
Version: 6.5
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: alfmon(a)gmx.com
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
Created attachment 69770
--> https://bugs.winehq.org/attachment.cgi?id=69770
winecfg error in wine-staging 6.5
My metatrader 4 .exe files were working with wine-staging 6.4 (packaged
version) on Ubuntu server 18.04 but after updating to version 6.5 I cannot open
MT4 by clicking on .exe file and open with "Wine Windows Program loader". I ran
winecfg and got errors "fixme" which are in attached file "wine-staging 6.5
error".
Ubuntu server LTS 18.04
packaged wine-staging version 6.5
--
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=32515
Bug #: 32515
Summary: Warhammer 40,000: Space Marine (Steam) fails to start
Product: Wine
Version: 1.5.20
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gyebro69(a)gmail.com
Classification: Unclassified
Created attachment 42894
--> http://bugs.winehq.org/attachment.cgi?id=42894
plain terminal output
On startup the game shows a black screen for a few seconds and audio from the
intro video can be heard for 0.5-1 second, then the game's own bug reporting
tool (Bugsplat) is popping up: "A problem has been encountered and the program
needs to close". No backtrace from Wine is generated.
A demo version is available on Steam, but I couldn't test it as I have the full
version.
http://store.steampowered.com/app/55150/
Steam installs MSVC++ 2005 runtime libraries and various DirectX components the
first time you start the game. Disabling gameoverlayrenderer in winecfg doesn't
help. I tested this bug with Wine 1.2.3, 1.4.1, 1.5.20.
Fedora 17 x86
Nvidia 250 / driver 304.64
X.Org X Server 1.12.4
Alsa 1.0.26
--
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=11787
Summary: Set mime type for log files are text/plain
Product: WineHQ Bugzilla
Version: unspecified
Platform: Other
OS/Version: other
Status: NEW
Severity: minor
Priority: P2
Component: bugzilla-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: thestig(a)google.com
Right now whenever someone attaches a .log file, Bugzilla auto-detects the mime
type as text/x-log. Many web browsers are set to download files with that mime
type, rather than just opening the file in the web browser. This is rather
annoying.
Can we change the mime types for .log files to text/plain instead? I believe
the code is in Bugzilla/Attachment.pm.
--
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=39217
Bug ID: 39217
Summary: Rise of Nations Random Div by zero exception
Product: Wine
Version: 1.7.5
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: marcelo_javier_ruiz(a)yahoo.com.ar
Distribution: ---
Created attachment 52278
--> https://bugs.winehq.org/attachment.cgi?id=52278
stack trace
Rise of Nations Thrones & Patriots randomly throws a div/0 exception. Exception
happens very often.
If one saves an ongoing game and the game rises the exception, most likely the
saved game will rise the exception again.
This behaviour is shown usually after the game has been played for a long time.
--
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=19277
Summary: Internet Explorer 2.0 (Win95) fails to install
Product: Wine
Version: 1.0.1
Platform: PC
URL: http://www.oldversion.com/download/msie20.exe
OS/Version: Linux
Status: NEW
Keywords: download, Installer, win16
Severity: minor
Priority: P3
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
Internet Explorer 2.0 for Windows 95 fails to install with an INST32.DLL error:
"ThunkConnect32 Failure!!"
This is followed by a second dialog stating:
"A required DLL or function entry point in a required DLL is missing."
The entire console output is:
err:thunk:_loadthunk (INST16.DLL, instthk_ThunkData16, INST32.DLL): Unable to
load 'INST16.DLL', error 2
Wine has to be set to Win95 mode to install.
Workaround is manual extraction.
Same in latest git.
--
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=25400
Summary: Internet Explorer 4 setup complains "cannot find
WINDOWS.HLP"
Product: Wine
Version: 1.3.8
Platform: x86-64
URL: http://www.oldversion.com/download/msie401sp2.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: RandomAccountName(a)mail.com
Created an attachment (id=32329)
--> (http://bugs.winehq.org/attachment.cgi?id=32329)
Standard output
Steps to reproduce:
1. Set windows version to NT 4.0 and remove z: drive in winecfg
2. Run iexplore -unregserver
3. Remove C:\windows\system32\schannel.dll to avoid bug 25359
4. Run the unpacker and installer
Early in the installation process, a message pops up:
Cannot find 'WINDOWS.HLP'. Do you want to find this file yourself?
If WINDOWS.HLP is available, it pops up instead. On Windows, nothing
help-related pops up during installation.
Native winhlp32.exe is a workaround.
--
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=25502
Summary: Internet Explorer 4 setup fails to install some
components
Product: Wine
Version: 1.3.9
Platform: x86-64
URL: http://www.oldversion.com/download/msie401sp2.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: advpack
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: RandomAccountName(a)mail.com
Created an attachment (id=32469)
--> (http://bugs.winehq.org/attachment.cgi?id=32469)
Standard output
Steps to reproduce:
1. Change Windows version to NT 4.0 and remove z: drive in winecfg
2. Remove C:\windows\system32\schannel.dll
3. Run iexplore -unregserver
4. Run the unpacker, then installer from somewhere in c: (choose standard
install)
At the end of the installation (but before rebooting) it reports that a few
components failed to install: Windows Desktop Update, Internet Connection
Wizard, and Windows Media Player.
Workaround: native advpack
--
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.