https://bugs.winehq.org/show_bug.cgi?id=43016
Bug ID: 43016
Summary: Missing component comsvcs
Product: WineHQ Bugzilla
Version: unspecified
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: bugzilla-unknown
Assignee: wine-bugs(a)winehq.org
Reporter: leslie_alistair(a)hotmail.com
Distribution: ---
Can someone add component comsvcs which will also cover mtxdm.
--
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=39413
Bug ID: 39413
Summary: Make it easier to monitor the TestBot activity
Product: Wine-Testbot
Version: unspecified
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: unknown
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
Distribution: ---
At the bottom of the main page there is a list of the VMs and their status.
However the information there is incomplete:
* When a VM is reverting there is no way to know for how long it has been
reverting.
* When a VM is running a task there is no link to the corresponding task.
* There is no history of events so if someone reports that something strange
happened there is no way to check(*).
So it would be nice to have something like BuildBot's Waterfall display.
http://buildbot.buildbot.net/waterfall
(*) Actually one could check the WineTestBot log but that has its own problems
and requires poring over lots of traces. See bug 39410.
--
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=42070
Bug ID: 42070
Summary: Add "workaround" to defined keywords list to indicate
that one or more workarounds are available for a bug.
Product: WineHQ Bugzilla
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: bugzilla-unknown
Assignee: wine-bugs(a)winehq.org
Reporter: o.dierick(a)piezo-forte.be
Distribution: ---
Enhancement:
Add "workaround" to the defined keyword list for open bugs, when one ore more
working workarounds have been found.
For Moderators:
The conditions for the workaround keyword to be valid would be:
- The workaround is documented in the comments or a reference is made to the
AppDB entry where the workaround is documented (or to an external source).
- The workaround is confirmed to be working at least for one person (not just
an hypothetic workaround).
- If multiple workarounds are discussed, the keyword is valid if one workaround
meets the above conditions.
Why the keyword?:
Other users affected by a bug would know that a workaround exists without
having to read all the comments to find out.
If someone has documented a workaround in the AppDB for a specific application,
and the bug is in fact affecting multiple applications, the keyword would
reduce the need to document the workaround in the AppDB for every affected app,
provided that the bug is properly referenced in the multiple AppDB entries.
--
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=32354
Bug #: 32354
Summary: testbot: A crashing test is not detected
Product: Wine-Testbot
Version: unspecified
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wine.dev(a)web.de
Classification: Unclassified
A 64bit test crashed on all 64bit testbot machines,
but the summary has "0" as "Number of failures".
Test run for the broken patch:
http://testbot.winehq.org/JobDetails.pl?Key=22963&log_301=1#k301
Later test:
http://testbot.winehq.org/JobDetails.pl?Key=23106&log_302=1#k302
(I send a fix for the broken code in wine in some minutes)
--
By by ... Detlef
--
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=40237
Bug ID: 40237
Summary: account not deletable
Product: WineHQ Bugzilla
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: bugzilla-unknown
Assignee: wine-bugs(a)winehq.org
Reporter: BerlinerPaul(a)web.de
Distribution: ---
hi,
I want to delete my account but I'm unable to find some link in the preferences
for this.
best
--
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=39441
Bug ID: 39441
Summary: The reverts keep getting slower
Product: Wine-Testbot
Version: unspecified
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: unknown
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
Distribution: ---
A revert that would take under 10 seconds right after creating the snapshot
would take over 7 minutes 6 months later. So every few months this would cause
the TestBot to become really sluggish and barely able to keep up with the patch
influx. Restarting libvirt, rebooting the host, restoring the VM from backup or
even transferring it to another host had no effect on the revert time.
While the revert is taking place the QEmu process fully occupies one core, no
disk I/O is performed and the VM is not running. The exact reason is not yet
known exactly but it seems to have to do with the VM's timer devices,
particularly the rtc one.
To confuse matters further not all VMs are affected: only Windows 2000, XP,
2003, 2008 and 10 suffer from this. The other post Windows Vista are immune.
Yet the guest is not active while the revert is taking place so it should not
have an impact on it.
Finally at WineConf 2015 it was discovered that the revert time of a live
snapshot is simply proportional to the snapshot's age.
This yielded a first workaround which is to refresh the live snapshots
regularly.
Further investigation showed that the common point between the impacted live
snapshots is that they all have the following clock settings
<clock offset='localtime'>
<timer name='rtc' tickpolicy='delay'/>
<timer name='pit' tickpolicy='delay'/>
<timer name='hpet' present='no'/>
</clock>
while the unaffected VMs have
<clock offset='localtime'/>
But switching from the former to the latter does not fix the affected VMs.
Still this lead to a better fix which has now been put in place: setting
track='guest' on the rtc timer.
Regardless, something is wrong with the way QEmu handles timers and live
snapshots so a bug was reported:
https://bugs.launchpad.net/qemu/+bug/1505041
Maybe this will shed some light on what's really happening and what the correct
timer settings are.
--
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=37104
Bug ID: 37104
Summary: Infinite revert loop
Product: Wine-Testbot
Version: unspecified
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: unknown
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
The current task scheduling algorithm can enter into an infinite revert loop
while trying to prepare VMs for the next tasks. Assume the following settings:
$MaxRevertingVMs = 2;
$MaxRevertsWhileRunningVMs = 0;
$MaxActiveVMs = 2;
Then the following sequence can play out:
| Steps
VM | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8
----+-----+-----+-----+-----+-----+-----+-----+-----
vm1 | rev | idl | off | off | rev | rev | rev | ...
vm2 | rev | rev | rev | idl | off | off | rev | ...
vm3 | off | off | rev | rev | rev | idl | off | ...
The issue happens in steps 2, 4 and 6.
The scheduler can shut down idle VMs to replace them with VMs that are more
appropriate for the upcoming tasks. This is what happens in these steps: it
decides the idle VM it just prepared is not what it wants after all, and thus
shuts it down and prepares another one.
The problem is it keeps changing its mind over and over and can never actually
start a task because there is always a reverting VM and
$MaxRevertsWhileRunningVMs = 0.
Another prerequisite for this scenario to play out is probably to have multiple
tasks have the exact same priority, so that their order is undefined. But
regardless, the scheduler should probably not be shutting down an idle VM that
has an actual 'pending' task.
--
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=39470
Bug ID: 39470
Summary: https://bugs.winehq.org/page.cgi?id=fields.html needs
to be updated to include new statuses
Product: WineHQ Bugzilla
Version: unspecified
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: bugzilla-unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dimesio(a)earthlink.net
Distribution: ---
NEEDINFO and STAGED need to be added and UPSTREAM needs to be changed to
NOTOURBUG.
--
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=42160
Bug ID: 42160
Summary: Need ddraw component
Product: WineHQ Bugzilla
Version: unspecified
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: bugzilla-unknown
Assignee: wine-bugs(a)winehq.org
Reporter: alexhenrie24(a)gmail.com
Distribution: ---
I just tried to file a bug in ddraw.dll and couldn't find any component option
for it. Something like "directx-ddraw" would be great.
--
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=39411
Bug ID: 39411
Summary: Provide a way to monitor VM revert times
Product: Wine-Testbot
Version: unspecified
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: unknown
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
Distribution: ---
It would be nice to have a graph of the VM revert times to verify that
everything is working fine (or conversely to get a better sense that things are
wrong and action is needed).
Currently the way to do so is to ask Alexandre for the WineTestBot log, run a
perl script on it to get a CSV, and import the CSV in a spreadsheet to graph
the data. That's pretty cumbersome and obviously does not permit regular
monitoring.
Providing per-VM revert time graphs, maybe using something like RRDtool would
be really nice.
But then one could argue that revert times should just be low and stay that way
and that then monitoring them may not be needed.
--
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=31784
Bug #: 31784
Summary: Add support for VM snapshots
Product: Wine-Testbot
Version: unspecified
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fgouget(a)codeweavers.com
Classification: Unclassified
As we expand the number of configurations to test it seems wasteful to have to
create and maintain a brand new VM just for them. In a lot of cases all we need
is to slightly reconfigure a VM to add a CD image, add network interfaces or
change the locale and run the test with these changes settings.
That's where snapshots can be useful: take a snapshot for each configuration we
need to test and then let the TestBot start the VM from the right snapshot.
There is a catch though: while it's possible to run the tests in two VMs in
parallel, for a given VM only one snapshot can be active at a time. There's two
consequences:
* TestBot must know about snapshot and not try to simultaneously run the tests
in two snapshots belonging to the same VM.
* If in the base configurations (those all Wine patches run on) we have a VM
with ten snapshots, it means we will need to run the tests ten times
*sequentially*. That VM is quickly going to become a bottleneck. So we should
still limit the number of snapshots per VM, at least in the base
configurations.
--
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=39927
Bug ID: 39927
Summary: Update the build VM
Product: Wine-Testbot
Version: unspecified
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: unknown
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
Distribution: ---
The current build VM is based on Debian 7.0 which is pretty old.
It would be nice to upgrade it to Debian 8.0.
* This might solve some issues with the VM sometimes going dead after a
Reconfig job.
See: https://www.winehq.org/pipermail/wine-devel/2016-January/111059.html
* This would also get us a newer MinGW compiler. This would get us newer
headers, in particular for GetConsoleScreenBufferInfoEx(). Note however that
since this is a Vista+ API and the tests must still run on Windows XP it means
that specific API would still have to be loaded dynamically in order for the
test to be accepted in Wine. But it would make things easier for quick /
preliminary tests.
See: https://www.winehq.org/pipermail/wine-devel/2015-December/110942.html
--
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=31789
Bug #: 31789
Summary: Fix handling of jscript/vbscript tests
Product: Wine-Testbot
Version: unspecified
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fgouget(a)codeweavers.com
Classification: Unclassified
The Wine TestBot reports failures for all patches to the jscript/vbscript
tests:
=== W7PROX64 (32 bit) ===
No test summary line found
This generates quite a bit of spam on wine-devel and is annoying and needs to
be fixed. I believe it also happens with some other tests.
--
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=39410
Bug ID: 39410
Summary: Provide a way for the WineTestBot administrator to get
the WineTestBot log
Product: Wine-Testbot
Version: unspecified
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: unknown
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
Distribution: ---
When a task fails it logs the failure into the WineTestBot log(*). The
WineTestBot Engine may also log issues into the log. Analyzing the log also
provides a way to figure out the evolution of the revert times.
But accessing the log requires having login access to the WineTestBot server
which the administrator may not have. So it would be nice to have access to the
log (or portions thereof) through an administrator-only section of the website.
(*) In the case of WineRunBuild and WineRunTask one will get most of that in
the corresponding task's log on the website, but that's not the case for
RevertVM for instance.
--
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=37666
Bug ID: 37666
Summary: Quicken 2015 Home & Business Retail - Fails on Install
Product: Wine
Version: 1.7.32
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: reefland(a)gmail.com
Distribution: ---
Created attachment 50130
--> https://bugs.winehq.org/attachment.cgi?id=50130
Console messages
New Fresh WINE Prefix Creation:
WINEARCH=win32 WINEPREFIX=~/.winequicken2015 winecfg
(I set Windows 7 as OS)
WINEARCH=win32 WINEPREFIX=~/.winequicken2015 winetricks -q msxml3
WINEARCH=win32 WINEPREFIX=~/.winequicken2015 winetricks corefonts
WINEARCH=win32 WINEPREFIX=~/.winequicken2015 winetricks -q dotnet45
Installation Wizard Starts (Passes .NET tests). Upon clicking install it
fails.
Appears to be installing some kind of PDF print driver. There are no options
or other way to deselect this feature that I can find.
--- snip ---
fixme:heap:HeapSetInformation (nil) 1 (nil) 0
fixme:ver:GetCurrentPackageId (0x33da08 (nil)): stub
err:setupapi:do_file_copyW Unsupported style(s) 0x284
fixme:printui:PrintUIEntryW command not implemented: L"i"
err:msi:ITERATE_Actions Execution halted, action L"InstallPDFDriver" returned
1627
--- snip ---
--
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=17921
Summary: Just a translation problem
Product: Wine
Version: 1.1.18
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: laughmetal(a)gmail.com
It is just a translation problem.
I am currently using Wine 1.1.18 simplified Chinese under ubuntu. Everything
works fine, but for the translation of word "Apply", it used the tradition
Chinese notation rather than simplified Chinese one.
Not a big problem however solving it can make this program 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=21459
Summary: Ukrainian translation for some files
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: igor-hkr(a)mail.ru
Created an attachment (id=25841)
--> (http://bugs.winehq.org/attachment.cgi?id=25841)
Ukrainian translation for some files
Ukrainian translation for
dlls/crypt32/crypt32_Uk.rc
dlls/hhctrl.ocx/Uk.rc
dlls/mpr/mpr_Uk.rc
dlls/msacm32/msacm_Uk.rc
dlls/mshtml/Uk.rc
dlls/msi/msi_Uk.rc
dlls/msvfw32/msvfw32_Uk.rc
dlls/oleaut32/oleaut32_Uk.rc
dlls/oledlg/oledlg_Uk.rc
dlls/wldap32/wldap32_Uk.rc
programs/reg/Uk.rc
programs/winhlp32/Uk.rc
programs/wordpad/Uk.rc
programs/write/Uk.rc
programs/xcopy/Uk.rc
--
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=21457
Summary: Ukrainian translation resources for credui
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: igor-hkr(a)mail.ru
Created an attachment (id=25839)
--> (http://bugs.winehq.org/attachment.cgi?id=25839)
ukrainian credui.rc
Ukrainian resources for dlls/credui.
--
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=18461
Summary: Problem in English localization of Winelib programs
Product: Wine
Version: unspecified
Platform: All
URL: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=50499
2
OS/Version: All
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ovek(a)arcticnet.no
Most of the Winelib programs in Wine, such as winecfg, contain this in their
English localization resource (En.rc):
LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
SUBLANG_DEFAULT is 1, which for English, maps to SUBLANG_ENGLISH_US. This means
that the localization in En.rc is *only* selected in an en_US locale, *not* in,
say, an en_GB locale (unless no other fallback is found).
It would probably better if these files said
LANGUAGE LANG_ENGLISH, SUBLANG_NEUTRAL
so that if the user has a British English user locale (from LC_MESSAGES) and a
French system locale, winecfg will show up in English, not fall back to French.
(From Debian bug #504992, linked to in the URL field.)
--
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=38122
Bug ID: 38122
Summary: Spelling mistake in Dutch crash dialog
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: computergeoffrey(a)zoho.com
Distribution: ---
When running Wine 1.7.35 on Linux, the crash dialog says in Dutch:
..."en het probleem nog niet is gerapporteed"... (translation: and the problem
has not yet been reported)
But the Dutch translation contains a mistake at this point: it should be
"gerapporteerd" and not "gerapporteed".
I hope someone can fix it as I'm not sure how to proceed :)
--
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=11136
Summary: Trados: TagEditor loosing contact with Workbench.
Product: Wine
Version: CVS/GIT
Platform: HP
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ole
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: yolande(a)haneder.biz
When opening Tageditor, it should be able to open and connects to Workbench
(working OK yesterday). Now when opening TagEditor, it is prompting Workbench
but not seeing it (Workbench is opening although TagEditor says it can't open
it).
Showing in the log.
err:ole:apartment_getclassobject DllGetClassObject returned error 0x80040111
err:ole:CoGetClassObject no class object {b196b286-bab4-101a-b69c-00aa00341d07}
could be created for context 0x80000001
err:ole:marshal_object couldn't get IPSFactory buffer for interface
{b196b284-bab4-101a-b69c-00aa00341d07}
err:rpc:I_RpcReceive we got fault packet with status 0x80004002
err:ole:ClientIdentity_QueryMultipleInterfaces IRemUnknown_RemQueryInterface
failed with error 0x80004002
Now imagine you try to open a file with TagEditor. It opens the file and is
immediately loosing contact with Workbench and ask you if you want to restart
Workbench (which is still not closed).
err:ole:StdMarshalImpl_ReleaseMarshalData could not map object ID to stub
manager, oxid=4d7000004d8, oid=3
err:ole:CoReleaseMarshalData IMarshal::ReleaseMarshalData failed with error
0x8001011d
It is now opening a SECOND workbench window with again the error.
err:ole:apartment_getclassobject DllGetClassObject returned error 0x80040111
err:ole:CoGetClassObject no class object {b196b286-bab4-101a-b69c-00aa00341d07}
could be created for context 0x80000001
err:ole:marshal_object couldn't get IPSFactory buffer for interface
{b196b284-bab4-101a-b69c-00aa00341d07}
err:rpc:I_RpcReceive we got fault packet with status 0x80004002
err:ole:ClientIdentity_QueryMultipleInterfaces IRemUnknown_RemQueryInterface
failed with error 0x80004002
and asking again to reconnect as soon as you point your mouse on the text.
Any idea?
--
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=42674
Bug ID: 42674
Summary: Skyrim audio crackles and pops when Wine is set to
Windows 7, plays normally for Windows XP
Product: Wine
Version: 2.4
Hardware: x86
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: alexchandel(a)gmail.com
After installing Skyrim on a fresh wine prefix with wine-2.4, which defaults to
Windows 7, Skyrim's audio crackles and pops and character voices are somewhat
distorted.
However, if the Windows version is changed to Windows XP in winecfg, then the
audio works perfectly.
This should not happen.
--
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=30264
Bug #: 30264
Summary: TRANSLATION: Turkish translation for shdoclc and
shdocvw
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: shdocvw
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ardatanrikulu(a)gmail.com
Classification: Unclassified
Created attachment 39536
--> http://bugs.winehq.org/attachment.cgi?id=39536
Patch
TRANSLATION: Turkish translation for shdoclc and shdocvw
Arda Tanrıkulu
ardatanrikulu(a)gmail.com
--
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=25436
Summary: Lithuanian translation of "Program files" and
"Application Data" folders (see file shell32_Lt.rc)
causes problems with some software for Windows
Product: Wine
Version: 1.3.8
Platform: All
OS/Version: All
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: shell32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mantas(a)akl.lt
In the Lithuanian of localization of Wine "Program files" gets translated as
"Programų failai", "Application Data" - as "Programų duomenys" and "Local
Settings" - as "Vietinės nuostatos" (see file shell32_Lt.rc) causes problems
with some software for Windows.
- This is inconsistent with localized Windows (Lithuanian version) behavior,
which ALWAYS uses the name "Program files", "Application Data" and "Local
Settings".
- Some Windows software doesn't find files in these folders, as translated
folders have accented characters "ų" and "ė".
Requesting to use these translations in /dlls/shell32/shell32_Lt.rc :
IDS_APPDATA "Application Data"
IDS_LOCAL_APPDATA "Local Settings\\Application Data"
IDS_INTERNET_CACHE "Local Settings\\Temporary Internet Files"
IDS_COOKIES "Cookies"
IDS_HISTORY "Local Settings\\History"
IDS_PROGRAM_FILES "Program Files"
IDS_PROGRAM_FILES_COMMON "Program Files\\Common Files"
I can attach a patch if you like.
Same localization error was with Dutch translation, look at bug #15844
Most other Windows localizations also don't translate these folders if
translations would have accented characters, look for example at Russian or
Ukrainian localizations of WINE:
http://source.winehq.org/source/dlls/shell32/shell32_Ru.rchttp://source.winehq.org/source/dlls/shell32/shell32_Uk.rc
--
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=20883
Summary: Faults on Portuguese translation of the Winecfg.exe
program
Product: Wine
Version: 1.1.33
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ricardopcosta1967(a)gmail.com
I would like to inform the following faults on Portuguese translation of
Applications section of the Winecfg.exe program: 1) the text "Versão do
Windows" appears incomplete; 2) "Adiconar aplicação...", instead of "Adicionar
aplicação...".
Thank you
--
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=15844
Summary: Weird Dutch translation for Program files folder
Product: Wine
Version: 1.0.1
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: VincentBeers(a)gmail.com
In the Dutch localization of Wine, Program files gets translated as "Programma
bestanden". This is:
- Inconsistent with Windows behaviour, which ALWAYS uses the name "Program
files".
- Bad grammar, it becomes "Programmabestanden" in Dutch, but it doesn't make it
sound any better.
Requesting the name to be reverted to "Program files".
--
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=25236
Summary: Wrong italian translation in "add/remove programs"
Product: Wine
Version: 1.3.6
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mugeta(a)virgilio.it
IDS_CPL_TITLE, "Agiungi/Rimuovi Programmi"
should be instead
"Aggiungi/Rimuovi Programmi"
--
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=25235
Summary: Wrong italian translation in "add/remove programs"
Product: Wine
Version: 1.3.6
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mugeta(a)virgilio.it
IDS_CPL_TITLE, "Agiungi/Rimuovi Programmi"
should be instead
"Aggiungi/Rimuovi Programmi"
--
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=11075
Summary: Translation error
Product: Wine
Version: CVS/GIT
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: shell32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andrey(a)esin.name
Created an attachment (id=10094)
--> (http://bugs.winehq.org/attachment.cgi?id=10094)
Patch to solve this problem.
Error in translation in file wine/dlls/shell32/shell32_Ru.rc at 87 string:
MENUITEM "&Удалмть", FCIDM_SHVIEW_DELETE
must be:
MENUITEM "&Удалить", FCIDM_SHVIEW_DELETE
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=24596
Summary: Italian translation for "target" should be
"destinazione" and not "obiettivo"
Product: Wine
Version: 1.3.4
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: cmd
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: devotip(a)tiscali.it
In CMD and XCOPY the Italian translation for "target" is sometime "obiettivo"
instead of the more appropriate "destinazione"
Most of the translations are already using "destinazione"
--
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=29500
Bug #: 29500
Summary: Translation: general Romanian corrections
Product: Wine
Version: unspecified
Platform: All
OS/Version: All
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fulea.stefan(a)gmail.com
Classification: Unclassified
Created attachment 38202
--> http://bugs.winehq.org/attachment.cgi?id=38202
general Romanian corrections
Respecting the ReactOS guidelines
(http://www.reactos.org/wiki/Translation_Introduction#Wine_translations), I
submit this Romanian general correction patch. It's purpose is to upkeep a
synchronized Romanian terminology among the ReactOS and Wine projects, and as
well inside the Wine Romanian resources (shared or not by ReactOS).
--
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=18230
Summary: Romanian translation wrong
Product: Wine
Version: unspecified
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: petrimetri(a)gmail.com
I'm a Romanian ReactOS translator. (For those who don't know, ReactOS is an
operating system which seeks to be 100% compatible and similar to Windows NT.)
Many translations from Wine are passed to the ReactOS project when
synchronizing the source code.
That leads to the fact that I can't directly translate and/or update any
translation of ReactOS files that are in sync with Wine. Some translations are
already done here on the Wine project but some of them are wrong (For example
Basic colours is translated incorrectly as Culori de basă when the correct
translation is Culori de bază), others don't fit with the rest of the
translations (The translations of ReactOS should retain the terminology used in
Windows. In Windows, Cancel is translated to Revocare, in Wine the translation
is Renunţă which is the imperative form of the verb a renunţa - to give up).
I was told I should speak to you if I want to change these translations but the
problem is that many Linux distributions are translated in Romanian using
Renunţă as Cancel etc and if I try to change the translation in Wine, then
the Romanian Linux-users will strongly disagree ...
What should I do? Please propose a fix.
--
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=34447
Bug #: 34447
Summary: Make the list of embedded translations configurable
Product: Wine
Version: 1.7.1
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: build-env
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: t.artem(a)mailcity.com
Classification: Unclassified
Currently, Wine configure script builds in all the translation languages by
default - for many of us it's wasted space and translations we don't want to
see (I have to run some applications with the ru_RU.UTF-8 locale to get correct
filenames).
Please, make it possible, e.g. via
--languages=en,en_US,lang1,lang2,lang3 ...
configure option to specify the list of translations to be built in.
--
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=39207
Bug ID: 39207
Summary: Battlefield 2 Demo - Crashes
Product: Wine
Version: 1.7.51
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 52265
--> https://bugs.winehq.org/attachment.cgi?id=52265
Backtrace and console output - Slackware wine 1.7.51
Hello everyone,
one member of the German ubuntuusers.de-Forum asked about the state of this
game and I gave the demo version a try which unfortunately crashed.
The demo version can be obtained from this URL. The link in the AppDB is no
longer valid.
http://www.4players.de/4players.php/download_info/Downloads/Download/44463/…
Is it due to my graphics drivers again?
Regards,
Maik
--
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=28923
Bug #: 28923
Summary: utorrent 2.2.1 minidumps when clicking Files tab
Product: Wine
Version: 1.3.31
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: comctl32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lats(a)yless4u.com.au
Classification: Unclassified
Created attachment 37181
--> http://bugs.winehq.org/attachment.cgi?id=37181
Error info
This problem seems somewhat intermittent. It occurs when clicking the Files
tab. A pop-up appears saying a minidump is written but there is no file name
in the message. utorrent stop and then starts a new window.
--
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=39355
Bug ID: 39355
Summary: The Guild 2 Demo installer crashes when starting
copying files
Product: Wine
Version: 1.7.43
Hardware: x86
URL: http://www.fileplanet.com/169779/160000/fileinfo/The-G
uild-2-Demo
OS: Linux
Status: UNCONFIRMED
Keywords: download, Installer, regression
Severity: normal
Priority: P2
Component: user32
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
CC: alexhenrie24(a)gmail.com
Regression SHA1: f920dfd6984ca9227900d0f0406afb3ceb892cc5
Distribution: ---
Created attachment 52447
--> https://bugs.winehq.org/attachment.cgi?id=52447
terminal output/backtraces
To reproduce the problem start the installer with Setup.exe, follow the steps
by clicking <Next>. When the installer is about to start copying the files, it
crashes with a backtrace which looks like some kind of heap corruption.
The attachment contains 2 different backtraces, the first one was produced in
Wine that was compiled with -O2 opt. level, the second one with -O0.
According to my testing the crash was introduced by
commit f920dfd6984ca9227900d0f0406afb3ceb892cc5
Author: Alex Henrie <alexhenrie24(a)gmail.com>
Date: Wed May 13 00:33:13 2015 -0600
user32: Load hIconSmIntern from the best-matching resource.
The installer works properly with the previous commit (it just takes a very
long time to finish installation, but that was the same with previous versions
too).
wine-1.7.51-225-g3966aff
Fedora 22 32-bit
Guild_2_Demo.zip (634M)
sha1: 955f4ff07348f5d9d70a40f37d9db5c65e3acaa7
--
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=38422
Bug ID: 38422
Summary: Arithmetic exception in GdipMeasureCharacterRanges
Product: Wine
Version: 1.7.39
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdiplus
Assignee: wine-bugs(a)winehq.org
Reporter: bs666_1(a)hotmail.com
Distribution: ---
A program (from
http://www.sentrilock.com/cu/sentrilock/SentriCardUtilityInstaller-4.0.11.e… )
crashes with a SIGFPE.
trace:gdiplus:GdipMeasureCharacterRanges (0x1445a0 L"Groupbox" -1 0x144690
(0.00,0.00,56.88,340282346638528859811704183484516925440.00) 0x144520 1
0xe538f8)
trace:gdiplus:GdipMeasureCharacterRanges may be ignoring some format flags:
attr 800
trace:gdiplus:GdipTransformPoints (0x1445a0, 2, 0, 0x32ef14, 3)
trace:gdiplus:GdipSetMatrixElements (0x32ee44, 1.00, 0.00, 0.00, 1.00, 0.00,
0.00)
trace:gdiplus:GdipMultiplyMatrix (0x32ee44, 0x1445e0, 1)
trace:gdiplus:GdipScaleMatrix (0x32ee44, 1.00, 1.00, 1)
trace:gdiplus:GdipTransformMatrixPoints (0x32ee44, 0x32ef14, 3)
trace:gdiplus:GdipTransformPoints (0x1445a0, 2, 0, 0x32edbc, 3)
trace:gdiplus:GdipSetMatrixElements (0x32ed14, 1.00, 0.00, 0.00, 1.00, 0.00,
0.00)
trace:gdiplus:GdipMultiplyMatrix (0x32ed14, 0x1445e0, 1)
trace:gdiplus:GdipScaleMatrix (0x32ed14, 1.00, 1.00, 1)
trace:gdiplus:GdipTransformMatrixPoints (0x32ed14, 0x32edbc, 3)
trace:gdiplus:GdipSetEmpty 0x144638
Program received signal SIGFPE, Arithmetic exception.
0x7daa49b9 in ?? ()
The program works with a native gdiplus.dll.
--
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=40289
Bug ID: 40289
Summary: winedbg --gdb fails to create process
Product: Wine
Version: 1.8.1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winedbg
Assignee: wine-bugs(a)winehq.org
Reporter: vz-wine(a)zeitlins.org
Distribution: Debian
Using wine 1.8-2 from Debian jessie-backports repository I can't use winedbg
--gdb:
% winedbg --gdb notepad.exe
0023:0024: create process 'C:\windows\system32\notepad.exe'/0x1106e0
@0x7ff17200 (0<0>)
0023:0024: create thread I @0x7ff17200
Doing it with any other program, including my own one which I'd like to debug,
fails with the same error. Without --gdb option, winedbg works correctly (but
doesn't understand the debug info).
--
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=38189
Bug ID: 38189
Summary: Yarxi
Product: Wine
Version: 1.7.38
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: serjflint(a)gmail.com
Distribution: ---
When I start Yarxi 7.5 from http://www.susi.ru/yarxi/ on wine 1.7.38 I have
Error "OLE erorr 80004001" three times. After clicking on help I have the same
error. And main menu buttons didn't appear until I clicked on it. It works good
but menu behaivor is annoying. On Windows works perfectly.
P.S. sorry for English.
--
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=26198
Summary: BrainSplode! user interfaces is not usable
Product: Wine
Version: 1.3.14
Platform: x86
URL: http://www.redprodukt.com/rocket/BrainSplode!_1.1.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andrew.millington(a)gmail.com
Continuation of Bug #25098
Past the screen resolution chooser, the first screen is a single colored
background and if you get past that it is hard to navigate that screen.
Due to being not able to work out what is being displayed
*Compose windows can pop up
*BrainSplode! can close
--
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=40470
Bug ID: 40470
Summary: wordpad.exe
Product: Wine
Version: 1.9.7
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: lang48(a)planet.nl
Distribution: ---
Created attachment 54228
--> https://bugs.winehq.org/attachment.cgi?id=54228
wordpad.exe
wordpad.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=38983
Bug ID: 38983
Summary: VirtualDub processing goes "live lock" when minimizing
main window
Product: Wine
Version: 1.7.44
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: j-p-t(a)gmx.net
Distribution: Ubuntu
Created attachment 51935
--> https://bugs.winehq.org/attachment.cgi?id=51935
VirtualDub log
Load any video file, save it to avi.
Minimize the main window to task bar.
The avi encoding process will stop after a few seconds.
The virtualdob log says, the threads went "live lock".
As soon as I succeed in building current development version I will try in
1.7.47.
--
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=41699
Bug ID: 41699
Summary: Problem with Prezi presentation
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: bukbr(a)yahoo.com.br
Distribution: ---
Created attachment 56102
--> https://bugs.winehq.org/attachment.cgi?id=56102
Error message after opening
To reproduce the error:
- Login on Prezi
- Download a presentation for windows (without installation). It's a file.exe.
- Open downloaded file using Wine
- See the error
Till about 3 months ago was working, but Prezi has changed something on windows
file format.
Please, identify and correct, if possible.
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.
http://bugs.winehq.org/show_bug.cgi?id=29062
Bug #: 29062
Summary: Invalid escape sequences in winemenubuilder's desktop
files' comment section
Product: Wine
Version: 1.3.32
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: adys.wh(a)gmail.com
Classification: Unclassified
% cat "/home/adys/.local/share/applications/wine/Programs/Windows Media
Player.desktop"
[Desktop Entry]
Name=Windows Media Player
Exec=env WINEPREFIX="/home/adys/new2" wine
C:\\\\windows\\\\command\\\\start.exe /Unix
/home/adys/new2/dosdevices/c:/users/adys/Start\\ Menu/Programs/Windows\\
Media\\ Player.lnk
Type=Application
StartupNotify=true
Comment=@C:\windows\inf\unregmp2.exe,-155
Icon=EE61_wmplayer.0
"KConfigIni: In file /home/adys/.local/share/applications/wine/Programs/Windows
Media Player.desktop, line 6: " "Invalid escape sequence "\w"."
"KConfigIni: In file /home/adys/.local/share/applications/wine/Programs/Windows
Media Player.desktop, line 6: " "Invalid escape sequence "\i"."
"KConfigIni: In file /home/adys/.local/share/applications/wine/Programs/Windows
Media Player.desktop, line 6: " "Invalid escape sequence "\u"."
--
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=30412
Bug #: 30412
Summary: Dr.com network client for TUST doesn't quit after
clicking close button
Product: Wine
Version: 1.5.1
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fracting(a)gmail.com
Classification: Unclassified
There are many different variants of Dr.com.
This bug is regarding Dr.com for TUST ( Tianjin University of Science and
Technology )
Dr.com for TUST work out of box on Wine, (no wpcap required, no virtual
interface required)
However, when I click the close button (x) of Dr.com, it doesn't quit as
expect. If I click it twice, the GUI will disappear, but the following three
process are always running:
Dr.main.exe
DrUpdate.exe
DrClient.exe
I have confirmed on Windows Dr.com will quit cleanly if I click (x) just once.
There is no public download version of Dr.com for TUST, here is my testing
steps:
1. Install Dr.com :
$ wine tust-drcom.exe
2. Start Dr.com:
$ cd .wine/drive_c/Drcom/DrUpdateClient/
$ wine DrMain.exe
3. Click close button (x) twice
Expect result:
Dr.com should quit cleanly ( after the first clicking on 'close' )
Actual result:
Dr.com GUI disappear, but three related exe is still running.
--
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=29483
Bug #: 29483
Summary: Fiesta Online crashes when displaying a long (> ~52
chars) message
Product: Wine
Version: unspecified
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdi32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wine(a)dezzanet.co.uk
CC: huw(a)codeweavers.com
Classification: Unclassified
Fiesta Online crashes when displaying (whether from sending or receiving) a
message of about 52 characters or more. I believe this is to do with the chat
bubble appearing above a character when they speak, as it only happens when you
are in a relatively close proximity.
I performed some regression testing and found the first bad commit:
17e72c816b9cbc17aeaae1c2ecf2ba230083817d is the first bad commit
commit 17e72c816b9cbc17aeaae1c2ecf2ba230083817d
Author: Huw Davies <huw(a)codeweavers.com>
Date: Thu Oct 6 16:26:07 2011 -0500
gdi32: Load the font properties from the cache if it exists.
:040000 040000 c0ddafd0f315788a234d4bfbe6ad3d975bf0a4cb
b4d13f5e352efe271cf957ed07c79515efbfe9f3 M dlls
--
Steps to reproduce:
1. Create an account and character if not already available -
http://fiesta-online.gamigo.com/ for the EU. There are other franchises for
other parts of the world, but I don't know if the bug is reproducible there
2. When entering the game, send a short chat message (press enter to get the
chat box)
3. Observe how the text appears above the character, and in the recent chat box
4. Send a long message. For me the fault occurs at 52 characters or more.
5. Observe how the game immediately crashes with a segmentation fault.
The fault also happens if someone (or even something!) close to you says a long
message - leading to much frustration!
--
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=39947
Bug ID: 39947
Summary: .NET installation fails in Steam due to missing user
temp directory
Product: Wine
Version: 1.8
Hardware: x86
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: b.adamski(a)mac.com
Using WS9Wine1.8 in a Wineskin 2.6.2 wrapper causes an error when installing
.NET in Steam during the first time setup of Fallout 3:
"The temp directory ’C:\users\mactrix\Temp’ is not a valid directory. Setup
cannot continue."
"mactrix" is my OS X user. Wineskin creates an alias (file shortcut) to the
user directory within the wrapper. Other users who will use my wrapper on their
machines don't have the original "mactrix" user directory on their machines.
This is common and shouldn't cause problems.
I wanted to create a bug for Wineskine but an user confirmed that the bug
occurs with the WS9Wine1.8 engine but not with WS9Wine1.7.50. This leads me to
the conclusion that it's a Wine bug.
Also the problem does not occur with the first time setup of Fallout New Vegas
in Steam. Maybe it's a different .NET version or different .NET components that
don't cause this error in this case.
You can find the port and the related comments here:
http://portingteam.com/files/file/8213-fallout-3-and-fallout-new-vegas-on-s…
--
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=33842
Bug #: 33842
Summary: Steam failed to log-in/connect in a restricted
environment
Product: Wine
Version: 1.6-rc2
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jitsumi(a)gmail.com
Classification: Unclassified
Created attachment 44880
--> http://bugs.winehq.org/attachment.cgi?id=44880
wine log
Steam use various type of connection to connect/log-in (udp/tcp, direct/P2P).
When I try to use steam (with wine) with the connection of my university (that
block P2P and UDP connections) Steam failed to log-in/connect. But Steam succes
to connect in the same university environment under windows 7.
In attachement is the wine log of the tentative of the connection
--
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=31372
Bug #: 31372
Summary: Cypress PSoC Designer installer crashes with "Fatal
error in GC"
Product: Wine
Version: 1.5.9
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Classification: Unclassified
To reproduce:
- Download
ccb9602ac3e0628fd0066816bce2b5d8756c10f4 psoc_designer_5.2_b2401.iso
from http://www.cypress.com/?rID=36833
- Mount it
- rm -rf .wine
- wine /mnt/cyautorun.exe
- Click Install
- Click Next
After a couple seconds, I get "Fatal Error in gc / GetThreadContext failed".
(Doesn't quite seem like bug 23246, since it's not random,
and it's a different message than in bug 25192.)
--
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.