http://bugs.winehq.org/show_bug.cgi?id=28325
Summary: Dragon NaturallySpeaking 11.0 Standard no longer
completes user training successfully
Product: Wine
Version: 1.2.3
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ole
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: susancragin(a)earthlink.net
Dragon NaturallySpeaking 10 Standard used to run very well but now no longer
works at all.
I am reporting this bug against 1.2.3 because that is the last version that
installs NatSpeak, although it does not run.
To reproduce:
I have Oneiric with all updates, 64-bit. I got 1.2.3 off the ubuntu repository.
I installed NatSpeak 10.0 Standard.
Installation seemed to go all right.
I then tried to do the initial setup.
The steps for measuring microphone accuracy, and the training, went well. After
that a couple of steps, such as training (I check "No" to that) went by.
Then it froze. The following two lines appeared on the terminal screen; the
first was repeated 4 times; the second 9.
fixme:psapi:GetProcessImageFileNameA (0x54c, 0x4d0e470, 520) stub
err:ole:CoRevokeClassObject called from wrong apartment, should be called from
800000038
--
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=30279
Bug #: 30279
Summary: Dragon Naturally Speaking does not install with
dotnet3.5 error
Product: Wine
Version: 1.4
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ole
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: susancragin(a)earthlink.net
Classification: Unclassified
Dragon NaturallySpeaking 11.5 does not install the included dotnet3.5 with an
error.
--
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=31010
Bug #: 31010
Summary: alien vs predator 2 crashe at playing intro
Product: Wine
Version: 1.5.5
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: ole
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: smutkovski(a)gmail.com
Classification: Unclassified
Created attachment 40704
--> http://bugs.winehq.org/attachment.cgi?id=40704
log before movie rename
game crash at when it should play intro.
when i rename movies, i get another errors and game still crash.
i have:
ubuntu 11.10 x86
wine 1.5.5
using ALSA for sound
--
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=15384
Summary: Incorrect behaviour when using BIF_RETURNONLYFSDIRS |
BIF_BROWSEINCLUDEFILES
Product: Wine
Version: 1.0.0
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: shell32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: boris.seve(a)drillscan.com
When calling SHBrowseForFolder with both BIF_RETURNONLYFSDIRS and
BIF_BROWSEINCLUDEFILES flags the 'Ok' button is incorrectly disabled when a
file is selected (button is enabled however when a directory is selected)
If only the BIF_BROWSEINCLUDEFILES flag is set the 'Ok' button is correctly
enabled when a file is selected.
AFAIK (and confirmed on Windows XP SP3) the 'Ok' should be enabled when a
directory is selected AND when a file is selected if both flags are set.
This holds true whether BIF_NEWDIALOGSTYLE is set or not.
--
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=18578
Summary: Wine reverses big/small icon resources in WM_SETICON
Product: Wine
Version: 1.1.21
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: user32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: emwine(a)earthlink.net
Created an attachment (id=21241)
--> (http://bugs.winehq.org/attachment.cgi?id=21241)
Testcase binary and source (VC 6.0 command line for compiling at end of c file)
This could be two bugs, could be one-- I'm not sure. This occurs both in
WM_SETICON, and also when registering a WNDCLASS structure with
RegisterClassEx().
When calling WM_SETICON, wParam indicates whether or not to use the big or
small resource. (ICON_BIG, or ICON_SMALL). Windows reverses these, Wine
doesn't. Running the testcase:
Windows:
icon, then press 'b': get 16x16 IDI_ICON
icon, then press 's': get scaled 32x32 IDI_ICON
Wine:
wine icon, then press 'b': get scaled 32x32 IDI_ICON
wine icon, then press 's': nothing at all
For Wine, you may have to hit 'b' a few times, even restarting the app before
it works-- I don't know why it's flaky.
I noticed this problem because I had ugly icons in my MFC MDI app in Wine, and
realized it was scaling the 32x32 resource instead of using the 16x16 one.
When writing the app, I noticed that CWnd::SetIcon(HICON, BOOL bBig) reversed
the 2nd parameter in reality. Probably Wine just went by the docs and nobody
noticed the docs are reversed from reality.
The other issue that may in fact be the same bug is that the WNDCLASS
structure's icons are reversed as well. I'm thinking it's the same windows bug
responsible for the reversal with the documentation manifesting itself in
multiple places. So it's entirely possible it's just one issue in Wine also
since Wine doesn't reverse them. Running the testcase again:
Windows:
icon: IDI_APPLICATION used (hIconSm)
icon foo: IDI_QUESTION used (hIconSm)
Wine:
wine icon: IDI_QUESTION used (hIcon)
wine icon foo: IDI_APPLICATION used (hIcon)
There's also a question of what happens when you use hInstance instead of NULL
in the LoadIcon() calls, but this bug isn't dealing with that problem.
--
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=33350
Bug #: 33350
Summary: Maxthon 4 fails to start
Product: Wine
Version: unspecified
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gmazzone0(a)aol.com
Classification: Unclassified
When I open Maxthon 4, it shows a blonk page with:"Missing: sidebar/index.html
Missing: layout:html" and can't be 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.
http://bugs.winehq.org/show_bug.cgi?id=32368
Bug #: 32368
Summary: Bigrats: UI can't display normally
Product: Wine
Version: 1.5.18
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 42710
--> http://bugs.winehq.org/attachment.cgi?id=42710
The Log
Bigrats is a video download tool.
reproduce it follow this:
0. download and install it
:http://download.flvcd.com/setup/bigrats_setup_0.4.7.2.exe ;
1. cd to path you installede it and 'wine commence.exe' to run it.
my test evnoriment:
- Kubuntu 12.10 32bit
- wine-1.5.18-175-g0104496
- bigrats 0.4.7.2
md5sum bigrats_setup_0.4.7.2.exe
3ef9bc738d0f941cbdf085b5fd531f9a bigrats_setup_0.4.7.2.exe
--
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=25275
Summary: Civilization V needs some msvcp90 functions
Product: Wine
Version: 1.3.7
Platform: x86
OS/Version: Linux
Status: NEW
Severity: enhancement
Priority: P2
Component: msvcp
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
If you remove msvcp90 from the prefix (or set to builtin), fails on:
msvcp90.dll.??0?$basic_ofstream@DU?$char_traits@D@std@@@std@@QAE@XZ
according to mscodescan, needs about 60 total. I'll attach the list.
--
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=32378
Bug #: 32378
Summary: no sound at all, "Test Sound" button gives threading
model error
Product: Wine
Version: 1.5.18
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: rclocher3(a)yahoo.com
Classification: Unclassified
Created attachment 42722
--> http://bugs.winehq.org/attachment.cgi?id=42722
+tid,+mmdevapi,+winmm,+driver,+midi,+dsound,+dsound3d,+dmusic,+mci,+oss,+alsa,+coreaudio
log
Hi all, I have a Lenovo S10-3 running Ubuntu 12.10, and I decided to give Wine
a try. I installed Wine from the Software Center and got version 1.4.1. When
I ran winecfg and clicked the "Test Sound" button there was no sound, and there
was an error in the console:
err:ole:CoInitializeEx Attempt to change threading model of this apartment from
multi-threaded to apartment threaded
The selected driver under version 1.4.1 was winealsa.drv.
I decided to get the latest development release 1.5.18 from the Ubuntu Wine
Team's PPA. I started with a fresh prefix by deleting the .wine directory.
Now winecfg shows the selected driver as winepulse.drv. Unfortunately the
results are the same as before: no audio and the threading model error.
A debug trace log is attached.
--
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=29655
Bug #: 29655
Summary: Adobe Reader cannot open document restricted by remote
server
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: segfalta(a)gmail.com
Classification: Unclassified
Adobe Reader 9.5
Try to open encrypted document restricted by a remote server.
As expected, I am requested to provide username + password so that the remote
server may grant access.
However, upon providing the right credentials I get, "This computer must be
connected to the network in order to open this document".
Note, not only the computer is connected, but Adobe Reader itself successfully
accesses Adobe online help etc.
--
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.