http://bugs.winehq.org/show_bug.cgi?id=29912
Bug #: 29912
Summary: No parent button in file selection dialog
Product: Wine
Version: 1.4-rc1
Platform: x86-64
URL: http://www.winuae.net/files/InstallWinUAE2330.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: markk(a)clara.co.uk
Classification: Unclassified
In some types of file selection dialog, there is no parent button. The
equivalent dialog in Windows XP does have a parent button, which makes
navigating the directory tree much easier.
If the program opens a selection dialog positioned in a subdirectory, to
navigate to the parent you need to use the treeview on the left side to
navigate down the directory hierarchy instead.
I noticed this while testing WinUAE, but presumably any program which uses the
same type of dialog will be similar.
- Download and run the WinUAE installer. Check the box to run the program at
the end.
- When the WinUAE Properties window appears, click ROM in the treeview then
click one of the "..." buttons to show a file selection dialog. There is no
parent button in the dialog. (There is also no indication of where in the
directory tree the current view 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=18494
Summary: Overhead text rendered strange
Product: Wine
Version: 1.1.21
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: killzenator(a)gmail.com
Created an attachment (id=21127)
--> (http://bugs.winehq.org/attachment.cgi?id=21127)
Output of wine 4Story.exe
All the overhead text in 4Story is rendered in same dark blue color making it
difficult to read.
To quote the user Irfy from the wine forums
"When you fight against players from the other kingdom, you don't see colors
and cannt read the text. Thus you cannot decide whether to run away or stay and
fight. You cannot even know if they are friends or fiends."
--
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=36479
Bug ID: 36479
Summary: Crazy Arcade failed to run normally
Product: Wine
Version: 1.7.18
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: zbw14159(a)126.com
Created attachment 48542
--> http://bugs.winehq.org/attachment.cgi?id=48542
the log
The game will fail a few seconds after running.You can download it from
http://bnb.sdo.com/web5/inc/h_xzlj.html
Follow these steps to install:
"下一步"->"我接受"->"安装"->"是"
--
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=30404
Bug #: 30404
Summary: Galactic Civilizations 1: severe slowdown during ships
battles
Product: Wine
Version: 1.5.1
Platform: x86-64
URL: http://www.galciv1.com/download.asp
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: frederic.delanoy(a)gmail.com
Classification: Unclassified
Created attachment 39744
--> http://bugs.winehq.org/attachment.cgi?id=39744
new Data dir
To reproduce:
- download and install 1.03 demo version from above URL in a clean wineprefix
(same issued with fully patched retail version)
- replace Program Files/Strategy First/Galactic Civilizations Demo/Data dir
with the attached file
- launch the game (wait until intro screens are passed)
- hit "Restore Last Civilization" in the main menu
- hit 3 times the different "Done" buttons
- right-click on the lower ship to start the battle
(hit Esc then "Quit Game" to exit the game once the battle is finished)
=> combat much slower than normal (should only take a couple of seconds)
Setting HKCU\Software\Wine\Direct3D\DirectDrawRenderer=gdi in the registry
somehow fixes/workarounds the issue.
Configuration:
- wine-1.5.1-219-g4b3e4fa (same with 1.5.1 save for unrelated bug 30213)
- linux 3.0
- nVidia driver 295.33 (x86_64)
- Xorg 1.10.4
--
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=33155
Bug #: 33155
Summary: Broken winmm recording when using an ACM codec
Product: Wine
Version: 1.3.25
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: winmm&mci
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: hoehle(a)users.sourceforge.net
Classification: Unclassified
Extracted from bug #33045, comment #18
wavein recording using the ACM needs rethinking. Currently, it does anything
from hanging, crashing or recording broken streams.
- WID_PullACMData looks incomplete. It starts with checking
device->acm_hdr as if it could persist from a prior invocation,
however it frees it when returning normally. Thus it should remain
local to the function, with device->acm_offs. In error
situations, the current code may break, because it may see
device->acm_hdr.cbDstLength != 0 on entry from a prior
acmStreamConvert MMSYSERR_* return.
- WID_PullACMData needs better error handling. If acmStreamConvert
returns an error, the IACaptureClient buffer remains locked, causing
any subsequent access to error out: recording stalls.
- In WID_PullACMData, the queue->lpNext condition looks bogus in the
light of IMA_ADPCM's 256 bytes block size.
- More generally, PullACMData needs a redesign. What to do when
srcLengthUsed < packet_frames ?!?
I.e. when the mmdevapi packet length does not match the codec's blocksize,
e.g. using 10ms packets while IMA_ADPCM likely needs multiples of 256 bytes.
- We should not throw away recorded bytes given enough buffers.
- mmdevapi does not accept retrieving less than one packet...
- mmdevapi does not allow choosing the packet size.
- WID_PullACMData does not yet handle WOM_DONE correctly. The
other bug report contains a patch.
--
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=23379
Summary: The netbeans 6.8 installer freezes at 0%.
Product: Wine
Version: 1.2-rc4
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: winehqbugs(a)bugmenot.com
Netbeans 6.8 installer freezes at 0%
Clicking close on the installer just freezes it more
--
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=13376
Summary: NetBeans 6.1 Installer hangs while initializing
installation [dogfood]
Product: Wine
Version: 1.0-rc2
Platform: PC
URL: http://www.netbeans.org
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jaimerave(a)gmail.com
Created an attachment (id=13279)
--> (http://bugs.winehq.org/attachment.cgi?id=13279)
Console out.
NetBeans 6.1 Installer hangs while initializing installation, all gets black
and the process don't pass from 0%. I'm also install jdk6 update 5.
This is Ubuntu 8.04.
--
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=34251
Bug #: 34251
Summary: Unigine Heaven: no antialiasing in D3D mode
Product: Wine
Version: 1.7.0
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: b7.10110111(a)gmail.com
Classification: Unclassified
Created attachment 45582
--> http://bugs.winehq.org/attachment.cgi?id=45582
Screenshot
Tested on Unigine Heaven 3 and 4, when I select any non-zero level of
antialiasing, the image is still aliased in D3D9 mode. If I select OpenGL mode,
it looks correctly.
GPU: GeForce GTX 460, driver 313.09.
--
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=11465
Summary: url.dll: Filetype association Property Sheet not
implemented (AddMIMEFileTypesPS)
Product: Wine
Version: 0.9.54.
Platform: PC
URL: http://appdb.winehq.org/objectManager.php?sClass=version
&iId=10
OS/Version: Linux
Status: NEW
Keywords: download
Severity: enhancement
Priority: P4
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wine.dev(a)web.de
The Filetype association Property Sheet is missing
from the Options Dialog in IE2.0 (iexplore.exe from NT4SP6a).
To reproduce: Menu "Ansicht" -> "Optionen"
(guessed Translation: "View" -> "Options")
The missing Property-Sheet is present and works with a native
"url.dll" (from the same SP).
The Property Sheet might be a useful plugin for winecfg.
--
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=35020
Bug #: 35020
Summary: BaiduYun's installer can't load the Chinese characters
Product: Wine
Version: 1.7.7
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: litimetal(a)gmail.com
Classification: Unclassified
Created attachment 46679
--> http://bugs.winehq.org/attachment.cgi?id=46679
screenshot in linux.png
0. download from http://bcscdn.baidu.com/netdisk/BaiduYunGuanjia_4.3.0.exe
1. export LC_ALL=zh_CN.utf8 && winetricks cjkfonts
2. wine BaiduYunGuanjia_4.3.0.exe
3. the Chinese in the button can't be shown
--
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.