http://bugs.winehq.org/show_bug.cgi?id=23415
Summary: ManyCam: Crash at choosing ManyCam.xml
Product: Wine
Version: 1.2-rc4
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lukasz.wojnilowicz(a)gmail.com
Created an attachment (id=29195)
--> (http://bugs.winehq.org/attachment.cgi?id=29195)
How to make application quit silently
Steps to reproduce:
1) remove ~/.wine
2) winetricks vcrun2005
2) install ManyCam
3) wine ManyCam.exe
4) get an error
5) see attachment to know where to click
Behaviour:
Application quits silently
Expected behaviour:
Application should shouldn't quit
In terminal there is only
fixme:win:RegisterDeviceNotificationW (hwnd=0x40026,
filter=0xdaf494,flags=0x00000004) returns a fake device notification handle!
err:shell:SHGetFileInfoW pidl is null!
err:shell:SHGetFileInfoW pidl is null!
err:shell:SHGetFileInfoW pidl is null!
err:shell:SHGetFileInfoW pidl is null!
X Error of failed request: BadColor (invalid Colormap parameter)
Major opcode of failed request: 89 (X_StoreColors)
Resource id in failed request: 0x1
Serial number of failed request: 4605
Current serial number in output stream: 4605
--
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=33078
Bug #: 33078
Summary: Lync Attendee fails to start
Product: Wine
Version: 1.5.18
Platform: x86
URL: http://www.microsoft.com/en-us/download/details.aspx?i
d=15755
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: madewokherd(a)gmail.com
Classification: Unclassified
Created attachment 43730
--> http://bugs.winehq.org/attachment.cgi?id=43730
console output
Lync 2010 Attendee installs successfully, but silently exits when I try to
start it.
--
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=14456
Summary: Diablo 2 stuck on switch
Product: Wine
Version: 1.1.0
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ak(a)axet.ru
When i switch from windowed diablo to another X window diablo fail to render
screen. I still can blind-exit from game but unable to refresh screen anymore.
--
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=20362
Summary: Diablo II: X11 mouse pointer shows over fullscreen
window
Product: Wine
Version: 1.1.31
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P4
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: thijs.vandenboogaard(a)gmail.com
When Diablo II is started and the mouse pointer is left alone, it stays
somewhere in the upper right of the fullscreen window. While playing it gets
pretty annoying. A temporary solution is to move the mouse pointer to the very
right of the screen when starting. Has probably something to do with D2D.
Running Wine 1.1.31 on Ubuntu Karmic X86_64. Intel Core 2 Quad Q6600 @ 3200MHz,
Nvidia Geforce GTX 260 (propretiary drivers 185.18.36).
--
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=46674
Bug ID: 46674
Summary: No music in Sims 1 Deluxe
Product: Wine
Version: 4.1
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: quartz
Assignee: wine-bugs(a)winehq.org
Reporter: sashok.olen(a)gmail.com
Distribution: ---
Created attachment 63623
--> https://bugs.winehq.org/attachment.cgi?id=63623
Terminal output
I got the game working using dgvoodoo2 and DXVK, but there's no music in-game
(sound effects work however).
Attached terminal log with some quartz and winegstreamer errors.
--
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=43240
Bug ID: 43240
Summary: Java 8 believes the filesystem is read-only
Product: Wine
Version: 2.10
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: kernel32
Assignee: wine-bugs(a)winehq.org
Reporter: taho(a)dnsdeer.com
Distribution: ---
Created attachment 58546
--> https://bugs.winehq.org/attachment.cgi?id=58546
A Java sample program
Symptom:
Calls to java.nio.file.Files.isWritable() always return false, even though the
specified file is very definitely writable – the same Java program running
under Linux correctly returns true for the same file.
Software versions:
Arch Linux (x86-64)
Wine 2.10
Java 1.8.0_131-b11
Cause:
Files.isWritable ends up calling
sun.nio.fs.WindowsFileSystemProvider.checkAccess, which via
WindowsFileStore.create calls the WindowsFileStore constructor. In those
WindowsFileStore methods, the Win32 API function GetVolumePathName is called
and its result passed to GetVolumeInformation – which is where the bug is.
In my case, I'm passing in the filename "Z:\tmp\winebugtest\winebugtest.java",
where Z: is the Linux root directory. Because /tmp is a separate filesystem,
the call to GetVolumePathName returns "Z:\tmp\". So far so good. But when this
is passed to GetVolumeInformation, it figures there are too many backslashes
and returns an error. This results in a Java IOException which ends up causing
isWritable to return false.
If I create a T: drive pointing to /tmp (through winecfg) everything works
correctly – GetVolumePathName resolves "T:\winebugtest\winebugtest.java" to
"T:\", GetVolumeInformation is happy and Java gets the correct result.
The Wine implementation of GetVolumeInformation in kernel32/volume.c has the
comment "there must be exactly one backslash in the name, at the end".
Microsoft's documentation, I think, disagrees:
https://msdn.microsoft.com/en-us/library/windows/desktop/aa364993(v=vs.85).…
I have attached the relevant portions of the logs (from WINEDEBUG='+relay') and
a sample program.
--
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=32112
Bug #: 32112
Summary: Justice Caculator reporting "Eror dreading
RichEdit1->Lines.Strings: RichEdit line insertion
error
Product: Wine
Version: 1.5.16
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: richedit
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fracting(a)gmail.com
Classification: Unclassified
The orignial website is http://www.filehand.net, now it is unavailable.
Anyone would like to test and debug the software please contact to me.
Reproduce:
Wine 司法速算器.exe
A popup window reporting:
"Error reading RichEdit1->Lines.Strings: RichEdit line insertion error.
after clicking "OK"/"确定", the app quit without any useful log.
Will attach a +richedit trace.
--
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=16295
Summary: Cannot run Win16 installer for Judaic Classics
Product: Wine
Version: 1.1.7
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: arie.folger+wine(a)gmail.com
Created an attachment (id=17572)
--> (http://bugs.winehq.org/attachment.cgi?id=17572)
Output when trying to run the program under Wine
I am trying to install Davka Judaic Classics IIc, a bookshelf kind of software
with Hebrew books. It is a win32 program that was designed for running also on
win3.11, hence the installer is, I believe, win16. I have used this software on
Win95 and Win98. The program happily runs off emulated cdroms.
I have now tried to install this program under wine, but can't even get the
installer to run. Attached you will find the output when running "wine
installa.exe" (the installer for installs from floppy drive a:). For the
record, I am using Fedora 10 for x86_64, with wine i386, version 1.1.7. The
kernel is 2.6.27.5-117.fc10.x86_64.
Can someone make sense out of the error message? How do I get around this?
--OCC
--
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=46747
Bug ID: 46747
Summary: Arabic letters are not connected in MS Office 2013
Product: Wine
Version: 4.2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: akram_ma(a)hotmail.com
Distribution: ---
Created attachment 63748
--> https://bugs.winehq.org/attachment.cgi?id=63748
MS Word 2013 in ar_YE.UTF-8 locale
I did a clean prefix as follows
created Win 7 32bit
Then installed from WineTricks: Core Fonts, Tahoma Font, msxml6, riched20,
usp10
and Added reg key:
[HKEY_CURRENT_USER\\Software\\Wine\\Direct3D]
"MaxVersionGL"=dword:00030002
Then installed Office 2013 Pro (Arabic Version)
Installation went fine with one minor problem: I cannot customize installation.
Once I hit the down arrow to show drop down menu to customize which component
to choose from. Once I hit to show, it drops down and disappear in half a
second.
I was able to run all programs except:
OneNote shows a message cannot continue please install Windows Desktop
Experience
Word, Excel, Publisher, PowerPoint, Access and Outlook run fine so far.
One major problem with all running applications is Arabic representation:
Word Arabic letters are not connected at all and are typed from left to
right as if English.
Others Other apps type Arabic in the right way with no problem.
All Arabic letters are not connected in main menu and sub menus in all
apps. Letter are typed from right to left correctly but not connected
If I switch the locale language to Arabic for example ar_YE.UTF-8:
Word Arabic letters are still not connected but word direction is fine
(rtl); however, English is typed from right to left
Others Other apps work fine.
All Menus still have the same problem
I attached a picture of Word 2013 in ar_YE.UTF-8 locale. English words (This is
a book) are type backward, and All Arabic letters are not connected, although
some tips boxes and sub sub menus are 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.
http://bugs.winehq.org/show_bug.cgi?id=33128
Bug #: 33128
Summary: AliWangwang: the window displayed with black block
Product: Wine
Version: 1.5.25
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jactry92(a)gmail.com
Classification: Unclassified
Created attachment 43816
--> http://bugs.winehq.org/attachment.cgi?id=43816
The Log
1.'winetricks -q vcrun2005', download and install it:
487641e1976a3e29ebedd186415436f833ac1493 AliIM2013_taobao(7.21.01C).exe
2. cd to the file where you installed it:
'~/.wine/drive_c/Program Files/AliWangWang$ wine AliIM.exe'
There are some black block in the window.
BTW: I found AliWangwang have a 'GdiPlus.dll' by itself in
'~/.wine/drive_c/Program Files/AliWangWang/GdiPlus.dll'. When I try to use the
native gdiplus it won't work and this is the output information:
err:module:import_dll Library gdiplus.dll (which is needed by L"C:\\Program
Files\\AliWangWang\\7.21.01C\\GUIBase.dll") not found
err:module:import_dll Library GUIBase.dll (which is needed by L"C:\\Program
Files\\AliWangWang\\7.21.01C\\AliIMStartup.dll") not found
err:module:import_dll Library gdiplus.dll (which is needed by L"C:\\Program
Files\\AliWangWang\\7.21.01C\\AliIMStartup.dll") not found
--
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=37003
Bug ID: 37003
Summary: QQ 2013 paints incompletely
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: fracting(a)gmail.com
Created attachment 49158
--> http://bugs.winehq.org/attachment.cgi?id=49158
Screenshot: QQ 2013 paints incompletely
0. Download the installer of QQ2013 from
http://dldir1.qq.com/qqfile/qq/QQ2013/QQ2013SP5/9050/QQ2013SP5.exe
1. install QQ2013. For non Chinese speakers, the "下一步(N)" button means "Next",
the "安装(I)" button means "Install", "完成(F") means "Finish", these three
buttons are all we need for install QQ2013.
2. start QQ2013:
~/.wine/drive_c/Program Files/Tencent/QQ/Bin$ wine QQ.exe
Expect result:
Draw a complete login dialog box including username form and password form and
submit button. (See Screenshot: QQ 2013 paints incompletely)
Actual result:
Nothing has been drawn except a submit button. However, either clicking on the
button or typing "tab" key repeatedly help the application draw more areas,
with enough luck it can draw completely.
--
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=37180
Bug ID: 37180
Summary: UnrealEd 3: mouse clicks mishandled
Product: Wine
Version: 1.7.25
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: pastas4(a)gmail.com
Clicking inside the viewports in UnrealEd 3.0 (Unreal Tournament 2004, Unreal
II: The Awakening) results in nothing happening. Surfaces are not selected, and
the context menu on right-click is not brought up. That prevents the user from
changing level geometry in any way and adding new actors to the level. However,
dragging the mouse correctly moves the camera, so the issue is only with single
clicks.
In addition, selecting textures in the texture browser results in only the last
texture (the one closest to the lower right corner of the browser) to be
selected, instead of the one that was clicked on. These two issues are probably
related to each other. Neither of these issues appear in UnrealEd 2, which is
otherwise pretty similar to UnrealEd 3.
--
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=43339
Bug ID: 43339
Summary: Rendering Errors in Elder Srolls online with nvidia
drivers
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: loki(a)lokis-chaos.de
Distribution: ---
Created attachment 58676
--> https://bugs.winehq.org/attachment.cgi?id=58676
Character selection screen with glitches
There are some rendering issues if the proprietary nvidia drivers are used.
They seem to occur on specific ground textures only.
I have attached three logfiles and screenshots:
- Character selection screen with glitches
- Area with no glitches at all
- Area with glitches
Objects move over the bugged area leave traces behind.
--
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=50571
Bug ID: 50571
Summary: Mouse issues with Escape from Tarkov
Product: Wine
Version: 6.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: faalagorn(a)gmail.com
Distribution: ArchLinux
Currently, it's impossible to play on online servers due to BattlEye, but in
Escape from Tarkov (Unity game) there's a bug where the window loses focus and
gains it again, mouse can't be clicked. It's an old bug going back to older
versions of the game where BattlEye did'n prevent logging to the game, but it
seems to still be there in 6.0. It initially suffered from Bug 42631 which
seems to be largely fixed, but the mouse issues are still there, which is
present even on wine-staging and even wine-wayland where sometimes mouse
suffers from other issues such as it being offset by a few pixels. The same is
present on D3D12 render which can be forced with -force-d3d12 as well as on
DXVK.
I'm using Wayland window manager sway, but it seems the issue is present on X11
as well.
--
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=47920
Bug ID: 47920
Summary: Visio 2013 failed to complete installation
Product: Wine
Version: 4.11
Hardware: x86-64
OS: Linux
Status: NEW
Keywords: regression
Severity: normal
Priority: P2
Component: kernel32
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
CC: julliard(a)winehq.org
Regression SHA1: 32fdffac424b51fbbbd89c02022b4269930bdd31
Distribution: ---
Error message: 'Visio Professional 2013 encountered an error during setup.'
--
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=46915
Bug ID: 46915
Summary: Black boder around Wine App
Product: Wine
Version: 4.4
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: hytzongxuan(a)gmail.com
Distribution: ---
Created attachment 64001
--> https://bugs.winehq.org/attachment.cgi?id=64001
border in Virtual Desktop
I tried to install a music player (Netease Cloudmusic) on Deepin 15.9 with Wine
4.4
Normally, this application's borders is drop shadows, but now, there is a thick
border line around the window.
What's worse, after I disabled Virtual Desktop, this border show in the wrong
place.
How could I fix 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=45937
Bug ID: 45937
Summary: Magic The Gathering Arena stops accepting any input
after losing and regaining focus
Product: Wine
Version: 3.16
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: theli.ua(a)gmail.com
Distribution: ---
if you move focus to a different window and then return application stops
accepting any input
No fixmes in the output, not sure how to debug
Application is a Unity application, d3d11, available for download for free
(freemium)
--
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=51758
Bug ID: 51758
Summary: Wine's time zone information has gaps in "Dynamic DST"
causing InvalidTimeZoneException
Product: Wine
Version: 6.17
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: madewokherd(a)gmail.com
Distribution: ---
Hi, since commit 3e370f761a24878ae4047fd7803673d108bea430 wine-mono's test
suite fails in
MonoTests.System.TimeZoneInfoTest+IsDaylightSavingTimeTests:Bug_9664
commit 3e370f761a24878ae4047fd7803673d108bea430
Author: Giovanni Mascellani <gmascellani(a)codeweavers.com>
Date: Mon Sep 6 17:36:27 2021 +0200
tzres: Regenerate TZ data from de facto standard sources.
The test failure:
1) Bug_9664
(MonoTests.System.TimeZoneInfoTest+IsDaylightSavingTimeTests.Bug_9664)
System.InvalidTimeZoneException : The time zone ID 'Iran Standard Time' was
found on the local computer, but the registry information was corrupt.
at System.TimeZoneInfo.FindSystemTimeZoneById (System.String id) [0x0009c] in
<2b59a54be42b4db59a5b1855eee0c040>:0
at MonoTests.System.TimeZoneInfoTest+IsDaylightSavingTimeTests.Bug_9664 ()
[0x00170] in <f77f913a6a434c5597e82a9098fa240c>:0
at (wrapper managed-to-native)
System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&)
at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj,
System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder,
System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a]
in <2b59a54be42b4db59a5b1855eee0c040>:0
The code Mono uses to read registry timezones looks for a Dynamic DST entry for
every year between FirstEntry and LastEntry:
https://github.com/mono/corefx/blob/main/src/Common/src/CoreLib/System/Time…
If one of the entries doesn't exist, it raises that exception.
This was a problem with some timezones before that commit, it just happened to
reveal the problem because it changed "Iran Standard Time" which is used in the
Mono test suite.
To test this, download wine-mono-6.3.0-tests.zip and run
$ wine run-tests.exe
MonoTests.System.TimeZoneInfoTest+IsDaylightSavingTimeTests:Bug_9664
I'd like to create a new testcase that checks all timezones.
--
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=37016
Bug ID: 37016
Summary: Evernote 5.5.x - unable to annotate images
Product: Wine
Version: 1.7.23
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: robert.munteanu(a)gmail.com
Created attachment 49184
--> http://bugs.winehq.org/attachment.cgi?id=49184
wine output when hovering image and clicking the annotate button
Evernote has a nice image annotation feature, see [1]. When hovering an image,
the annotate button appears, but does nothing when pressed.
[1]: https://evernote.com/contact/support/kb/#!/article/28944986
--
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=37015
Bug ID: 37015
Summary: Evernote 5.5.x empty trash confirmation dialog was
incorrect layout
Product: Wine
Version: 1.7.23
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: robert.munteanu(a)gmail.com
Created attachment 49183
--> http://bugs.winehq.org/attachment.cgi?id=49183
Confirmation dialog with incorrect layout
The buttons are placed lower that expected and two white rectangles appear in
the expected location.
--
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=19651
Summary: iTunes "Add folder"-window doesn't reappear after
switching to other programs
Product: Wine
Version: 1.1.27
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: pieter.ideler(a)gmail.com
This bug considers iTunes 8
When you choose File -> "Add folder to library..." a diractory-chooser opens.
When giving focus to an other program and afterwards switching back this window
doesn't reappears. This renders iTunes unusable and to continue using it you
have to restart it manually.
--
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=50743
Bug ID: 50743
Summary: .NET Core WPF applications with layered windows do not
initially render
Product: Wine
Version: 6.3
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: winex11.drv
Assignee: wine-bugs(a)winehq.org
Reporter: madewokherd(a)gmail.com
Distribution: ---
Found while working on WPF in Wine Mono. I've committed a work-around to Wine
Mono (not yet in a release), but the bug is present in .NET Core as well.
For any application using a WPF window with AllowsTransparency set to true
(which makes it a layered window), the window's contents are initially an
opaque black fill. Fully transparent areas are still transparent. If part of
the window redraws (such as from a hover effect), the refreshed area draws
correctly.
I'm working on uploading a self-contained test case. Unfortunately, the archive
exceeds the file size limit.
The work-around in Wine Mono is to redraw the entire window in response to
WM_WINDOWPOSCHANGED messages.
The code that controls this can be found here:
https://github.com/dotnet/wpf/blob/release/3.1/src/Microsoft.DotNet.Wpf/src…
There are a lot of cases where they redraw, but the relevant ones here are
probably WM_SIZE and WM_SHOWWINDOW.
I tried the test program in CrossOver Mac 20, and it rendered correctly. This
makes me think it's an X11-specific issue, but it could also be related to
version difference.
--
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=51551
Bug ID: 51551
Summary: Medibang Paint Pro: Pen pressure and opacity on Wine
6.14 not working
Product: Wine
Version: 6.14
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wintab32
Assignee: wine-bugs(a)winehq.org
Reporter: crxtrtupgm(a)gmail.com
Distribution: ---
Created attachment 70394
--> https://bugs.winehq.org/attachment.cgi?id=70394
Log.txt - Log for wintab32.
OS: Pop!_OS 21.04 x86-64
App in question: Medibang Paint Pro 26.2
Wine ver: 6.14
Machine: Acer Nitro 5
Tablet used: XP-PEN Star 03 (Old version)
Driver for tablet: Pentablet 1.2.14.1 (Old driver provided by XP-PEN Support)
The application works just as well, can connect to the Medibang Cloud and all
that.
Drawing in the tablet does work, you can draw with it and it registers
properly. The right click of the tablet also works. Issue is the pen pressure
and opacity not working.
This is not the case in native applications such as Krita. Pressure and opacity
works on those applications.
Before you say it, I tried the newer driver from the XP-PEN website and I have
not made it to work on the OS. In fact the driver I used for windows is also in
the older side. Apparently the tablet is old enough that modern support for it
is now unavailable.
I have already replied in the issue Bug 40199 but reported this new bug ID
anyway for investigation for newer Wine 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=49885
Bug ID: 49885
Summary: Missing platform in games category
Product: WineHQ Apps Database
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: appdb-unknown
Assignee: wine-bugs(a)winehq.org
Reporter: matteobin(a)protonmail.com
Distribution: ---
When submitting a new app, there is no platform category under the games one.
I think it should be added.
I submitted an app that is a platform game:
Yooka-Laylee and the Impossible Lair [1].
[1] https://appdb.winehq.org/objectManager.php?sClass=application&iId=20024
--
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=47600
Bug ID: 47600
Summary: DeaDBeeF doesn't show icons
Product: Wine
Version: 4.13
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: t6zm3v62fkp7fe5(a)yandex.ru
Distribution: ---
Created attachment 65017
--> https://bugs.winehq.org/attachment.cgi?id=65017
Screenshot
DeaDBeeF for Windows
(https://github.com/DeaDBeeF-for-Windows/deadbeef/releases/download/2019-06-…)
doesn't show icons and outputs these strings when opening the menu:
002b:err:module:import_dll Library librsvg-2-2.dll (which is needed by
L"C:\\Program
Files\\DeaDBeeF\\lib\\gdk-pixbuf-2.0\\2.10.0\\loaders\\libpixbufloader-svg.dll")
not found
002b:err:module:import_dll Library libxml2-2.dll (which is needed by
L"C:\\Program
Files\\DeaDBeeF\\lib\\gdk-pixbuf-2.0\\2.10.0\\loaders\\libpixbufloader-svg.dll")
not found
Lubuntu 18.04.2, Wine 4.13 from official PPA.
--
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=45447
Bug ID: 45447
Summary: [World of Tanks] Borderless window broken since 1.0.2
Product: Wine
Version: 3.12
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: magist3r(a)gmail.com
Distribution: ---
Created attachment 61779
--> https://bugs.winehq.org/attachment.cgi?id=61779
Screenshot
After update to WoT 1.0.2 borderless window mode of World of Tanks is broken.
It shows header of window and panel instead of fullscreen (see screenshot).
--
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=48523
Bug ID: 48523
Summary: dlls/toolhelp16.dll16 LocalFirst and LocalNext only
return LMEM_FIXED handles
Product: Wine
Version: 5.0-rc6
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dirk.niggemann(a)gmail.com
Distribution: ---
I have a program (HP Chemstation G1701BA) which ha two 16-bit components
(MSTOP.EXE and MSCONFIG.EXE) which inspect their own allocated local heaps to
find their menus.
They use TOOLHELP.DLL to do this(LocalFirst() and LocalNext()) .
However, the Wine implementation of toolhelp.dll does not return any of the
moveable local heap handles, only the fixed ones. This causes both programs to
error during menu building with an internal 'CP Object not found' error.
I have an unfinished test implementation of toolhelp.dll that handles moveable
handles which seems to resolve this issue.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=51868
Bug ID: 51868
Summary: Wine Staging - RPG Maker Game Fails To Load Script(s)
in Wine
Product: Wine
Version: 6.14
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: nekoNexus(a)protonmail.ch
Distribution: ---
Created attachment 70783
--> https://bugs.winehq.org/attachment.cgi?id=70783
Terminal output log
Bug is about this game:
https://appdb.winehq.org/objectManager.php?sClass=version&iId=40186
(Also, the game does not run properly in testing with 6.16 Staging; it ran but
restarting the game afterwards landed me in a white screen [I had closed the
window manually])
With 6.14 Staging, the issue is that the game doesn't proceed to the main menu
due to failing to initialize because it can't run the game's ruby scripting
system.
In Wine forks, though unrelated to this bug but still important to keep in
mind, I had been able to reach the main menu and start the game but fonts,
arrows, and other graphics failed to render and I wouldn't be surprised if this
continues to take place once the current issue is resolved.
Until both are resolved, the game is essentially unplayable.
--
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=51706
Bug ID: 51706
Summary: Msi HANDLE_CustomType1 fails to load dll [patch]
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msi
Assignee: wine-bugs(a)winehq.org
Reporter: ake.rehnman(a)gmail.com
Distribution: ---
Created attachment 70581
--> https://bugs.winehq.org/attachment.cgi?id=70581
Patch for correctly determine the bitness for CustomAction dll
do_msidbCustomActionTypeDll incorrectly assume dlls have the same "bitness" as
the calling application. The Windows GetBinaryTypeW function used actually
always fails for dll-types. From the documentation:
"If the file is a DLL, the last error code is ERROR_BAD_EXE_FORMAT."
If GetBinaryTypeW fails the fall back is incorrectly using the same bitness as
the application it self.
As far as I know there is no windows api to determine the bitness of DLLs. In
my attached patch I have written a new function to determine the DLL type.
--
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=45597
Bug ID: 45597
Summary: Flicker in GTAIV
Product: Wine
Version: 3.13
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: b7.10110111(a)gmail.com
Distribution: ---
Created attachment 62031
--> https://bugs.winehq.org/attachment.cgi?id=62031
APNG animation of the flicker
After a Wine upgrade, objects in GTAIV started flicker (see the animation in
attachment, namely its top-center part where a lamp is located). Bisection
gives the following result:
dd0ea0a61463db83c647a9367ca61e2b69a98eb3 is the first bad commit
commit dd0ea0a61463db83c647a9367ca61e2b69a98eb3
Author: Henri Verbeet <hverbeet(a)codeweavers.com>
Date: Fri Feb 16 09:39:08 2018 +0330
wined3d: Enable the multi-threaded command stream by default.
Signed-off-by: Henri Verbeet <hverbeet(a)codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
:040000 040000 494432da56fa4c73f71f62151a3013fd4a6fb850
501f26cfd0dbf7d24224ad1f5fabfd9e8ce569c9 M dlls
Nothing unusual appears in the terminal, frame rate doesn't noticeably change,
only the visual artifacts appear. If you go outdoors (in game :) ), then
there'll be more objects which flicker, like here:
https://i.imgur.com/tvtU94I.png (ignore the motion of cars and humans, it's
normal).
--
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=27679
Summary: Arx Fatalis does not play intro movie
Product: Wine
Version: 1.3.23
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wylda(a)volny.cz
Created an attachment (id=35412)
--> (http://bugs.winehq.org/attachment.cgi?id=35412)
console log from wine-1.3.23-160-g38c13e5
Intro movie is not played in game "Arx Fatalis". Screen is black and sound is
choppy during playback.
Maybe my fault, because console says:
fixme:gstreamer:GST_Connect Could not make source filter, are
gstreamer-plugins-* installed for 32 bits?
But i have libgstreamer-plugins-base0.10-0 and
libgstreamer-plugins-base0.10-dev installed.
Native Quartz.dll does not help and wine crashes when native is used.
--
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=48606
Bug ID: 48606
Summary: HexChat: Check for update fails
Product: Wine
Version: 5.1
Hardware: x86-64
URL: https://hexchat.github.io/
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: secur32
Assignee: wine-bugs(a)winehq.org
Reporter: tobbi.bugs(a)googlemail.com
$ wine --version
wine-5.1
$ openssl sha256 HexChat\ 2.14.3\ x64.exe
SHA256(HexChat 2.14.3 x64.exe)=
f9afe97fceb91685b0f4b1812663eff8460a7d16d6f626ce733193cd56993f23
Steps to reproduce:
1. Install and start HexChat.
2. Click About > Check for updates
Expected results:
Update check works fine.
Current results:
Update check fails due to errors in secur32 and bcrypt.
I don't know whether this belongs with bcrypt or secur32 since both components
are affected.
In my console window I can see the following:
0054:fixme:secur32:schan_get_cipher_algid Don't know CALG for encryption
algorithm 2, returning 0
0054:fixme:secur32:schan_imp_get_max_message_size Returning 1 << 14.
0054:fixme:bcrypt:key_asymmetric_init not implemented on Mac
0054:fixme:bcrypt:key_asymmetric_init not implemented on 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.
http://bugs.winehq.org/show_bug.cgi?id=20415
Summary: eRightSoft SUPER: Window unviewable and
non-responsive.
Product: Wine
Version: 1.1.31
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gaming4jc2(a)yahoo.com
Created an attachment (id=24224)
--> (http://bugs.winehq.org/attachment.cgi?id=24224)
A SUPER Log of buggies
This is a bug report for bld.35 of the free SUPER encoder by eRightSoft.
Attached is the log of what it does, I had to keep using the exit command to
even close the non-responsive application. Basically the window is scrambled,
you can't click anything and it freezes 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.
https://bugs.winehq.org/show_bug.cgi?id=50539
Bug ID: 50539
Summary: SetWindowRgn doesn't work correctly
Product: Wine
Version: 6.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: user32
Assignee: wine-bugs(a)winehq.org
Reporter: hjkl(a)quantentunnel.de
Distribution: ---
Created attachment 69208
--> https://bugs.winehq.org/attachment.cgi?id=69208
Example images and source code
The SetWindowRgn function doesn't work correctly. It applies a shape to a
window. In the attachment is an example source code which just creates 2
windows and calls SetWindowRgn on both. It uses an elliptic region on the left
window and a triangle region on the right one.
The image "CorrectOnWindows.png" shows how Windows 10 draws it.
The image "IncorrectOnLinuxWithWine.png" shows how Wine on Debian draws it
(also tested on Zorin OS with the same result).
The elliptic window has a black "shadow" above the window. This might be the
same issue as described in "Bug 48636", but I'm not sure.
The other window has no shape at all. It's just drawn like SetWindowRgn was
never called.
The folder "source" of the attached ZIP file contains the Visual Studio 2019
source project and also the compiled EXEs for 32-bit and 64-bit. It's very
simple.
The interesting part is this for the 1st window:
//example 1 with an elliptic region
HRGN hRgn=CreateEllipticRgn(0, 0, 250, 200);
SetWindowRgn(g_hWnd1, hRgn, TRUE);
And this for the 2nd window:
//example 2 with a triangle region
POINT points[8];
points[0].x=50;
points[0].y=0;
points[1].x=100;
points[1].y=100;
points[2].x=0;
points[2].y=100;
points[3].x=50;
points[3].y=0;
points[4].x=50;
points[4].y=20;
points[5].x=80;
points[5].y=90;
points[6].x=20;
points[6].y=90;
points[7].x=50;
points[7].y=20;
hRgn=CreatePolygonRgn(points, 8, ALTERNATE);
SetWindowRgn(g_hWnd2, hRgn, TRUE);
--
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=39795
Bug ID: 39795
Summary: when working jriver mediacenter suddenly crash.
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: noay(a)outlook.com
Distribution: ---
Created attachment 53097
--> https://bugs.winehq.org/attachment.cgi?id=53097
when working jriver mediacenter suddenly crash.
when working jriver mediacenter suddenly crash, many times, not clear why.
--
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=34753
Bug #: 34753
Summary: Rising Kingdoms: no intros
Product: Wine
Version: 1.7.4
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 46338
--> http://bugs.winehq.org/attachment.cgi?id=46338
RK Log
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=47975
Bug ID: 47975
Summary: X3 Albion Prelude - Unhandled page fault on read
access
Product: Wine
Version: 4.18
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: consolelogger(a)rhyta.com
Distribution: ---
Created attachment 65476
--> https://bugs.winehq.org/attachment.cgi?id=65476
x3ap console log
Ubuntu 19.10 - wine-mono-4.9.3.msi
X3 Albion Prelude crashes on splashscreen. The launcher before that works.
Console log, backtrace and the games's own crashlog are attached.
I am happy to provide more details and do tests when asked to.
minor question:
fixme:dbghelp:elf_search_auxv can't find symbol in module
Does that error mean I am missing some debug symbols to make the log more
useful?
--
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=51491
Bug ID: 51491
Summary: Project CARS 2 periodically crashes during a race
Product: Wine
Version: 6.12
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
Distribution: ---
0560:err:d3d11:d3d_rasterizer_state_init Failed to insert rasterizer state
entry.
Assertion failed: iface->lpVtbl == &d3d11_rasterizer_state_vtbl, file
../wine/dlls/d3d11/state.c, line 1226
wine-6.12-249-gd60c450c7be
--
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=50901
Bug ID: 50901
Summary: Google Chrome 89.0.4389.114 exits at startup
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 69712
--> https://bugs.winehq.org/attachment.cgi?id=69712
WINEDEBUG=+relay,+tid wine chrome.exe
Using a standalone Chrome Installer
$ sha1sum ChromeStandaloneSetup64.exe
3b2c9b4005a84a1fe5475e4a472167667c381d29 ChromeStandaloneSetup64.exe
1. wine ChromeStandaloneSetup64.exe
2. cd ~/.wine/drive_c/Program Files/Google/Chrome/Application
3. wine chrome.exe
4. a black window appears. A second later, it exists quietly
--
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=21935
Summary: AceMegaCodecsPack gives error message on install
Product: Wine
Version: 1.1.39
Platform: x86
URL: http://www.free-codecs.com/download/ace_mega_codecs_pa
ck.htm
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: leighmanthegreat(a)hotmail.com
Created an attachment (id=26626)
--> (http://bugs.winehq.org/attachment.cgi?id=26626)
Terminal log of process
Download pack.
Open installer, select 'Professional Edition', do not associate with media
player, untick create quicklaunch icon, untick virus scan.
Installer gets half way then gives message:
Access violation at address 3CB16DAF in module 'quartz.dll'. Read of address
00000000
Refreshes desktop and appears to have created an icon for quicktime in the
systray.
Installer then hangs.
Ending 'Dashboard.exe' process allows it to progress to the finish screen.
Then clicked a few things on the Quicktime icon which I think accounts for the
last bit of the log. No actual 'err' occurs during the installation process
--
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=45016
Bug ID: 45016
Summary: Far Cry crashes at startup
Product: Wine
Version: 3.6
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: mo78(a)abv.bg
Distribution: ---
Created attachment 61136
--> https://bugs.winehq.org/attachment.cgi?id=61136
Far Cry 5 log
Far Cry crashes at startup. I try ti install vcredist 2015, DX9, DX10, DX11
without any difference.
--
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=33756
Bug #: 33756
Summary: Formula symbols get outside formula frame
Product: Wine
Version: 1.5.26
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdiplus
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: b7.10110111(a)gmail.com
Classification: Unclassified
Created attachment 44698
--> http://bugs.winehq.org/attachment.cgi?id=44698
Test document
See test document.
Here are screenshots of how it worked at wine 1.5.16 [1] and currently [2]
(since 1.5.26 when bug 32661 was fixed).
Although it's a regression, I'm not sure how I could bisect it because bug
32661 blocks testing.
Also, if you try putting cursor to the right of second formula and try typing
several letters, overtyping ghost 'r' letter, the formula will disappear.
This could have something to do with new font rendering since all fonts have
been extended to the right if you compare these images by switching from one to
another, so component selection might be wrong.
[1]: http://i0.simplest-image-hosting.net/picture/1525.png
[2]: http://i0.simplest-image-hosting.net/picture/1600.png
--
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=10924
Summary: Netbeans 6 installer hangs or exits silently
Product: Wine
Version: CVS/GIT
Platform: Other
URL: http://download.netbeans.org/netbeans/6.0/final/bundles/
netbeans-6.0-javase-windows.exe
OS/Version: other
Status: NEW
Keywords: download, Installer
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
[Yeah, yeah, I know, one should usually run netbeans with
the native JRE, but running it with the windows one makes
for a splendid test of wine, one that we should at least
not fall over immediately on.]
Install the latest JDK first.
wine netbeans-6.0-javase-windows.exe
either hangs or exits silently.
Sometimes it's after printing
> Create new process:
> command : "c:\Program Files\Java\jre1.6.0_03\bin\java.exe" -Djava.io.tmpdir=C:\windows\temp\ -Xmx256m -Xms64m -classpath C:\windows\temp\\NBI67217.tmp\bundle.jar org.netbeans.installer.Installer
Sometimes it gets a bit further and hangs or exits silently after printing
fixme:shell:UnixFolder_IShellFolder2_GetDefaultColumnState stub
Out of paranoia, I copied the installer to c:\ and turned off the z:\
drive to see if the hang was it pawing through all my files, but that didn't
change much.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=50849
Bug ID: 50849
Summary: Streamdeck MSI installation fails
Product: Wine
Version: 6.3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: viraptor(a)gmail.com
Distribution: ---
Created attachment 69664
--> https://bugs.winehq.org/attachment.cgi?id=69664
log of running the installer
The installer for Streamdeck app (available from
https://www.elgato.com/en/downloads ; tested version
https://edge.elgato.com/egc/windows/sd/Stream_Deck_4.9.3.13222.msi ) fails with
the installer saying "Elgato Stream Deck Setup Wizard ended prematurely because
of an error".
Full log attached, but the main error seems to be in this fragment:
0108:fixme:mscoree:corruntimehost_UnloadDomain stub 000000000008C160
0108:fixme:mscoree:corruntimehost_Stop stub 000000000008C160
0024:err:msi:custom_get_thread_return Invalid Return Code 68870160
0024:err:msi:ITERATE_Actions Execution halted, action
L"DeleteInvalidPathRegistryKey" returned 1603
--
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=35063
Bug #: 35063
Summary: InstallShield crashes when installing Peachtree Pro
Accounting 2007 "unable to create InstallDriver
instance"
Product: Wine
Version: 1.7.7
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ole32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: rclocher3(a)yahoo.com
Classification: Unclassified
Created attachment 46763
--> http://bugs.winehq.org/attachment.cgi?id=46763
"+ole,+rpc,+storage,+variant" log for "Unable to create InstallDriver instance"
error (not "1158:" error)
Greetings oh amazing Wine developers and maintainers,
I've been trying to install Peachtree Pro Accounting 2007, but I get various
errors. Sometimes when I try to run the installer a window pops up and a
progress bar starts chugging before it errors out with a popup message saying
"Unable to create InstallDriver instance, Return code: -2147221164". Other
times an InstallShield popup that says "1158:" appears immediately. In both
cases I start with a fresh prefix. It seems like I get the "Unable to create
InstallDriver instance" error if I haven't tried the installation recently,
otherwise I get the "1158:" error, even if I've rebooted lately.
If I get the "Unable to create InstallDriver instance" error then I get the
following stderr messages in the console:
err:ole:create_server class {e9513610-f218-4dda-b954-2c7e6ba7cabb} not
registered
err:ole:CoGetClassObject no class object {e9513610-f218-4dda-b954-2c7e6ba7cabb}
could be created for context 0x4
If I get the "1158:" error there are no stderr messages.
I looked at the error log, and I saw stuff for ole32, oleaut32, and rpc; I
guessed that this is an ole32 bug, but you'd know better than I would.
I'd like to take a moment to say thanks for Wine, I'm always amazed at the fact
that it can emulate Windows in Linux. My hat's off to you people who can
reverse-engineer DCOM and such. What fantastic complexity!
- Rob
--
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=25053
Summary: Final fantasy 7 videos do not play, though supported
by gst-ffmpeg
Product: Wine
Version: 1.3.6
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: leighmanthegreat(a)hotmail.com
Created an attachment (id=31760)
--> (http://bugs.winehq.org/attachment.cgi?id=31760)
Terminal log when running ff7.exe
Ubuntu 10.04
Videos are in .avi format, TrueMotion 2.0 video.
The videos play fine in Totem. The codec is in ffmpeg.
When the game is started, the intro videos do not play, although a menu appears
in between them so I know the game is at least starting.
Terminal log attached.
Please let me know what trace I can provide.
--
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.