http://bugs.winehq.org/show_bug.cgi?id=34625
Bug #: 34625
Summary: Drakan demo doesn't detect that the graphics card
supports antialiasing
Product: Wine
Version: 1.7.3
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: winebugs140(a)gmail.com
Classification: Unclassified
Created attachment 46141
--> http://bugs.winehq.org/attachment.cgi?id=46141
Drakan Log
The antialiasing option is grayed out in a preferences window that shows up
when you start the game as well as in in-game settings.
Tested with:
Windows Vista (without Wine), GeForce 9600M GS--the program works fine here
Ubuntu 13.04, GeForce 9600M GS (NVIDIA driver 313)
Mac OS X 10.7.5, ATI HD 2600 Pro, Mac Driver/X11
--
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=50885
Bug ID: 50885
Summary: PdfSharp creates invalid PDF files
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: lauri.kentta(a)gmail.com
Distribution: ---
Created attachment 69696
--> https://bugs.winehq.org/attachment.cgi?id=69696
Minimal example with PdfSharp
PdfSharp (PDF library for .NET) creates invalid PDF files on Wine. Ghostscript
is able to fix the files but reports: ”Error: Unknown operator: '-..' looks
like a malformed number, replacing with 0.”
I've attached a shell script which builds a minimal example with C# / PdfSharp
and demonstrates the error with Ghostscript. Running with Mono (without Wine)
works. Debugging further would probably need a dive into PdfSharp.
In practice, this affects Purple Pen course setting software for orienteering.
--
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=50818
Bug ID: 50818
Summary: Mahou Shoujo Shoumou Sensen - DeadΩAegis (Trial) shows
unreadable text in the message box.
Product: Wine
Version: 6.4
Hardware: x86-64
URL: https://web.archive.org/web/20210306040237/http://storage1.lathercraft.net/download/metalogiq/deadendaegis/D
eadendAegis_trial.exe
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdi32
Assignee: wine-bugs(a)winehq.org
Reporter: sagawa.aki+winebugs(a)gmail.com
Distribution: ---
Mahou Shoujo Shoumou Sensen - DeadΩAegis (Trial) (ja:魔法少女消耗戦線 DeadΩAegis 体験版)
is a demo version of Japanese 18+ visual novel game.
After starting the game in the title screen, it shows unreadable text in the
message box.
--
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=49434
Bug ID: 49434
Summary: Wine Gecko crashes upon loading Google Account login
page
Product: Wine-gecko
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-gecko-unknown
Assignee: jacek(a)codeweavers.com
Reporter: rare_energy(a)protonmail.com
Distribution: ---
Created attachment 67521
--> https://bugs.winehq.org/attachment.cgi?id=67521
Gecko backtrace
Wine Gecko will crash upon visiting https://accounts.google.com/signin/v2
It will work when browsing other sites, though.
Wine versions tested: 5.0.1 and 5.6, both 64-bit with wine32 support.
Wine Gecko versions 2.47.1, both the x86 and x86_64 packages installed.
I've included a backtrace.
--
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=24893
Summary: Explorer++ is missing most right-click options for
files/folders
Product: Wine
Version: 1.3.5
Platform: x86-64
URL: http://www.explorerplusplus.com/download
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=31524)
--> (http://bugs.winehq.org/attachment.cgi?id=31524)
Log from right-clicking a folder, then a file
Expected behavior:
Right-clicking on a file should open the same menu that would be seen in
Windows Explorer (or Winefile as the case may be), while right-clicking a
folder should do the same, but with an added "open in new tab" option.
Actual behavior:
Right-clicking on a file produces a menu with a single option, which may be
blank or random garbage. It doesn't appear to do anything either way.
Right-clicking on a folder yields a menu with only the option "open in new
tab."
--
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=50845
Bug ID: 50845
Summary: jscript crashes on internal assert(0) in PE build with
clang
Product: Wine
Version: 6.4
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: jscript
Assignee: wine-bugs(a)winehq.org
Reporter: dmitry(a)baikal.ru
CC: jacek(a)codeweavers.com
Distribution: ---
Jacek, adding you to cc:, you might be interested.
This doesn't happen in an ELF build.
In order to reproduce build Wine in PE with clang, and run 'make test' in
dlls/jscript/tests:
Assertion failed: 0, file ../wine/dlls/jscript/jsutils.c, line 245
This the result of the call
hres = jsdisp_define_data_property(ctx->global, L"NaN", const_flags,
jsval_number(NAN));
https://source.winehq.org/git/wine.git/blob/HEAD:/dlls/jscript/global.c#l11…
during initialization, no user provided script is even gets started being
interpreted.
It seems that the reason is difference in 'struct _jsval_t' layout
https://source.winehq.org/git/wine.git/blob/HEAD:/dlls/jscript/jsval.h#l54
between gcc and clang.
$ clang --version
clang version 11.0.0
Target: x86_64-unknown-linux-gnu
Thread model: posix
InstalledDir: /usr/bin
--
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=50436
Bug ID: 50436
Summary: Upstream FAudio pkg-config file not found
Product: Wine
Version: 6.0-rc4
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: build-env
Assignee: wine-bugs(a)winehq.org
Reporter: j-r(a)online.de
Distribution: ---
FAusdio recently (November 2020) added an upstream package config file using
the name FAudio.pc, while configure looks for lowercase faudio.pc.
Note that the upstream config file is AFAICT not usable for gstreamer enabled
FAUdio builds. Depending on the fix for that (e.g. if gstreamer is added as an
Dependency in FAudio.pc), an option filtering similar to the one used for
gstreamer might become neccessary.
--
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.