https://bugs.winehq.org/show_bug.cgi?id=56311
Bug ID: 56311
Summary: HwINFO does not display temperatures
Product: Wine
Version: 9.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: celestial.ameba(a)gmail.com
Distribution: ---
I would expect to see 2-4 temperature sensors listed for the CPU and
Motherboard listed in the Sensor Status window. Instead there are no entries at
all. The exact names of the sensor will vary based on the computer's specific
hardware.
It can be accessed by clicking the following buttons:
Start>Sensors>CPU[#0][CPU NAME]
The values I am expecting can be found using `lm-sesnors` and `watch sensor`
The values are also available via `cat /sys/class/thermal/thermal_zone*/temp`
FYI: As of Wine 9.0 you need to downgrade from windows 10 to windows 7 in
winecfg in order to get past the landing window.
`
--
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=56976
Bug ID: 56976
Summary: Diggles The Myth of Fenris v2.1.1.10: intro video
doesn't work
Product: Wine
Version: 9.13
Hardware: x86-64
OS: Linux
Status: NEW
Keywords: regression
Severity: normal
Priority: P2
Component: winegstreamer
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
CC: z.figura12(a)gmail.com
Regression SHA1: 2a0a43627b9bf3d2073e06322d651a827af64cc7
Distribution: ArchLinux
Created attachment 76803
--> https://bugs.winehq.org/attachment.cgi?id=76803
plain terminal output, gst-discoverer output
This bug report is about the 2020 remake/re-release of the game
Diggles/Wiggles. The game is available on Steam and GOG. I tested with the
GOG.com version (v2.1.1.10).
Description: the video file startup.mov should be played on game start but the
video doesn't work: only black screen is shown and there is no audio either.
Pressing <Esc> is skipping the unplayable video and the game loads the main
menu.
gst-play opens and plays the video properly.
Reverting commit
commit 2a0a43627b9bf3d2073e06322d651a827af64cc7
(winegstreamer: Implement MPEG-4 audio to wg_format conversion.)
fixes the problem and the intro video works properly.
As far as I know there is no demo version available.
Please let me know if you need debug logs.
--
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=58054
Bug ID: 58054
Summary: concurrent modifications of C++ collection during
iteration
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: christophgil(a)gmail.com
Distribution: ---
Deleting elements from a C++ collection during iteration is not allowed.
This is a frequent programming error which goes unnoticed.
It is not reported as a runtime error and tolerated on native Windows, while
it causes page faults in Wine.
This bug in Windows executables may be reason why programs fail on Wine.
Suggestion: Please report this as a runtime error and/or
make the runtime lib tolerant.
--
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=58179
Bug ID: 58179
Summary: Boardviewer 2.0 has poor performance when zooming or
scrolling
Product: Wine
Version: 10.6
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: d2d
Assignee: wine-bugs(a)winehq.org
Reporter: svyatpro(a)gmail.com
Distribution: ---
Created attachment 78474
--> http://bugs.winehq.org/attachment.cgi?id=78474
debuglog
When using Boardviewer with Wine's D2D1 implementation the performance of
scrolling or zooming is slow. Using native D2D1 performance is great.
1. You need to download Boardviewer http://boardviewer.net/
2. Open any boardview diagram for example this
https://drive.google.com/file/d/1Ir0GZAr8YEy5XcZf1v1p6DhCarHl2S5q/view
3. Scroll or zoom-in zoom-out and see how slow it is
--
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=58140
Bug ID: 58140
Summary: ODBC using unixodbc stopped working due to regression
merge between 9.0 and 10.0
Product: Wine
Version: 10.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: odbc
Assignee: wine-bugs(a)winehq.org
Reporter: heiko.rabe+winehq(a)peopleware.com
Distribution: ---
The following fix prevent proper usage of ODBC interface based on unixodbc
provided DSN's:
https://gitlab.winehq.org/wine/wine/-/commit/85047505f342b6767b9f48cbcdae2b…
I'm using an odbc.ini as follows located at `/etc/odbc.ini`
```
[test]
Driver=PostgreSQL Unicode
Description=PostgreSQL Data Source
Servername=xyz.internal.com
Port=5432
UserName=xyz
Password=xyz_password
Database=test
SSLMode=prefer
Debug=0
CommLog=0
```
This leads to following wine registry entries in `system.reg` file:
```
[Software\\ODBC\\ODBC.INI\\test] 1744806811
#time=1dbaecbc3836bb4
"Driver"="PostgreSQL Unicode"
[Software\\ODBC\\ODBCINST.INI\\ODBC Drivers] 1744806811
#time=1dbaecbc3834d1e
"PostgreSQL ANSI"="Installed"
"PostgreSQL Unicode"="Installed"
```
Testing it with `isql` tool on linux the connect is successful and i can select
data from database:
```
isql test
+---------------------------------------+
| Connected! |
| |
| sql-statement |
| help [tablename] |
| quit |
| |
+---------------------------------------+
SQL>
```
The Windows application using a driverconnect with connect string "DSN=test".
Unfortunately the fix linked above searches the driver key now on a complete
different registry key and tries only to open it from there. Versions previous
to 10.0 are using the registry keys shown above and are working, version 10.0
now tries only:
```
[Software\\ODBC\\ODBC.INI\\ODBC Data Sources] 1744806811
#time=1dbaecbc3836bb4
```
which is not present, will be created by requesting the driver and fails, cause
the driver key can only be found on the above shown reg key, that 9.0 correctly
supports.
This stops working with ODBC based on unixodbc in version 10.0 and higher now.
To me it's not clears, what problem the fix linked above should address. My
guess would be, that one of following relates to the problem:
- ODBC supports user and system DNS (system DNS seems now not longer be valid)
- Wine runtime doesn't create the correct registry entries on 'wineboot' (leads
to failing fix)
- overlooked to support unixodbc at all and only tested with Microsoft ODBC
drivers only.
--
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=44322
Bug ID: 44322
Summary: Rapid Environment Editor startup error
Product: Wine
Version: 3.0-rc5
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: sergey.kz.main(a)gmail.com
Distribution: ---
Created attachment 60180
--> https://bugs.winehq.org/attachment.cgi?id=60180
Logs 1
Startup error
--
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=56412
Bug ID: 56412
Summary: cslol-manager Failed to find kernel32 ptr CreateFileA
Product: Wine
Version: 9.3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: kernel32
Assignee: wine-bugs(a)winehq.org
Reporter: Deresiant(a)protonmail.ch
Distribution: ---
Created attachment 76174
--> https://bugs.winehq.org/attachment.cgi?id=76174
WINEDEBUG=+seh,warn+all wine cslol-manager.exe
cslol-manager fails to patch custom skin into game, saying "Failed to find
kernel32 ptr CreateFileA"
I press "run" in the program after line 201 in the winelog.txt
It pauses for a moment at line 497 in the winelog.txt before failing and
displaying an error.
The error the program displays is at this line:
https://github.com/LeagueToolkit/cslol-manager/blob/86ba488aa5a8b92bc3a25c6…
--
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=22630
Summary: CDBurnerXP 3.0.x doesn't initially show its menu bar
in data/audio mode
Product: Wine
Version: 1.1.44
Platform: x86-64
URL: http://cdburnerxp.se/downloads/releases/3.0.x/
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: RandomAccountName(a)mail.com
Created an attachment (id=27813)
--> (http://bugs.winehq.org/attachment.cgi?id=27813)
Terminal output
After choosing a mode on the initial selection screen and clicking through any
messages that pop up, a menu bar should appear, but this only works in audio CD
ripping mode (lowest option).
The other two modes - data disc and audio CD mode - don't display any menu bar
at first. Maximizing the internal window makes it sort of appear, but it's
empty except for the small icon from that window. It will fully appear if the
program window is minimized and restored, or if another window is opened in
front of it and then minimized or closed.
--
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.
https://bugs.winehq.org/show_bug.cgi?id=57955
Bug ID: 57955
Summary: Ableton Live 12.1.10: Main interface is unusable
Product: Wine
Version: 10.3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: pedrodarch15b(a)gmail.com
Distribution: ---
On both GNOME and KDE Plasma, the latest Live 12.1 window does very weird
things with it's main window. What I can best describe it as is, for some
reason it stretches itself down vertically by what's seemingly the size of what
would be the title bar of the application. When running Live with window
manager decorations / control enabled under Wine configuration, this causes the
application window to bounce up and down very rapidly, bringing most of my
machine's CPU time with it. This makes the whole application practically
unusable.
When running on a virtual desktop, the stretch-up-and-down-sorta movement does
not happen, however, with the main window stretched downwards, mouse clicks and
things respond a few pixels off vertically, and the application is not usable
in this state. Interestingly, the same doesn't happen on Live's subwindows,
such as the settings window or anything else really
Prior to Live 12.1.5 this could be mitigated by using a hotkey to make Ableton
run full screen. With recent Ableton updates this doesn't seem to work anymore.
Note: disabling HiDPI mode in Live's settings doesn't make the problem go away
Note: dxvk had to be installed on the prefix so that non-main windows aren't
rendered black (this should probably be reported in another bug)
Tested on Live Trial 12.1.10, download URL is
https://cdn-downloads.ableton.com/channels/12.1.10/ableton_live_trial_12.1.…
--
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=58136
Bug ID: 58136
Summary: Toolbar is black
Product: Wine
Version: 10.6
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: comctl32
Assignee: wine-bugs(a)winehq.org
Reporter: axis6404(a)proton.me
Distribution: ---
Created attachment 78412
--> http://bugs.winehq.org/attachment.cgi?id=78412
test(exe+src)
Toolbar is black. It changes color when the mouse passes over the tool buttons.
--
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.