https://bugs.winehq.org/show_bug.cgi?id=38801
Bug ID: 38801
Summary: Settlers
Product: Wine
Version: 1.7.45
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: maiktapwagner(a)aol.com
Distribution: ---
Created attachment 51740
--> https://bugs.winehq.org/attachment.cgi?id=51740
Backtrace Slackware wine 1.7.45
Hello everyone,
I got a request from the ubuntuusers.de forum and tested a German game called
"Die Siedler - Das Erbe der Könige" (The Settlers - Heritage of Kings)
I got the demo from this URL:
http://www.gamestar.de/spiele/die-siedler-das-erbe-der-koenige/preisverglei…
Backtrace occurs when launching a game. Distribution is a Slackware Linux
distribution with wine 1.7.45
--
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=42004
Bug ID: 42004
Summary: Archeage fails to create directory
Product: Wine
Version: 2.0-rc1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: paco666(a)hot.ee
Distribution: ---
Created attachment 56438
--> https://bugs.winehq.org/attachment.cgi?id=56438
Snippet from the log
Archeage tries to create directory but fails.
--
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=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.
http://bugs.winehq.org/show_bug.cgi?id=36870
Bug ID: 36870
Summary: Trying to install 32 bit version of iTunest with
PlayonLinux, after install, I got an error, backtrack
is attached.
Product: Wine-gecko
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gecko-unknown
Assignee: jacek(a)codeweavers.com
Reporter: sstocker(a)suddenlink.net
Created attachment 48968
--> http://bugs.winehq.org/attachment.cgi?id=48968
Error after installing iTunes 32 bit and running the program
Error when running iTunes with palyonlinux
--
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.