http://bugs.winehq.org/show_bug.cgi?id=24263
Summary: "bricksntiles" crashes
Product: WineHQ Apps Database
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: appdb-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: hans(a)emailt.nl
The program "bricksntiles" doesn't work. (website http://www.bricksntiles.com/)
After installing MSCOMCTL.OCX (using winetricks) the program starts. Files can
be added. When clicking the UPDATE button the program crashes, with Wine giving
a general warning.
I'm using Ubuntu 10.04 on an Intel duo-core machine. Wine is installed through
the Ubuntu software center.
--
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=29951
Bug #: 29951
Summary: Some links don't work in iexplore - needs
Navigate_anchor Navigating to target L"_top"
Product: Wine
Version: 1.4-rc4
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: mshtml
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ocean04(a)suomi24.fi
Classification: Unclassified
wine iexplore http://www.w3schools.com/
Links on the left don't work.
fixme:mshtml:navigate_anchor Navigating to target L"_top" is not implemented
--
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=30042
Bug #: 30042
Summary: IHTMLtablecell is unimplemented?
Product: Wine
Version: 1.4-rc5
Platform: x86
URL: http://netikka.net/dev/tablecell.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: mshtml
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ocean04(a)suomi24.fi
Classification: Unclassified
Created attachment 39135
--> http://bugs.winehq.org/attachment.cgi?id=39135
Sourcecode
Found this problem in my application, here sample to reproduce.
http://netikka.net/dev/tablecell.exe
Click button "Try it" -> Text should change, but there is error "Interface not
supported"
Attached source. Workaround winetricks ie6
--
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=14497
Summary: Airport Inc: Text does not render
Product: Wine
Version: 1.0.0
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sam(a)xnet.tk
Created an attachment (id=14822)
--> (http://bugs.winehq.org/attachment.cgi?id=14822)
Error Log
All text in this game renders as a black box, making it fairly unplayable,
aside from that it works.
Attached is the output log.
--
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=24240
Summary: Missing textures in Edge of Chaos
Product: Wine
Version: 1.3.1
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: adys.wh(a)gmail.com
Created an attachment (id=30518)
--> (http://bugs.winehq.org/attachment.cgi?id=30518)
Screenshot
Many textures in edge of chaos are not being rendered. This includes:
- All skyboxes
- Progress bars, some other UI elements
- Missiles/weapon fires
See attached screenshot.
Only relevant output:
fixme:ddraw:ddraw7_RestoreAllSurfaces iface 0x1aba50 stub!
fixme:d3d:state_wrap (WINED3DRS_WRAP0) Texture wrapping not yet supported
fixme:d3d:state_wrap (WINED3DRS_WRAP0) Texture wrapping not yet supported
fixme:d3d:state_wrap (WINED3DRS_WRAP0) Texture wrapping not yet supported
(spammed)
--
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=29146
Bug #: 29146
Summary: EVE online: some models are missing
Product: Wine
Version: 1.3.33
Platform: x86
URL: http://content.eveonline.com/EVE_Premium_Setup_306979.
exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: pavel.ondracka(a)gmail.com
Classification: Unclassified
Created attachment 37586
--> http://bugs.winehq.org/attachment.cgi?id=37586
terminal output
When playing eve some ship models are not rendered at all and some are
misrendered. this is with ATI Radeon X1600 (RV530) GPU and mesa drivers (latest
git). At first I blamed mesa (because NVIDIA 9600GSO with closed drivers works
fine), however according to developers the generated shaders are invalid:
-------------------------------------------------------------------
Ian Romanick 2011-11-22 11:36:50 PST
The shader declares the array VC to have 245 elements:
uniform vec4 VC[245];
then it tries to access the 246th element of the array:
R0.xyz = (VC[245].xyz);
This is explicitly forbidden by GLSL, and it should be rejected by any GLSL
compiler. Page 31 of the GLSL 1.30 spec says:
"It is illegal to declare an array with a size, and then
later (in the same shader) index the same array with an
integral constant expression greater than or equal to the
declared size."
I tried this same shader with AMD's closed-source driver and piglits glslparser
test, and it failed to compile there as well:
Failed to compile vertex shader wine-from-eve.vert: Vertex shader failed to
compile with the following errors:
ERROR: 0:84: error(#147) '[' array index out of range '245'
ERROR: 0:91: error(#147) '[' array index out of range '245'
ERROR: 0:93: error(#147) '[' array index out of range '245'
ERROR: error(#273) 3 compilation errors. No code generated
---------------------------------------------------------------
Terminal output attached.
More info in: https://bugs.freedesktop.org/show_bug.cgi?id=42514
--
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=13254
Summary: CPUZ crashes when trying to select a different tab via
keyboard
Product: Wine
Version: 1.0-rc1
Platform: PC
URL: http://www.cpuid.com/cpuz.php
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: thestig(a)google.com
Created an attachment (id=13092)
--> (http://bugs.winehq.org/attachment.cgi?id=13092)
crash output
steps to reproduce:
1. start cpuz
2. press the right arrow key
expected result: we switch over to the next tab
actual result: we get a crash
--
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=17592
Summary: La-Mulana: crash on startup due to problem with dmusic
Product: Wine
Version: 1.0.0
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-dmusic
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jgevaryahu(a)hotmail.com
Created an attachment (id=19755)
--> (http://bugs.winehq.org/attachment.cgi?id=19755)
crash with no dll overrides
La-Mulana will crash on startup due to incomplete dmusic support;
If dmusic (and its related dlls) are set to override to native dlls, but no
native dlls are supplied, the game will run, but without music. Sound effects
will work fine.
If native dlls are supplied for dmusic, dmime, dmsynth and dmband, the music
will work as well.(This produces a slew of fixmes from dmstyle and dmloader,
yet the builtin implementation of those two dlls are good enough for the music
to work)
If no overrides are set, the game will attempt to use the builtin
implementation in wine, and will crash.
The ONLY dll override necessary to make the game run without music(whether or
not you supply a native dll) is WINEDLLOVERRIDES="dmime=n"
with WINEDLLOVERRIDES left at "", we get a crash:
<see attachment crash1.txt>
Other crashes occur if of those 4 dlls listed above, dmusic is left as builtin
and the others all native, or if dmusic is left native and all the rest
builtin. The crash is slightly different if dmloader is native.
La-Mulana is freeware and can be obtained from
http://lamulana.super-turbo.net/LA-MULANA.zip
The japanese to english translation patch inside that .zip file works fine in
wine.
P.S. Somewhat unrelated: with the builtin implemnentation of dmband (and native
dmusic, dmime and dsynth, all others builtin), the console messages indicate
that it is certainly trying to play the music and is incrementing through the
music files (which are directmusic .sgt files) but is unable to actually
produce 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=20587
Summary: Ragnarok Online takes 99-100% CPU under wine.
Product: Wine
Version: 1.1.32
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: winebugzilla.kyoo(a)xoxy.net
Ragnarok Online (tested with kRO client and several private servers) takes up
99-100% of the CPU when run under wine. On similar (and some lesser) systems
running Windows, Ragnarok only takes up to 65%, depending on the system. I'm
currently using compiz, but Ragnarok Online takes the same amount of CPU
without it.
Intel Dual Core @ 2.4GHz (/proc/cpuinfo: "model name : Intel(R) Core(TM)2
CPU 6600 @ 2.40GHz")
2GB RAM
nVidia GeForce 8600 GT /w 512 MB RAM (nvidia drivers) (lspci: "VGA compatible
controller: nVidia Corporation GeForce 8600 GT (rev a1)")
I'm running Ragnarok Online windowed, with no sound and no fog. Visual effects
are on.
The CPU usage is regardless of activity onscreen.
No dlls are overridden.
------------------
Others' results using Windows, same server and client:
(ordered by CPU usage, ascending)
- "Killthemall" 0 - 6% CPU usage. Pentium Dual Core 2 GHz CPU. Geforce 8400
GPU. Windows XP. Fullscreen, no sound, no fog, effects on. (next to no
activity on her screen)
- "Superfluity" 25% CPU usage. No CPU or GPU given. Windows XP. Fullscreen,
no sound, no fog, effects on. (a lot of activity on his screen) "If I have
other things open, [Ragnarok Online] goes down to 10%"
- "Harahel" 40% CPU usage. 2.4 GHz CPU (no brand or model given). Unknown GPU.
Windows Vista. Fullscreen, sound effects and music, fog on, effects on.
(quite a lot of activity on his screen)
- "Kathy" 47 - 48% CPU usage. 2.6GHz CPU (no brand or model given). Geforce
6200 GPU 256MB GPU. Windows XP /w SP1. Windowed, no sound, no fog, effects
on. (next to no activity on her screen) "They share 60% if I dual-client" (run
two copies at once)
- "AIexithymia" ~50% CPU usage. single core 2.2 GHz CPU (no brand or model
given). nVidia GeForce 6100 LE GPU. Windows XP. Fullscreen, no sound, no
fog, effects on. (a lot of activity onscreen / in game)
- "Professor Professor" "less than 63%" CPU usage. Pentium Dual Core T4300 @
2.1GHz. ATi Radeon GPU (no model given). Windows Vista. Windowed, no sound,
no fog, effects on. (middling amount of activity on his screen)
--
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=20969
Summary: World of Warcraft launcher fails to render page
Product: Wine
Version: 1.1.34
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: mshtml
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: poltsy(a)gmail.com
Created an attachment (id=25136)
--> (http://bugs.winehq.org/attachment.cgi?id=25136)
console output
World of Warcraft launcher program window stays saying "Loading News..." where
it should show news about current wow events and links to account management
etc. After a while a tiny little empty window with only an ok button pops up.
This is a regression, first release it appears in is 1.1.29 and bisect says
80f02b82d68902f32578a7bcf6cfbaa715b724ce is the first bad commit
commit 80f02b82d68902f32578a7bcf6cfbaa715b724ce
Author: Jacek Caban <jacek(a)codeweavers.com>
Date: Sat Aug 22 19:40:01 2009 +0200
mshtml: Use URL moniker to load http documents.
:040000 040000 ce13f07c676018ff9e55a887a94f0c8059d6fb43
e2353a8c233d8233e380f8045b6c87c8191c6be3 M dlls
--
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.