https://bugs.winehq.org/show_bug.cgi?id=46366
Bug ID: 46366
Summary: wordpad from win7 crashes on startup (esi not saved in
_initterm)
Product: Wine
Version: 4.0-rc3
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: msvcrt
Assignee: wine-bugs(a)winehq.org
Reporter: dark.shadow4(a)web.de
Distribution: ---
Created attachment 63103
--> https://bugs.winehq.org/attachment.cgi?id=63103
Hack
After working around a few issues, wordpad crashes inside _initterm. Native
msvcrt doesn't help.
You need wordpad.exe and wordpad.exe.mui from win7.
Then you'll need "winetricks mfc42".
Also will need native uiribbon and uxtheme.
Last, you'll need attached hack to work around bug 43670 and fix the issue this
bug is about.
The problem seems to be that the called function doesn't save esi, but gcc
assumes it is. At least, it works when manually saving esi, or changing the
code so that gcc doesn't use esi in the first place.
--
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=46484
Bug ID: 46484
Summary: Median XL (Diablo II mod) needs certutil -hashfile
Product: Wine
Version: 4.0-rc7
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: programs
Assignee: wine-bugs(a)winehq.org
Reporter: dark.shadow4(a)web.de
Distribution: ---
See this reddit thread:
https://www.reddit.com/r/winehq/comments/ahigc4/certutil_and_wine/
> [2019-01-19 01:14:37 -5:00] Error: Command failed: CertUtil -hashfile "C:\Program Files\Diablo II\Fog.dll" SHA1 Can't recognise 'CertUtil -hashfile "C:\Program Files\Diablo II\Fog.dll" SHA1' as an internal or external command, or batch script.
They seem to use certutil to check their assets.
--
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=42147
Bug ID: 42147
Summary: Enable application override for all settings
Product: Wine
Version: 2.0-rc3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: haakobja(a)gmail.com
Distribution: ---
I have a wine-prefix with Steam installed and earlier I was able to get sound
from my steam games. With an update allowing Steam to play music, the
application is hogging my audio output, making it impossible to get sound from
other games while Steam is running.
I've tried to override the audio settings for steam.exe, but the audio settings
seems to be global and not overridable.
It would be nice to let the audio settings be overridable, like almost every
other setting seems to be.
I guess it is worth mentioning that I use ALSA directly, not PulseAudio or the
ALSA dmix-plugin
--
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=33285
Bug #: 33285
Summary: VideoReDo crashes when saving SECOND file
Product: Wine
Version: 1.5.26
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: karlheinzarmani(a)yahoo.de
Classification: Unclassified
Created attachment 44035
--> http://bugs.winehq.org/attachment.cgi?id=44035
crash log
- Loading mpg
- Selecting frames from-to
- Save mpg clip
- Getting a ieframe with stats
This works fine for the first time, but the second time it crashes.
Last line in the log before the crash is urlmon.
After that i get:
###!!! ABORT: Main-thread-only object used off the main thread: file
/build/wine-mozilla-1.9/xpcom/base/nsCycleCollector.cpp, line 1151
$ wine --version
wine-1.5.26-88-gfbe7ab5
--
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=33117
Bug #: 33117
Summary: Can't load Bach41.ttf with CreateFontIndirect under
Wine - this works fine in Windows
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: forums(a)robertinventor.com
Classification: Unclassified
Created attachment 43794
--> http://bugs.winehq.org/attachment.cgi?id=43794
Bach41 True Type Musicological Font
The code is simple:
Basically I'm just using
hFont=CreateFontIndirect(&lfTest);
with
strcpy(lfTest.lfFaceName,"Bach");
When I select this font into an example hdc, then use GetTextFace(..) to check
which font was selected, then it reports that it found Martlett. Under Windows
it finds the Bach font.
Why can't it find the Bach font, and why does it find Marlett instead?
It seems to be installed okay in my version of Wine since it shows up fine in
the font dialog launched from within my program (using ChooseFont).
It displays the characters fine within that dialog too.
But I can't seem to use it within my application under Wine.
Also - may be related - if I try to set the font for a selection of text in a
rich text field to the Bach font, again this doesn't work in Wine though it
works fine in Windows.
Everything is fine in Windows.
I also tried using AddFontResourceEx(szFontPFile,FR_PRIVATE,0);
- but wasn't able to load it from
I attach the Bach41.ttf font as an attachment.
Thanks for your help. I have been puzzling over this for several days now and
can't find a solution, but as you see, I have reduced the issue to a few lines
of code, which should help.
Here is the actual source code I used for testing this bug:
----------------------------------------------------
/**
Extract from the code:
(where SpecialDebugLogLine() just outputs a time stamped version of the line to
a file).
**/
#define ONE_K 1024
void TestCreateFontIndirectFor(char *szfont,int ichar_set)
{
LOGFONT lfTest;
HFONT hFont=NULL,hFontWas=NULL;
char szt[ONE_K];
char szfont_found[ONE_K];
HDC hdc=GetDC(NULL);
memset(&lfTest,0,sizeof(lfTest));
lfTest.lfHeight=12;
lfTest.lfCharSet=ichar_set;
strcpy(lfTest.lfFaceName,szfont);
hFont=CreateFontIndirect(&lfTest);
hFontWas=SelectObject(hdc,hFont);
GetTextFace(hdc,1024,szfont_found);
sprintf
(szt,"***Test of CreateFontIndirect for %s***\n"
"Font found: %s\n\n",szfont,szfont_found
);
SpecialDebugLogLine(szt);
SelectObject(hdc,hFontWas);
DeleteObject(hFont);
hFont=NULL;
ReleaseDC(NULL,hdc);
}
void TestCreateFontIndirect(void)
{
SpecialDebugLogLine("\n\n****TestCreateFontIndirect****\n\n");
TestCreateFontIndirectFor("Courier",0);
TestCreateFontIndirectFor("Arial",0);
TestCreateFontIndirectFor("Bach",SYMBOL_CHARSET);
}
/**
and the output from Wine is:
****TestCreateFontIndirect****
2.06.41 AM March 04, 2013 (2746.3):***Test of CreateFontIndirect for Courier***
Font found: Courier
2.06.41 AM March 04, 2013 (2746.32):***Test of CreateFontIndirect for Arial***
Font found: Arial
2.06.41 AM March 04, 2013 (2746.34):***Test of CreateFontIndirect for Bach***
Font found: Marlett
2.06.41 AM March 04, 2013 (2746.35):
Test of AddFontResourceEx for CreateFontIndirect***
2.06.41 AM March 04, 2013 (2746.35):***Test of CreateFontIndirect for Bach***
Font found: Marlett
**/
--
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=22409
Summary: Dxdllreg.exe encountered a problem and closed
Product: Wine
Version: 1.1.42
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ashl1future(a)gmail.com
Created an attachment (id=27427)
--> (http://bugs.winehq.org/attachment.cgi?id=27427)
Backtrace for MTG Online (dxdllreg.xe)
I installed Magic The Gathering Online (latest MTGOInstall.exe).
Before I installed "Mono 2.20 for Windows" by winetricks.
MTGO installed DirectX but I know shouldn't install DirectX in Wine. So after
MTGO started (wine "C:\Program Files\Magic Online\Renamer.exe") (it also
started Kicker.exe), error occured (The program dxdllreg.exe has encountered a
serious problem and needs to close. We are sorry for the inconvenience.)
And the program started with bad graphic and the "Unknown error" for less then
second.
--
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=46448
Bug ID: 46448
Summary: MATLAB Runtime installer wants administrator rights
Product: Wine
Version: 4.0-rc5
Hardware: x86-64
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: craig(a)cottingham.net
Created attachment 63231
--> https://bugs.winehq.org/attachment.cgi?id=63231
Log output
macOS 10.14.2
XQuartz 2.7.11
Wine 4.0-rc5 development + 64 bit support
winetricks stable 20181203, HEAD (installed via Homebrew)
installed vcrun2012
Download MATLAB Runtime R2017b (for Windows) from
http://ssd.mathworks.com/supportfiles/downloads/R2017b/deployment_files/R20…
(SHA-1: d7387891df664e2fb6fad08a144423669d68ee19)
Launch "Wine Devel". `cd` to the directory containing the installer and run
wine MCR_R2017b_win64_installer.exe
WinZip self-extractor runs successfully, then launches the MCR installer.
The installer launches successfully, but when you click on "Next >", you get a
"Permissions error" alert with "You must have administrator privileges to
install this application. Please contact your system administrator." Clicking
"OK" terminates the installer.
Log output from running "wine MCR_R2017b_win64_installer.exe 2>&1 | tee
MCR_R2017b_win64_installer.log" is attached.
--
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=42839
Bug ID: 42839
Summary: Text Area is not editable/text not shown in MyHeritage
Family Tree Builder
Product: Wine
Version: 2.6
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: winehq(a)agilob.net
Distribution: ---
Created attachment 57933
--> https://bugs.winehq.org/attachment.cgi?id=57933
screenshot of faulty filed
Text area "Notes" in a persons profile is not editable and text saved there is
not shown.
The text area in screenshot is not editable, clicking there does nothing,
typing there does nothing. If I load existing project with notes on a person it
doesn't show anything.
Last time I used it was over a year ago and the filed worked as expected on the
same system (arch linux).
I tried downloading all fonts using winetricks and starting wine with
-no-dwrite but it doesn't change anything.
--
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=29231
Bug #: 29231
Summary: Tango (Freeware video chat application) fails in
WSALookupServiceBegin, needs WSALookupServiceBeginW
Product: Wine
Version: 1.3.34
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winsock
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: robbak(a)robbak.com
Classification: Unclassified
Created attachment 37765
--> http://bugs.winehq.org/attachment.cgi?id=37765
Full Terminal output of running software. Expands to 76MB.
Freeware video chat application Tango fails to connect to its server. The
console log complains with thousands of
fixme:winsock:WSALookupServiceBeginW (0x23fe794 0x00000000 0x1d2d5a4) Stub!
2011 12 03 22:34:20.037 [0.39] <connectivity.ERROR> Failed to begin
service from WSALookupServiceBegin error = 8
Full log, gzipped, until it was killed with ^C, attached. (no other way of
ending application). Not very interesting: It is mostly 76 Meg (!) of the above
two lines, repeated endlessly, from ~20 seconds of operation.
--
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=35019
Bug #: 35019
Summary: Todolist (MFC) App Crashes on Wine
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lavanya.deepak(a)outlook.com
Classification: Unclassified
Created attachment 46678
--> http://bugs.winehq.org/attachment.cgi?id=46678
StackTrace
Todolist application using MFC is working fine on Windows. On Linux/Wine
options like selecting a task and hitting delete crashes the application.
Application URL:
www.codeproject.com/Articles/5371/ToDoList-6-8-Feature-Release-An-effective…
--
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.