https://bugs.winehq.org/show_bug.cgi?id=47793
Bug ID: 47793
Summary: Avast cannot be installed
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: thekingstream(a)gmail.com
Distribution: ---
When trying to install avast the installer stop and a message error is
displayed, the error is:
HTMLayout.dll cannot be loaded to properly start GUI. Therefore process cannot
continue.
I try to copy dll in system, system32 and syswow64 directory of wine but
problem still persist
--
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.
https://bugs.winehq.org/show_bug.cgi?id=47787
Bug ID: 47787
Summary: Path maniplation bug in cpython 3.5/3.6 but not 3.7
Product: Wine
Version: 4.16
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: zzhang(a)codeweavers.com
Distribution: ---
Bug reported by Sebastian M. Ernst on wine-devel mail list.
Found one more odd thing and it might be closely related (if not the
same bug). I tested different versions of CPython for Windows on Wine
4.14 and noticed that pytest (a Python test library) was somehow broken
on CPython 3.5 and 3.6 but not on CPython 3.7. It can also be traced
back to path manipulation:
# CPython 3.5.4
user@comp:/path/to/target> wine python.exe -c "from pathlib import Path;
print(Path('.').resolve())"
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "pathlib.py", line 1109, in resolve
File "pathlib.py", line 186, in resolve
FileNotFoundError: [WinError 2] Datei nicht gefunden: '.'
# CPython 3.6.3
user@comp:/path/to/target> wine python.exe -c "from pathlib import Path;
print(Path('.').resolve())"
.
# CPython 3.7.4
user@comp:/path/to/target> wine python.exe -c "from pathlib import Path;
print(Path('.').resolve())"
Z:\path\to\target
CPython 3.7 is correctly resolving the path '.' while CPython 3.5 and
3.6 fail in different ways. All three examples work correctly on Windows
10. "Datei nicht gefunden" translates to "file not found".
If any one wants to take this bug. Please assign it. Thanks.
--
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.
https://bugs.winehq.org/show_bug.cgi?id=46192
Bug ID: 46192
Summary: Beat Hazard 2: Open Mic can't capture desktop audio
Product: Wine
Version: 3.21
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: devilj(a)outlook.pt
Distribution: ArchLinux
Created attachment 62852
--> https://bugs.winehq.org/attachment.cgi?id=62852
Wine debug output
The game fails to use WASAPI's software loopback mode to capture audio being
played by the computer. It uses a middleware library called basswasapi.dll for
this effect.
This has been reproduced in Wine 3.18 through 3.21, including Staging versions.
Attached log captured with:
+tid,+seh,+mmdevapi,+winmm,+driver,+msacm,+midi,+dsound,+dsound3d,+xaudio2,+xapofx,+dmusic,+mci,+pulse,+oss,+alsa,+coreaudio,+timestamp,+debugstr
Since there's a relatively clean and simple workaround with PulseAudio and
pavucontrol, I'm setting the severity to minor, but this is still functionality
loss.
BASS Audio library: https://www.un4seen.com/bass.html
--
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.
https://bugs.winehq.org/show_bug.cgi?id=47781
Bug ID: 47781
Summary: Occurs after opening vovoid
Product: Wine
Version: 4.0.2
Hardware: x86
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: emilyschulteslifkin(a)gmail.com
Created attachment 65270
--> https://bugs.winehq.org/attachment.cgi?id=65270
Error message after opening vovoid
Open Vovoid, loads as normal, shows starting screen, then says a serious error
happened it is a 64 application and I have 64 optional downloaded
--
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.
https://bugs.winehq.org/show_bug.cgi?id=40850
Bug ID: 40850
Summary: MS Money 2000: text is cut off when entering an
operation
Product: Wine
Version: 1.8.2
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: andrea.vai(a)unipv.it
Distribution: ---
Created attachment 54839
--> https://bugs.winehq.org/attachment.cgi?id=54839
Screenshot of cut off text
While I am entering a transaction, the text that I try to enter is cut off at
the bottom. After the enter is done, the text appears correctly.
In the attached screenshot you can see, from top to bottom:
- the first transaction, previously entered, which shows the text ("Car: Fuel")
correctly;
- a second transaction, during its insertion, showing the same text ("Car" /
"Fuel") cut off
The text cut off is somewhat unreadable, so this bug is quite annoying.
--
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.
https://bugs.winehq.org/show_bug.cgi?id=47785
Bug ID: 47785
Summary: CERT_CHAIN_POLICY_IGNORE_NOT_TIME_VALID_FLAG not taken
into account
Product: Wine
Version: 4.16
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: crypt32
Assignee: wine-bugs(a)winehq.org
Reporter: lois.diqual(a)gmail.com
Distribution: ---
Created attachment 65274
--> https://bugs.winehq.org/attachment.cgi?id=65274
c# program that verifies an expired certificate using IgnoreNotTimeValid
I am debugging a C# program that validates a certificate chain using
X509VerificationFlags.IgnoreNotTimeValid. The provided certificate is expired,
but it shouldn't matter because of this flag.
The chain validates properly on MacOS with Mono.
However on Wine with dotnet472, the policy fails with error NotTimeValid.
I believe there is a bug in `chain.c verify_base_policy`:
https://github.com/wine-mirror/wine/blob/e6138a52a907fe4b9b03abe0b6cf6cfb9f….
In this if statement, the policy verification routine determines that the
certificate has expired, but it should ignore the error if `checks` contains
`CERT_CHAIN_POLICY_IGNORE_NOT_TIME_VALID_FLAG`, and this logic is missing.
To reproduce:
- Create a wine prefix with dotnet472 using winetricks
- Go to drive_c/windows/Microsoft.NET/Framework/v4.0.30319 and copy verify.cs
in there
- Compile verify.cs: wine csc.exe
/reference:"C:\windows/Microsoft.NET/Framework/v4.0.30319/WPF/WindowsBase.dll"
verify.cs
- Run: wine verify.exe
- It should print "Valid cert" but instead prints "Invalid cert" with
NotTimeValid.
--
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.
https://bugs.winehq.org/show_bug.cgi?id=47784
Bug ID: 47784
Summary: Subtitle Edit in Wine fails when attempting to use OCR
utility
Product: Wine
Version: 4.16
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: shagooserver(a)gmail.com
Distribution: ---
Created attachment 65273
--> https://bugs.winehq.org/attachment.cgi?id=65273
backtrace
This is Wine 32 bit, windows 7.
When opening a .sup file (bitmaps) with SE's OCR utility the file is loaded and
then the program terminates with an error file/backtrace which is attached.
--
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.
https://bugs.winehq.org/show_bug.cgi?id=47752
Matteo Bruni <matteo.mystral(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Fixed by SHA1| |cb703739e5c138e3beffab321b8
| |4edb129156000
Resolution|--- |FIXED
Status|UNCONFIRMED |RESOLVED
--- Comment #3 from Matteo Bruni <matteo.mystral(a)gmail.com> ---
I think it's better to resolve this bug for the time being instead. Feel free
to reopen if things change.
Thank you for the various bug reports!
--
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.
https://bugs.winehq.org/show_bug.cgi?id=47711
Bug ID: 47711
Summary: Crash DbgBreakPoint
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: sppmacd(a)gmail.com
Distribution: ---
Created attachment 65182
--> https://bugs.winehq.org/attachment.cgi?id=65182
backtrace
Program crashes while running. It's working fine on Windows.
--
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.
https://bugs.winehq.org/show_bug.cgi?id=47619
Bug ID: 47619
Summary: No Sound on all Games [WINE + PROTON]
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winepulse.drv
Assignee: wine-bugs(a)winehq.org
Reporter: florian.richer(a)protonmail.com
Distribution: ---
When i run a game with Proton or With wine only. I don't have any sound.
I use Kubuntu 18.04.3.
I don't have any console error for sound problem and on winecfg it detect
pulseaudio device with proton and all device with wine
Steam system information:
Computer Information:
Manufacturer: Unknown
Model: Unknown
Form Factor: Desktop
No Touch Input Detected
Processor Information:
CPU Vendor: AuthenticAMD
CPU Brand: AMD Ryzen Threadripper 2990WX 32-Core Processor
CPU Family: 0x17
CPU Model: 0x8
CPU Stepping: 0x2
CPU Type: 0x0
Speed: 3000 Mhz
64 logical processors
8 physical processors
HyperThreading: Supported
FCMOV: Supported
SSE2: Supported
SSE3: Supported
SSSE3: Supported
SSE4a: Supported
SSE41: Supported
SSE42: Supported
AES: Supported
AVX: Supported
CMPXCHG16B: Supported
LAHF/SAHF: Supported
PrefetchW: Unsupported
Operating System Version:
Ubuntu 18.04.3 LTS (64 bit)
Kernel Name: Linux
Kernel Version: 5.0.0-25-generic
X Server Vendor: The X.Org Foundation
X Server Release: 12004000
X Window Manager: KWin
Steam Runtime Version: steam-runtime_0.20190711.3
Video Card:
Driver: NVIDIA Corporation GeForce RTX 2080 Ti/PCIe/SSE2
Driver Version: 4.6.0 NVIDIA 430.26
OpenGL Version: 4.6
Desktop Color Depth: 24 bits per pixel
Monitor Refresh Rate: 60 Hz
VendorID: 0x10de
DeviceID: 0x1e07
Revision Not Detected
Number of Monitors: 3
Number of Logical Video Cards: 1
Primary Display Resolution: 1920 x 1080
Desktop Resolution: 5200 x 1080
Primary Display Size: 20.08" x 11.42" (23.07" diag)
51.0cm x 29.0cm (58.6cm diag)
Primary Bus: PCI Express 16x
Primary VRAM: 11264 MB
Supported MSAA Modes: 2x 4x 8x 16x
Sound card:
Audio device: %s1
Memory:
RAM: 32094 Mb
Miscellaneous:
UI Language: English
LANG: fr_FR.UTF-8
Total Hard Disk Space Available: 223813 Mb
Largest Free Hard Disk Block: 195227 Mb
VR Headset: None detected
Recent Failure Reports:
--
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.