http://bugs.winehq.org/show_bug.cgi?id=26353
Summary: Winhttprequest5.1 is unimplemented?
Product: Wine
Version: 1.3.15
Platform: x86
URL: http://netikka.net/dev/winhttp.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winhttp
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ocean04(a)suomi24.fi
http://www.neilstuff.com/winhttp/
Example: http://netikka.net/dev/winhttp.exe
procedure TForm1.Button1Click(Sender: TObject);
var fhttp: variant;
begin
fhttp:=createoleobject('WinHttp.WinHttpRequest.5.1');
fhttp.open('GET', edit1.text, true);
fhttp.send();
if Not FHttp.WaitForResponse(10) then
begin
FHttp.Abort;
exit;
end;
memo1.text:=fhttp.responsetext;
end;
--
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=26908
Summary: HaoZip: Files view inherits background from operating
system
Product: Wine
Version: 1.3.18
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=34313)
--> (http://bugs.winehq.org/attachment.cgi?id=34313)
Image showing the problem
Steps to reproduce:
1) remove ~/.wine
2) winetricks gecko gdiplus
3) install HaoZip (default installation)
4) wine HaoZip.exe
Behaviour:
See attachment.
Expected behaviour:
File view should have white background.
Terminal output:
fixme:win:EnumDisplayDevicesW ((null),0,0x32f058,0x00000000), stub!
fixme:mountmgr:harddisk_ioctl unsupported ioctl 74080
fixme:mountmgr:harddisk_ioctl unsupported ioctl 74080
fixme:wininet:InternetSetOptionW Option INTERNET_OPTION_CONNECT_TIMEOUT (2000):
STUB
fixme:wininet:InternetSetOptionW INTERNET_OPTION_CONNECT_RETRIES 3
fixme:shell:SHAutoComplete stub
err:listview:LISTVIEW_WindowProc unknown msg 108c wp=00000000 lp=00000000
fixme:wininet:CommitUrlCacheEntryInternal entry already in cache - don't know
what to do!
fixme:wininet:CommitUrlCacheEntryInternal entry already in cache - don't know
what to do!
--
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=22614
Summary: Unigine Heaven 2 d3d9 benchmark runs out of video
memory
Product: Wine
Version: 1.1.43
Platform: x86
URL: http://unigine.com/products/heaven/
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
The unigine heaven 2 3d39 benchmark aborts after about 193 seconds with
...
fixme:d3d_surface:IWineD3DSurfaceImpl_LoadLocation 0x1a2440: Downloading rgb
texture to reload it as srgb
fixme:d3d_surface:IWineD3DSurfaceImpl_LoadLocation 0x1a25c8: Downloading rgb
texture to reload it as srgb
fixme:d3d_surface:IWineD3DVolumeImpl_LockBox (0x9da1a88) : pBox=(nil) stub
fixme:d3d_surface:IWineD3DVolumeImpl_LockBox (0x9da1a88) : pBox=(nil) stub
fixme:d3d_surface:IWineD3DVolumeImpl_LockBox (0x1a6080) : pBox=(nil) stub
err:d3d:resource_init Out of adapter memory
wine: Unhandled page fault on read access to 0x00006e6f at address
0x6e6f (thread 0019), starting debugger...
To reproduce:
sh wisotool unigineheaven
sh winetricks videomemorysize=512
cd ~/.wine/drive_c/Program Files/Unigine/Heaven
wine cmd /c Heaven_d3d9.bat
This is with an nvidia 8500 or GT 220 card. It seems quite reproducible.
The authors assure me the benchmark runs fine on Windows with only 512MB
of video RAM. Do we have a leak?
--
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=22063
Summary: cmd tests need todo_wine
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: NEW
Keywords: download, source
Severity: enhancement
Priority: P2
Component: testcases
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Now that
http://source.winehq.org/git/wine.git/?a=commitdiff;h=e486a02157f145ccd5853…
is in, cmd's tests have something similar to the broken() macro, but it still
lacks a todo_wine.
There's a lot of stuff that wine's cmd doesn't support, but needs to
eventually, and having testcases in for them would be nice.
--
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=19939
Summary: SRCDS - Console only
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: kernel32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: laurikoivunen(a)hotmail.com
While using SRCDS (valve's Source Dedicated Server) over wine you are required
to use X even if one issues -console in the program parameters (will launch a
wine console). This is extremely frustrating because then you also need to use
X to even see something on the console window.
I found a workaround.
Hack kernel32's AllocConsole to just return true and make something like this
with GetNumberOfConsoleInputEvents:
================
BOOL WINAPI GetNumberOfConsoleInputEvents( HANDLE handle, LPDWORD nrofevents )
{
if (nrofevents) *nrofevents = 0;
return TRUE;
}
================
.. and issue export DISPLAY=''
This will allow running the server in console only mode but this naturally
disables text input. My C skills are nonexistent so I am asking here if a wine
developer could make this work.
--
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=27517
Summary: Lord of the Rings Online wants
d3dx9_36.dll.D3DXGetShaderSamplers (purist)
Product: Wine
Version: 1.3.22
Platform: x86
URL: http://www.lotro.com/
OS/Version: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: directx-d3dx9
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
CC: wine-bugs(a)winehq.org
Only happens if you force d3dx9_36 to builtin.
--
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=27074
Summary: avicap32 won't build correctly on recent kernel
headers
Product: Wine
Version: 1.3.15
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: galtgendo(a)o2.pl
Created an attachment (id=34506)
--> (http://bugs.winehq.org/attachment.cgi?id=34506)
patch for correct build with linux/videodev2.h
With the removal of v4l1 API from kernel, avicap32 won't build correctly.
I'm attaching a (most likely working) patch, that I've sent to wine-devel.
The patch doesn't actually introduce any real code changes, only restructures
the existing code.
As the response was: "rewrite to use libv4l1",...
PS.: qcap might need similar, though more complex change.
--
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=11737
Summary: DVD Rebuilder fails to run
Product: Wine
Version: 0.9.55.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: florin(a)andrei.myip.org
Created an attachment (id=10986)
--> (http://bugs.winehq.org/attachment.cgi?id=10986)
stdout from the application
OS is Linux Ubuntu 7.04. I'm using the WINE packages from winehq.org
I'm trying to run DVD Rebuilder, the free edition, the full installer:
http://dvd-rb.dvd2go.org/modules.php?name=Downloads&d_op=viewdownload&cid=14
I was able to install the software without problems. Some components of the
full installer (AviSynth, HC Encoder) work fine standalone (not from DVD-Rb).
I can launch DVD-Rb, I can select a Source Path (it's a DVD dumped to the
hard-drive). I can configure the various settings in the application.
However, when I click "Backup DVD" I get a pop-up:
Run-time error '5':
Invalid procedure call or argument
I attached the messages printed by DVD-Rb on the console.
I can run more tests if need be.
--
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=18672
Summary: Free application WinBUGS crashes right away when
executed within a Linux OS using any Wine version >
1.1.12.
Product: Wine
Version: 1.1.22
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: s.conti(a)gmx.co.uk
WinBUGS, a freely downloadable (URL: http://www.mrc-bsu.cam.ac.uk/bugs/)
statistical software available under Windows only, can be successfully run on
Linux by means of Wine.
However the application would produce an outright crash if used with any Wine
version later than (and including) 1.1.13; utilisation of Wine versions up to
1.1.12 would give no problem.
Following is the full outcome of my regression testing attempt:
==
11c1d7a0e7ff8d4713c8177dce4ba54781e69ead is first bad commit
commit 11c1d7a0e7ff8d4713c8177dce4ba54781e69ead
Author: Nikolay Sivov <bunglehead(a)gmail.com>
Date: Wed Jan 7 11:58:29 2009 +0300
ole32: Fix return value for DefaultHandler_GetMiscStatus.
:040000 040000 c714b9a367c8894e61a1c528a1e014e66e3a35c9
5e1fd0df7307b205054fdc2316e17b3b56dda223 M dlls
==
Very many thanks in advance for taking your time and attention.
--
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=27555
Summary: Text is not displayed on Wine 1.3.22+git in
Civilization IV
Product: Wine
Version: 1.3.22
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ariel.bys(a)gmail.com
Since commit 410a8e86f5cfbae84ea8f011d769d4e63fa67b78, text isn't displayed on
Civilization IV Beyond The Sword 3.19's menus. Attached image.
Commit Description:
Author: Henri Verbeet <hverbeet(a)codeweavers.com>
Tue, 14 Jun 2011 18:28:09 +0000 (20:28 +0200)
Committer: Alexandre Julliard <julliard(a)winehq.org>
Wed, 15 Jun 2011 10:51:50 +0000 (12:51 +0200)
Commit 410a8e86f5cfbae84ea8f011d769d4e63fa67b78
Tree 18bf0e2d90c96eb5c5011015e1d37869272c8524
Parent b9133d7de059035220ba95cf2fb96b6f4146dd6e
wined3d: Check for a valid source rectangle and destination in
wined3d_device_update_surface().
http://source.winehq.org/git/wine.git/commit/410a8e86f5cfbae84ea8f011d769d4…
--
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=26809
Summary: iexplore crashes when clicking on Home while it is
already loading a URL
Product: Wine
Version: 1.3.17
Platform: x86-64
OS/Version: Linux
Status: NEW
Keywords: download, source
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
Created an attachment (id=34161)
--> (http://bugs.winehq.org/attachment.cgi?id=34161)
Wine 1.3.17 console output
I tested this on a SLOW connection so that I have time to interrupt iexplore
while it is trying to load a page (I was actually testing Bug 26651).
$wine iexplore https://my.if.com
And while it's doing that, click on the Home button.
Backtrace:
=>0 0x7ed43119 set_doc_state+0x9(This=(nil), doc_state=READYSTATE_LOADING)
[/build/buildd/wine1.3-1.3.17/dlls/shdocvw/dochost.c:165] in shdocvw
(0x0032deb8)
1 0x7ed5070d navigate_url+0x9c(This=(nil), url="http://www.winehq.org",
Flags=(nil), TargetFrameName=(nil), PostData=(nil), Headers=(nil))
[/build/buildd/wine1.3-1.3.17/dlls/shdocvw/navigate.c:853] in shdocvw
(0x0032ef58)
2 0x7ed50b54 go_home+0x113(This=(nil))
[/build/buildd/wine1.3-1.3.17/dlls/shdocvw/navigate.c:963] in shdocvw
(0x0032f1c8)
3 0x7ed4745c InternetExplorer_GoHome+0x5b(iface=0x12f298)
[/build/buildd/wine1.3-1.3.17/dlls/shdocvw/ie.c:153] in shdocvw (0x0032f1f8)
Apparently iexplore doesn't like being interrupted while it is busy loading a
page. I could only get it to do this on this particular URL though. I'm sure
there must be others.
--
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=14942
Summary: White trees (missing textures) in Drakensang
Product: Wine
Version: CVS/GIT
Platform: PC-x86-64
URL: http://drakensang.de/oe_uploads/downloads/drakensang_dem
o.zip
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: winehq(a)eikel.org
In the Drakensang demo version the trees which are near to the viewer are
rendered white. Maybe the textures are not applied correctly. See the
screenshot and the startup log of bug 14911 (I do not want to upload it twice).
Wine version wine-1.1.2-628-g5d900bb. Maybe this is due to the hack from bug
14758.
--
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=23410
Summary: OnLive fails to connect to service
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: quadomatic(a)gmail.com
Created an attachment (id=29187)
--> (http://bugs.winehq.org/attachment.cgi?id=29187)
WINE command line output
When logging into OnLive through both the launcher and through a browser
installed in WINE (in my case, Firefox), credentials are successfully
authenticated, but the program gives an error: "Unable to contact the OnLive
Gaming Service. Please check play.onlive.com for details" error.
"a512" also appears in the bottom left corner of the launcher window, so I'm
guessing that's the error code.
A log of WINE's command line output, as well as a record of TCP connections
made during the program's connection process is listed as well.
--
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=19030
Summary: Escape from Monkey Island - saving game freezes
Product: Wine
Version: 1.1.24
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: 4plague(a)gmail.com
When you save a game in EFMI, the game is saved properly (can be succesfully
loaded in the future), but the Saving Game screen does not go away. The game
engine works, because you can Alt-f4 and click YES, but it seems, like the game
waits for some close() operation or sth.
--
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=17890
Summary: Unreal Tournament shows only a quarter of the screen in
full screen mode
Product: Wine
Version: 1.1.18
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
Created an attachment (id=20196)
--> (http://bugs.winehq.org/attachment.cgi?id=20196)
Screenshot
Screenshot shows the problem.
The mouse is also uncontrollable for some reason.
All is fine in windowed mode, but unplayable as the mouse leaves the Wine
window when moved quickly.
I have to use the software renderer as the hardware renderer slow the game down
to an unusable pace.
Radeon 9200.
Works fine under Windows.
No workaround that I know of.
--
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=15542
Summary: The Settlers V - The Heritage of the Kings / Siedler 5 -
Das Erbe der Könige
Product: Wine
Version: 1.0.0
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dennisschneck(a)web.de
Created an attachment (id=16517)
--> (http://bugs.winehq.org/attachment.cgi?id=16517)
The output from wine if start the game from console
Settlers V - The Heritage of the Kings Version 1.06.0217
from a German Games Magazin (ComputerBild Spiele 10/2008)
It its a German Version.
I can install the game, starting the game is possible too.
The Sound works.
But if i start a Single Player Game i get this Error after a few seconds.
"StartErrorReport is called a second Time"
Wine 1.0 is running under Ubuntu 8.10 (32bit)
is configured to emulate "Windows XP".
Backtrace: please see the attach
--
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=25269
Summary: SNS-HDR: Fails to run
Product: Wine
Version: 1.3.7
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=32092)
--> (http://bugs.winehq.org/attachment.cgi?id=32092)
Terminal output on Wine 1.3.7
Steps to reproduce:
1) remove ~/.wine
2) winetricks vcrun2008 dotnet30
3) install SNS-HDR
3) wine Loader.exe
Behaviour:
Error.
Expected behaviour:
No 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=25670
Summary: Republic: The Revolution: Cann't run installer.
Product: Wine
Version: 1.3.10
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: o01eg(a)yandex.ru
Created an attachment (id=32696)
--> (http://bugs.winehq.org/attachment.cgi?id=32696)
WINEDEBUG=warn+all wine "D:\setup.exe"
First show window "Установка"(Installation) with the text "Программа установки
Республика. Революция подготавливает программу InstallShield(R) Wizard, которая
будет направлять ваши действия во время дальнейшей установки. Подождите,
пожалуйста"(Programm of installation Republic: the Revolution is preparing
program InstallShiled(R) Wizard which will be point you action while next
instllation. Please wait.). Progress bas up to 99% and show error box "Ошибка
при инициализации программы установки"(Error while initialization of
installation program): "Не удаётся выполнить программу, необходимую для
продолжения установки. Перезапустите систему и пропробуйте ещё раз.
Ошибка 105."(Cann't execute program requested for continue installation.
Restart system and try again.
Error 105)
--
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=23573
Summary: when Moving cursor, Xorg uses %100 CPU.
Product: Wine
Version: 1.2-rc6
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P5
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: firatagdas(a)gmail.com
Created an attachment (id=29459)
--> (http://bugs.winehq.org/attachment.cgi?id=29459)
%100 Cpu using
Sorry for my english.
Well.. I 'm using Ubuntu 10.04 and Wine 1.2.
My text editor is E-texteditor installed on wine. Recently i update wine to
wine 1.2rc6 and e become useless. Because spent too much cpu...
Just move cursor or do any simple process and its useless! Could you please
help with this?
--
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=25069
Summary: Encounter Serious Problem and need to close
Product: WineHQ Apps Database
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: appdb-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wargamerex(a)gmail.com
Created an attachment (id=31791)
--> (http://bugs.winehq.org/attachment.cgi?id=31791)
This is the problem when try to open
App: Dlink IP Surveillance 300
Ver: 3.0.0.0
--
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=10105
Summary: OLE Errors start upon launching and blank windows
Product: Wine
Version: unspecified
Platform: PC
URL: http://mailware.com/homeoffice.htm#SystemRequirements
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lane(a)zigzap.com
Problem 1
--------------------
Installation is smooth as silk but upon launching it the software presents an
OLE Error 80070057 which I cannot find in google.
Problem 2
--------------------
All the control panels for this application use IE components but are showing
up blank.
Problem 3
--------------------
After resizing the window using the maximize button all resize controls vanish
from the window and do not return upon double clicking the window title bar to
resize the window.
--
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=26537
Summary: LabVIEW 2010: Installer detected non-existent previous
installation
Product: Wine
Version: 1.3.16
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lukasz.wojnilowicz(a)gmail.com
Created an attachment (id=33795)
--> (http://bugs.winehq.org/attachment.cgi?id=33795)
Warning message
Steps to reproduce:
1) remove ~/.wine
2) winetricks gecko
3) wine setup.exe
Behaviour:
See attachment.
Expected behaviour:
There should be no warning message.
Terminal output:
fixme:volume:GetVolumePathNameW
(L"Z:\\media\\DATA1\\Programy\\niezainstalowane\\Nil_2010\\Bin\\data0009.dll",
0x8a0710, 68), stub!
fixme:volume:GetVolumePathNameW
(L"Z:\\media\\DATA1\\Programy\\niezainstalowane\\Nil_2010\\bin\\nipie.exe",
0x8a0800, 65), stub!
fixme:ver:RtlGetProductInfo (6,0,0,0,0x32f6b8): stub
fixme:volume:GetVolumePathNameW
(L"Z:\\media\\DATA1\\Programy\\niezainstalowane\\Nil_2010\\bin\\NISysInf.dll",
0x8ea6f8, 68), stub!
fixme:storage:create_storagefile Storage share mode not implemented.
fixme:msi:MsiGetLastErrorRecord
fixme:msi:MsiGetMode unimplemented run mode: 0
--
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=26841
Summary: Reaper: File extensions not saved with project file
Product: Wine
Version: 1.3.18
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: futuretodd(a)googlemail.com
When trying to save a project in Reaper the resulting file appears without the
file extension, and cannot be read back by Reaper.
If the .rpp file extension is then manually added it can be read as normal.
This regression seems to have been introduced in 1.3.17 and is still present in
1.3.18.
Tested with both stable Reaper 3.75
http://www.cockos.com/reaper/download.php
and Reaper 4 alpha 65b
http://www.landoleet.org/
Elementary OS Jupiter
Intel core2duo
GeForce 9300M GS
Wine 1.3.17/1.3.18
--
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=26981
Summary: Word 2003 - very sluggish with WINE 1.3.18
Product: Wine
Version: 1.3.18
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: watgrad(a)gmail.com
After updating to WINE 1.3.18 MS Word shows unusual behaviour.
Word loads fine, but consumes high processor % - and is very sluggish - had to
wait many seconds for response when typing, selecting menu items, scrolling
through documents.
running wineboot did not help
Downgrading to WINE 1.2 solved issue.
Ubuntu 10.10 64 bit
--
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=27004
Summary: Warcraft III fails to select units by mouse drag
Product: Wine
Version: 1.3.19
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: naicik(a)gmail.com
Created an attachment (id=34432)
--> (http://bugs.winehq.org/attachment.cgi?id=34432)
output on console, probably nothing that can help
wine 1.3.19 fails to select units in Warcraft III when I try to drag left mouse
button. Selecting in game is still possible by ctrl+click, double click etc, so
it appears to be only mouse drag related problem It is regression compared to
1.3.18(and probably earlier) wine versions. I tried it with and without compiz.
--
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.