http://bugs.winehq.org/show_bug.cgi?id=10524
Summary: The Chronicles of RiddicK check boxes not visible
Product: Wine
Version: 0.9.49.
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sexy_b14(a)hotmail.com
Created an attachment (id=9267)
--> (http://bugs.winehq.org/attachment.cgi?id=9267)
log1
This is a different one.
When installing The Chronicles of Riddick: Escape from Butcher Bay, when the
installer gets to choose components the check box's are not visible, but you
can get them to become visible.
1. Remove your .wine dir
2. cd in to the install dir and wine setup.exe (wine will make its dir stuff
see log1)
3. The installer loads up fine and the check boxes are visible and you can
start installing the game but because you have not setup you cdrom drive in
winecfg you carn't use wine eject so you are unable to continue with the
install. (see pic one)
4. Run winecfg and map you cdrom drive
5. Run the setup agane and now the check boxes are no longer visible. (see pic
two and log2)
Because now the check boxes are no longer visible the installer wont install
anything and tells you that the install is complete.
Thanks guys
--
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=10404
Summary: Wineconsole fails to display text or change color for
Renegade FDS
Product: Wine
Version: 0.9.49.
Platform: PC
URL: http://www.game-maps.net/index.php?action=download&id=520
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-console
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nodisgod(a)yahoo.com
Created an attachment (id=9093)
--> (http://bugs.winehq.org/attachment.cgi?id=9093)
Renegade FDS server.ini
The Renegade Free Dedicated Server is a program that enables the hosting of a
C&C Renegade server. When launched, it should start a separate console, change
color, and display text, while reading in input which is interpreted as
commands. When running the Renegade FDS under Wine via wineconsole
--backend=user server.dat, a separate console is launched, but the color does
not change, and no text is outputted. No output in the terminal where the
wineconsole command was invoked is present. To install the FDS, download the
installer, and when prompted for user/password/serial, the user/password can be
made up, and the serial can be made up, but must start with 0669. Use this
particular server.ini, which should be placed in the installation directory's
Server directory, for testing purposes. The actual binary that launches the
server is server.dat, in the Server directory.
--
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=10652
Summary: ./tools/wineinstall adds /usr/local/lib to
/etc/ld.so.conf
Product: Wine
Version: 0.9.49.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fry.kun(a)gmail.com
It appears that running ./tools/wineinstall (the recommended install method for
source installs) adds "/usr/local/lib" to /etc/ld.so.conf
As I understand it, this is not a proper default and should be avoided.
Personally, I've grappled for a week with a bug from dual python installation
(stock /usr/ and custom /usr/local/) where stock python would attempt to
dynamically load /usr/local/lib/libpython2.5.so.1.0 - this caused a lot of
errors with system programs/etc.
Tracing the source of the bad entry in /etc/ld.so.conf led me to wine
installer.
--
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=11659
Summary: acmStreamConvert inconsistencies (Windows Vs Wine for
mp3 -> pcm)
Product: Wine
Version: 0.9.55.
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: msacm32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lightning_uk(a)imgburn.com
When attempting to convert MP3 to PCM (Stereo, 44100Hz, 16bit - for burning to
a disc) the acmStreamConvert function (working synchronously) does not work as
expected (doesn't do what Windows does).
The 'cbSrcLengthUsed' value within the ACMSTREAMHEADER structure is not updated
with the correct value (or the wrong amount of data is actually used).
When 'cbSrcLength' and 'cbDestLength' are set to the same value (in my case,
75264), after conversion 'cbSrcLengthUsed' is always being set to the entire
size of the source buffer (75264) rather than the amount of the source buffer
that was actually used to create the content in the destination buffer.
Windows behaviour on first two calls to acmStreamConvert...
D 10:41:06 FileSize: 5339011
D 10:41:06 CurrentFileBytesRead: 75264
D 10:41:06 cbSrcLength: 75264
D 10:41:06 cbSrcLengthUsed: 16343
D 10:41:06 cbDstLength: 75264
D 10:41:06 cbDstLengthUsed: 73728
D 10:41:06 FileSize: 5339011
D 10:41:06 CurrentFileBytesRead: 91607
D 10:41:06 cbSrcLength: 75264
D 10:41:06 cbSrcLengthUsed: 10031
D 10:41:06 cbDstLength: 75264
D 10:41:06 cbDstLengthUsed: 73728
Wine behaviour on first two calls to acmStreamConvert...
D 10:33:22 FileSize: 5339011
D 10:33:22 CurrentFileBytesRead: 75264
D 10:33:22 cbSrcLength: 75264
D 10:33:22 cbSrcLengthUsed: 75264
D 10:33:22 cbDstLength: 75264
D 10:33:22 cbDstLengthUsed: 73728
D 10:33:22 FileSize: 5339011
D 10:33:22 CurrentFileBytesRead: 150528
D 10:33:22 cbSrcLength: 75264
D 10:33:22 cbSrcLengthUsed: 75264
D 10:33:22 cbDstLength: 75264
D 10:33:22 cbDstLengthUsed: 73728
Applications are supposed to move the source buffer on by 'cbSrcLengthUsed'
bytes after each call to acmStreamConvert.
The source buffer is therefore being used up far too quickly and the conversion
is considered complete long before it actually is.
--
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=11469
Summary: Crash during installing application component
(Metatrader Language Editior)
Product: Wine
Version: 0.9.33.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: suman.kan(a)gmail.com
Install Metatrader ( for example)
run this Application Goto-> tools-> Metaquotes Language Editior -> in opened
page Wine asks abouk Gecko installing - press Yes -> after it dowloaded - get
crash - see attachment
--
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=11039
Summary: Syberia2 almost freezes when clicking on the bellows of
the candle machine
Product: Wine
Version: 0.9.46.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P5
Component: wine-programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: denis(a)carolo.net
I just played the game Syberia 2.
It went quite alright apart from a strange behavior at one moment :
when in the monastery, clicking on the bellows of the candle machine, the game
almost freezes. I mean, it seems all frozen, but when you wait long enough, you
see your cursor coming back. Then you are still able to move and make actions,
but it's very, very, very slow.
At the end, when you click to open the little box with the candle, everything
start to work alright again.
That's the only one problem I had with this game.
Ubuntu Feisty 7.10, official distrib Wine version (0.9.46) and official CD's of
Syberia 2.
Thanks for your job.
--
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=11478
Summary: Divx player does not play divx movies
Product: Wine
Version: 0.9.54.
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kd7tck(a)msn.com
The installation was fine, however when it came to actually playing a movie it
didn't happen. The player when playing starts shaking, and blacks out the rest
of the 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=10680
Summary: Cinema 4D 8.0 & Cinema 4D 8.2 Completely fail to run on
Wine 0.9.49
Product: Wine
Version: 0.9.49.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: wine-files
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tempeodor(a)yahoo.com
Created an attachment (id=9514)
--> (http://bugs.winehq.org/attachment.cgi?id=9514)
error report copied from terminal onto gedit text file
Other 3D brands of 3D programs run but his version of the Maxon's Cinema 4D
program has never run on Wine. I'd love to see you guys get Wine to a place
where Cinema 4D R8.2 will run. Maxon's Cinema 4D R8.0 & R8.2 both completely
fail to run. When attempting to run all that happens is an error report in
terminal and nothing else. I'm using Ubuntu 7.04, the official nVidia drivers,
and Wine 0.9.49. Also changing Windows versions in the Applications settings of
the Wine Configuration for Cinema 4D has no effect on it. I'm not much good
with this stuff but I'd love so see if you can achieve full Windows
compatibility so I'm reporting this in hopes the data will be found to be
useful. Thank you for this amazing Wine software.
(see attatchment for error message on text file)
--
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=11332
Summary: Simcity 4 crashes
Product: WineHQ Apps Database
Version: unspecified
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: appdb-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kingoipo(a)gmail.com
Created an attachment (id=10438)
--> (http://bugs.winehq.org/attachment.cgi?id=10438)
Crash message
Simcity 4 crashes, regardless of what renderer is used, when starting a new
city.
--
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=10989
Summary: ePSXe: cannot detect bios, graphic and sound plugins
when configuring
Product: Wine
Version: 0.9.52.
Platform: PC
URL: http://www.epsxe.com/download.php
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-user
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: null274(a)gmail.com
Created an attachment (id=9951)
--> (http://bugs.winehq.org/attachment.cgi?id=9951)
wine-0.9.50 config.h
I'm under slackware -current and installed wine-0.9.52 from sources using an
Slackbuild.org script for wine-0.9.50, when I ran ePSXe 1.6.0 the first time,
its configuration wizard wasn't able of detect the psx bios placed in the
"bios" folder of the epsxe main folder, I cancelled the configuration wizard
and tried to configure it manually but it couldn't even detect the psx bios and
the sound and graphic plugins neither, the application did work fine without
this problem in an older slackware -current installation with wine-0.9.50, I
don't know what other thing can I try, I can't remember If I used some
workaround to get it working before..
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.