https://bugs.winehq.org/show_bug.cgi?id=45712
Bug ID: 45712
Summary: Devil May Cry 4 DX10: Shadows are rendered as
"lights", vice versa
Product: Wine
Version: 3.14
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3dx10
Assignee: wine-bugs(a)winehq.org
Reporter: nenxvrr4.tgj(a)20mail.it
Distribution: ---
Created attachment 62143
--> https://bugs.winehq.org/attachment.cgi?id=62143
Game screenshot showing light and shadow being reversed.
Shadows appear as "light" while light appears as shadows. This also causes
levels to be unusually dark.
--
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=50631
Bug ID: 50631
Summary: Old programs on https://www.winehq.org/irc
Product: WineHQ.org
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: www-unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jkfloris(a)dds.nl
Distribution: ---
On https://www.winehq.org/irc the following programs are mentioned.
X-Chat last update 2010
Sidenet last update 2006
WineDoors last update 2013
Cedega
IEs4Linux
Do people really still use these programs?
Perhaps the last four programs can be replaced by PlayOnLinux and PlayOnMac
--
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=50866
Bug ID: 50866
Summary: Accessing https://www.winehq.org/pipermail/ will make
the whole website inaccessible
Product: WineHQ.org
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: www-unknown
Assignee: wine-bugs(a)winehq.org
Reporter: huupoke12(a)gmail.com
Distribution: ---
After accessing https://www.winehq.org/pipermail/ (the trailing slash is
present), the user can't access any other www.winehq.org webpages.
--
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=52439
Bug ID: 52439
Summary: apt-key is deprecated (bookworm/Debian)
Product: WineHQ.org
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: www-unknown
Assignee: wine-bugs(a)winehq.org
Reporter: osamu(a)debian.org
Distribution: ---
apt-key(8) will last be available in Debian 11 and Ubuntu 22.04.
For Debian/bookworm (12) (and probably for Ubuntu 22.10), apt-key usage as
described.
This affects following pages:
* https://wiki.winehq.org/Debian
* https://wiki.winehq.org/Ubuntu
Specifically:
```
wget -nc https://dl.winehq.org/wine-builds/winehq.key
sudo apt-key add winehq.key
```
The above should be changed to:
* For Debian up to Buster(11):
```
wget -nc https://dl.winehq.org/wine-builds/winehq.key
sudo apt-key add winehq.key
```
* For Debian from Bookworm (12):
```
wget -nc https://dl.winehq.org/wine-builds/winehq.key
sudo cp winehq.key /etc/apt/trusted.gpg.d/winehq.gpg
```
I only tested this for Debian ....
Osamu
--
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=53356
Bug ID: 53356
Summary: Problems installing WineHQ on Ubuntu 22.04
Product: Wine
Version: 7.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: Ulf.Zibis(a)gmx.de
Distribution: ---
1. Key and sources list are not saved as root owned files with your current
install procedure.
This is a SECURITY RISK !!!
Correct procedure could be:
sudo dpkg --add-architecture i386 # only on 64-bit-systems
wget -nc https://dl.winehq.org/wine-builds/winehq.key
F=winehq.key && chmod a-w,u+w $F && sudo chown 0:0 $F && sudo mv $F
/usr/share/keyrings/winehq-archive.key
wget -nc
https://dl.winehq.org/wine-builds/ubuntu/dists/jammy/winehq-jammy.sources
F=winehq-jammy.sources && chmod a-w,u+w $F && sudo chown 0:0 $F && sudo mv $F
/etc/apt/sources.list.d/ && sudo apt update
sudo apt install --install-recommends winehq-stable winetricks
2. There is on STABLE build for Ubuntu 22.04:
$ sudo apt install --install-recommends winehq-stable winetricks
Paketlisten werden gelesen… Fertig
Abhängigkeitsbaum wird aufgebaut… Fertig
Statusinformationen werden eingelesen… Fertig
E: Paket winehq-stable kann nicht gefunden werden.
workaround:
sudo apt install --install-recommends winehq-devel winetricks
--
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=53554
Bug ID: 53554
Summary: Compliance with Deb822: package archive keyring
location
Product: WineHQ.org
Version: unspecified
Hardware: Other
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: www-unknown
Assignee: wine-bugs(a)winehq.org
Reporter: lucent(a)gmail.com
Distribution: ---
concerns: https://wiki.winehq.org/Debian
sources.list(5) says /usr/share/keyrings for keyrings managed by packages and
/etc/apt/keyrings for keyrings managed by the system operator. This was added
2022-05-23 to the https://wiki.debian.org/DebianRepository/UseThirdParty guide
"Recommend /etc/apt/keyrings for locally-managed keys, as per apt 2.4.0
changelog".
Also starting with apt version 2.4.0 is when /etc/apt/keyrings directory gets
introduced to be installed/created by the apt package itself. This corresponds
to Debian 12/Ubuntu 22. Previous to Debian 12/Ubuntu 22 the user will have to
create this directory. There was previously /etc/apt/trusted.gpg.d but that has
special meaning (as does /usr/share/keyrings itself being a system directory
not something for the system operator). The recommendation is /etc/apt/keyrings
so add to the WineHQ install instructions:
sudo mkdir -m755 -p /etc/apt/keyrings # not needed since apt version 2.4.0 like
Debian 12 and Ubuntu 22 or newer
The .sources files will need to be updated.
Alternatively if there was a package generated to manage installation of the
key to /usr/share/keyrings that could be a valid option.
--
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=54011
Bug ID: 54011
Summary: Page Says to Enter Your *login name* ... but it
Expects an *email address*
Product: WineHQ.org
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: www-unknown
Assignee: wine-bugs(a)winehq.org
Reporter: winehq.machg(a)spamgourmet.com
Distribution: ---
1. Be logged out.
2. Goo to https://bugs.winehq.org/userprefs.cgi
At the bottom it says:
>If you have an account, but have forgotten your password, enter your login name below and submit a request to change your password.
Note the wording: "enter your login name".
3. Enter a "login name" and click Reset Password
4. Get an error page:
>The e-mail address you entered ... didn't pass our syntax checking for a legal email address.
5. Go back and ignore the page's instructions: enter an email address this time
6. It works as expected.
Simple fix: change the verbiage at the bottom of the page to say "email
address" instead of "login name".
--
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=30186
Bug #: 30186
Summary: Wine Bugzilla quick search return zero result for
keywords
Product: WineHQ Bugzilla
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: bugzilla-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fracting(a)gmail.com
Classification: Unclassified
If I remember correctly, it works yesterday.
Today I try to search some short keywords in Wine Bugzilla quick search box,
and found it doesn't work as before:
For example, search for "win","mac","wow", "aj", "a", the result is empty.
Here is a example URL:
http://bugs.winehq.org/buglist.cgi?query_format=specific&order=relevance%20…
Bug or feature?
--
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=52802
Bug ID: 52802
Summary: Dead/broken links / stale data
Product: WineHQ Bugzilla
Version: unspecified
Hardware: Other
OS: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: bugzilla-unknown
Assignee: wine-bugs(a)winehq.org
Reporter: aros(a)gmx.com
CC: austinenglish(a)gmail.com
Both:
Add Bugzilla to Sidebar (requires a Mozilla browser like Mozilla Firefox)
Install the Quick Search plugin (requires Firefox 2 or Internet Explorer 7)
Are dead and could be removed.
--
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.