https://bugs.winehq.org/show_bug.cgi?id=56843
Bug ID: 56843
Summary: wineandroid: fixing output on recent android versions.
Product: Wine
Version: unspecified
Hardware: aarch64
OS: Android
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: twaikyont(a)gmail.com
Currently wineandroid relies on Gralloc V1 which is not an option on recent
android versions.
There is other acceptable solution.
You can pass Surface through Binder API so you will get ANativeWindow (or at
least Surface which can be converted to ANativeWindow) directly from Activity
instead of creating it with broken `alloc_win_data`.
Binder API is not available in regular processes, but you can use it in Java.
You can start java code from your Wine apk installed to system like
```
export CLASSPATH=<path to apk>
export LD_PRELOAD=<path to apk>!/lib/<ABI>/libwine.so # wher ABI is something
you can get with `Build.SUPPORTED_ABIS[0]`
/system/bin/app_process / your.class.name :0
```
And JVM will start the `static void main(String[] args);` from
`your.class.name`.
Getting path to apk will be like
```
/**
* Get the apk path of this application.
* @param context any context (e.g. an Activity or a Service)
* @return full apk file path, or null if an exception happened (it should not
happen)
*/
public static String getApkName(Context context) {
String packageName = context.getPackageName();
PackageManager pm = context.getPackageManager();
try {
return pm.getApplicationInfo(packageName, 0).publicSourceDir;
} catch (Throwable x) {
}
return null;
}
```
`main` function can be fully native so you can simply pass control to native
code right after starting process.
Of course wine's main executable should be built as a library to let JVM load
it via `System.loadLibrary`
C version of `main` can not use Java's `args` so it should be converted like
```
JNIEXPORT jboolean JNICALL
Java_wine_CmdEntryPoint_start(JNIEnv *env, __unused jclass cls, jobjectArray
args) {
pthread_t t;
// execv's argv array is a bit incompatible with Java's String[], so we do
some converting here...
int argc = (*env)->GetArrayLength(env, args) + 1; // Leading executable
path
char** argv = (char**) calloc(argc, sizeof(char*));
argv[0] = (char*) "wine";
for(int i=1; i<argc; i++) {
jstring js = (jstring)((*env)->GetObjectArrayElement(env, args, i -
1));
const char *pjc = (*env)->GetStringUTFChars(env, js, JNI_FALSE);
argv[i] = (char *) calloc(strlen(pjc) + 1, sizeof(char)); //Extra char
for the terminating NULL
strcpy((char *) argv[i], pjc);
(*env)->ReleaseStringUTFChars(env, js, pjc);
}
return main(argc, argv);
}
```
After this point you will be able to use java code and java Android APIs.
Next step is obtaining Binder connection to your activity. It is not very
straightforward but it is possible. Full code will be pretty much long so I
will simply put links to my project which works on Android 8+.
Pay attention to functions sendBroadcast and createContext (createContext is
used in static block in the end of file).
It requires exposing some private Android APIs, but it is not restricted if you
are using app_process this way.
https://github.com/termux/termux-x11/blob/master/app/src/main/java/com/term…
Make sure you are creating thread with performing `Looper.prepareMainLooper();`
and `Looper.loop()` to make sure Binder background requests will work fine in
static block (to make sure it will work before JVM invokes `main` function,
just for case it is `native`).
Next step will be acquiring Surface from Wine's activity.
Of course you can create AIDL with single function like `Surface getSurface(int
hwnd);` and obtain Surface directly from `alloc_win_data` or simillar function
via JNI.
But in my cases it did not work. I mean sending request from my process to
Activity which should respond with Surface object did not work.
But I succeeded passing Surface by sending requst from Activity to my process
containing Surface in arguments like `void pushSurface(in Surface surface, int
hwnd);`.
Binder request from Activity to your process will work in different thread
asyncronously so `alloc_win_data` should send surface request to activity and
wait for Binder response or timeout.
I hope I explained everything with enough details.
Thank you for your hard work.
--
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=47345
Bug ID: 47345
Summary: When clicking on the Drivers tab, winecfg crashes
Product: Wine
Version: 4.10
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: soulsofblack12(a)hotmail.com
Distribution: ---
Created attachment 64676
--> https://bugs.winehq.org/attachment.cgi?id=64676
The error
I am running wine-staging, when i launch winecfg from the console and try to
click on the Drivers tab, winecfg crashes and closes itself.
--
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=57122
Bug ID: 57122
Summary: When clicking on the image in the WeChat group chat
and attempting to enlarge it, a program error is
reported
Product: Wine
Version: 9.0-rc5
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: rayklaus(a)163.com
Distribution: ---
Created attachment 77012
--> https://bugs.winehq.org/attachment.cgi?id=77012
file saved according to prompts when the program crashes
linux info:
PRETTY_NAME="Ubuntu 24.04.1 LTS"
NAME="Ubuntu"
VERSION_ID="24.04"
VERSION="24.04.1 LTS (Noble Numbat)"
VERSION_CODENAME=noble
ID=ubuntu
ID_LIKE=debian
HOME_URL="https://www.ubuntu.com/"
SUPPORT_URL="https://help.ubuntu.com/"
BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/"
PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy"
UBUNTU_CODENAME=noble
LOGO=ubuntu-logo
wineinfo:
ii wine 9.0~repack-4build3
all Windows API implementation - standard suite
ii wine32:i386 9.0~repack-4build3
i386 Windows API implementation - 32-bit binary loader
ii wine64 9.0~repack-4build3
amd64 Windows API implementation - 64-bit binary loader
ii winetricks 20240105-2
all simple tool to work around common problems in Wine
--
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=57201
Bug ID: 57201
Summary: EA client cannot launch game after wine 8.17+
Product: Wine
Version: 8.17
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: steampunque8(a)gmail.com
Distribution: ---
Created attachment 77096
--> https://bugs.winehq.org/attachment.cgi?id=77096
last steps of bisect
wine 8.16 was able to launch old origin games with the new EA client. with
wine 8.17 and above, some kind of an arcane error message is given and the
launch fails. I bisected the problem to
917d6afa695ba8d5124a11b02b18c6777cc9e56c, wbemprox: Implement
Win32OperatingSystem.Installdate. The last stages of the bisect are attached.
OS is Slackware 15.0, x86_64, RTX 4070. Windows version is set to 10 in
winecfg.
I don't know if this affects other than old origin games as I only have one
origin game that I ever launch (and that very rarely), PvZ GoTY.
--
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=51092
Bug ID: 51092
Summary: reMarkable desktop app - Software Updater indefinetly
runs
Product: Wine
Version: 5.0.5
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: graeme.wiebe(a)gmail.com
Distribution: ---
Quite simple: the software updater runs indefinitely, which can be easily
solved by closing the popup.
--
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=33199
Bug #: 33199
Summary: iexplore crash when changing location.href in if
stamtement xhtml
Product: Wine
Version: 1.5.25
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: thepouar(a)gmail.com
Classification: Unclassified
Created attachment 43914
--> http://bugs.winehq.org/attachment.cgi?id=43914
xhtml file that crashes iexplore
iexplore crashes when trying to change the URL in javascript within an if
statement, attached a file that causes the crash
--
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=54350
Bug ID: 54350
Summary: WHERE does not work
Product: Wine
Version: 8.0-rc4
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: tools
Assignee: wine-bugs(a)winehq.org
Reporter: giecrilj(a)stegny.2a.pl
Distribution: ---
> WHERE /?
(no output)
--
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=40570
Bug ID: 40570
Summary: Skype 7 - Unhandled exception in thread 9 or Unhandled
page fault on read access
Product: Wine
Version: 1.9.9
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: rmoisto(a)gmail.com
Distribution: ---
The latest Skype desktop client for Windows (currently 7.23.0.105) does not
work with wine 1.9.9 but works fine with 1.9.7 and 1.9.8.
Starting Skype with 1.9.9 spits out various errors.
In some instances Skype.exe will go in an infinite loop and the debugger hangs,
other times the debugger exists instantly.
Exists cleanly:
wine: Unhandled exception 0xc0000409 in thread 9 at address 0x115d6b8 (thread
0009), starting debugger...
Hangs forever:
wine: Unhandled page fault on write access to 0x65756cf1 at address 0x63656ee6
(thread 0009), starting debugger...
I can attach more console output if needed.
--
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=52592
Bug ID: 52592
Summary: MilkyTracker does not work: no valid waveout devices.
Product: Wine
Version: unspecified
Hardware: aarch64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winmm&mci
Assignee: wine-bugs(a)winehq.org
Reporter: carlo.bramix(a)libero.it
Distribution: ---
MilkyTracker is an multi-platform music application for creating .MOD and .XM
module files.
https://github.com/milkytracker/MilkyTracker
Unfortunately, it doesn't work on WINE because it cannot open any waveout
device.
Sources of MilkyTracker do these actions:
1)
waveOutOpen(&hwo, WAVE_MAPPER, &format, 0, 0, CALLBACK_NULL);
This call is a success and it returns a valid handle.
2)
waveOutGetID(hwo,(LPUINT)&waveOutID);
This call also returns success and it returns a value of 63 into "waveOutID".
BUT THIS IS WRONG. "waveOutID" should be equal to WAVE_MAPPER, which equal to
-1, as you can see in point (1).
3)
waveOutGetDevCaps((UINT)waveOutID, &waveoutcaps, sizeof(waveoutcaps));
As result, this call to waveOutGetDevCaps() fails with return value of
MMSYSERR_BADDEVICEID.
Here there is the point where there is the code that I'm talking about:
https://github.com/milkytracker/MilkyTracker/blob/4f97b7011b20519890e30368e…
The cause of the trouble is the way the function waveOutGetID() is implemented.
waveOutGetID() calls WINMM_GetDeviceFromHWAVE().
And WINMM_GetDeviceFromHWAVE() calls WINMM_DecomposeHWAVE()
Into WINMM_DecomposeHWAVE(), there are these lines:
ULONG32 l = HandleToULong(hwave);
*device_index = l & 0xFF;
But this is wrong, because *device_index will be never able to return -1 that
is the value for WAVE_MAPPER.
--
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=48605
Bug ID: 48605
Summary: MuseScore 3 shows splash screen, then quits
Product: Wine
Version: 5.1
Hardware: x86-64
URL: https://musescore.org/
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: tobbi.bugs(a)googlemail.com
$ wine --version
wine-5.1
$ openssl sha256 MuseScore-3.4.2-x86_64.msi
SHA256(MuseScore-3.4.2-x86_64.msi)=
8d2fc9d79cb0a5b0a8a5ccbb8ec80a972d1ecd264cb416c75ae42ab0b8b6d475
Steps to reproduce:
1. Install MuseScore using msiexec.
2. Start the game after installation of using the explorer.
Expected result:
MuseScore starts and shows the main window.
Current result:
MuseScore shows a splash screen and then quits.
--
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=44081
Bug ID: 44081
Summary: Office graphics suitable for HiDPI displays
Product: WineHQ.org
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: www-unknown
Assignee: wine-bugs(a)winehq.org
Reporter: pmenzel+bugs.winehq.org(a)molgen.mpg.de
Distribution: ---
Visiting https://www.winehq.org/ with a HiDPI Dell UP3214Q monitor, the icons
and graphics look blurry. It’d be great, if the Web site could be improved to
also look good on HiDPI displays.
--
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=41751
Bug ID: 41751
Summary: Retire docs.git
Product: WineHQ.org
Version: unspecified
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: www-unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dimesio(a)earthlink.net
Distribution: ---
The Developer's, Wine User's, and Winelib User's guides have all been moved to
the wiki, and the SGML files will not be updated.
Since the SGML files are still on the website, people who follow a direct link
to one of the pages still end up in the old document and sometimes file bugs
for outdated information that has already been fixed in the wiki version (e.g.,
bug 40491).
--
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=53820
Bug ID: 53820
Summary: Trying to install WhatsApp for Windows 32 bits on
Manjaro Linux 22
Product: Wine
Version: 7.19
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: vinidias(a)protonmail.com
Distribution: ---
Created attachment 73347
--> https://bugs.winehq.org/attachment.cgi?id=73347
Backtrace output from Wine
Hello, folks
I tried to install WhatsApp for Windows 32 bits
(https://www.whatsapp.com/download) on Manjaro Linux 22 64 bits, Linux Kernel
6.0, Wine 7.19, and gave this on attachment
Please, help me to understand and fix this
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=50907
Bug ID: 50907
Summary: Civilization 4: No hammers displayed on resource tiles
Product: Wine
Version: 6.5
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d-util
Assignee: wine-bugs(a)winehq.org
Reporter: lukasz.wojnilowicz(a)gmail.com
Distribution: ---
Created attachment 69717
--> https://bugs.winehq.org/attachment.cgi?id=69717
Image showing the problem
Steps to reproduce:
1) remove ~/.wine
2) install Civilization 4 complete
3) wine Civilization4.exe
4) load the save from bug #26142
5) press ctrl+y to show resources
6) zoom onto a cow pasture
Behaviour:
No hammers displayed. Only bread slices are displayed but not as collated. See
attachment (left image)
Expected behaviour:
Three hammers and three bread slices displayed as collated. See attachment
(right image)
Workaround:
winetricks d3dx9_31 d3dx9_32
Additional comment:
NVIDIA 340.108
--
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=41236
Bug ID: 41236
Summary: Darksiders 2 graphical glitches
Product: Wine-staging
Version: 1.9.17
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: zentarim(a)rambler.ru
CC: erich.e.hoover(a)wine-staging.com, michael(a)fds-team.de,
sebastian(a)fds-team.de
Distribution: ---
Created attachment 55522
--> https://bugs.winehq.org/attachment.cgi?id=55522
Graphical glitch
I have successfully launched Darksiders 2 Steam version (But in AppDB this game
marked as 'garbage') on wine 1.9.17-staging on win32 prefix.
My library mapping:
d3dcompiler_43 native,builtin
winecfg->staging set flag 'enable CSMT for better grapfic perfomance'
But there are some problems with graphics (screenshots in attachement). What
other information should be provided?
Thanks in advance.
--
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=52572
Bug ID: 52572
Summary: Call of Duty: World at war - Voices are not correctly
positioned (always centered)
Product: Wine
Version: 7.2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-dsound
Assignee: wine-bugs(a)winehq.org
Reporter: gab.pulcio(a)gmail.com
Distribution: ---
Created attachment 71893
--> https://bugs.winehq.org/attachment.cgi?id=71893
Voice positions bug
Basically the voices are correctly occluded and stuff, their only problem is
that they're played always as if the person speaking is inside your head.
In the video, you can clearly see this behaviour
--
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=54983
Bug ID: 54983
Summary: Hearts of Iron IV crashes with 'Assertion failed:
instr->reg.allocated' in DX11 mode
Product: vkd3d
Version: 1.7
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: hlsl
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
Distribution: ---
Created attachment 74522
--> https://bugs.winehq.org/attachment.cgi?id=74522
+d3dcompiler,+vkd3d
Assertion failed: instr->reg.allocated, file ../vkd3d/libs/vkd3d-shader/tpf.c,
line 3499
1.7-231-gea7d8c65
--
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=56603
Bug ID: 56603
Summary: 32-bit OpenGL programs crash with GLX error when run
on nVidia RTX3070 in Wine
Product: Wine
Version: 9.7
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: m.kolesinski(a)gmail.com
Distribution: ---
Severity: normal
There appears to be some sort of bug/incompatibility with Wine, 32-bit OpenGL
programs, and the official nVidia graphics drivers for Linux.
When testing an old 32-bit OpenGL game based on the Quake III engine (Medal of
Honor: Allied Assault, or MOHAA), I get unexpected crashes at application
launch, with the following error:
X Error of failed request: BadMatch (invalid parameter attributes)
Major opcode of failed request: 156 (NV-GLX)
Minor opcode of failed request: 43 ()
Serial number of failed request: 29067
Current serial number in output stream: 29068
This occurs when testing with a 32-bit or 64-bit prefix, and has occurred on
every version of Wine (and Proton) I've ever tried, going back several years,
up to the current version (9.7). I have also tried numerous versions of the
nVidia drivers, and am currently on the latest version (550.76-1). I am using
Arch Linux.
The game runs without this issue on the integrated AMD GPU (Ryzen 5800h APU).
The error occurs only for Wine programs. The error occurs if using the
discrete (RTX 3070 laptop) GPU in "dedicated" mode, as well as in hybrid mode
("prime-run ...").
Non-wine 32-bit OpenGL programs do not experience this problem. E.g.
glxgears32 works fine on the discrete GPU. Similarly, 64-bit e.g. Vulkan games
work fine on the integrated and discrete GPU.
This same game in a native Linux binary (MOHAA) also runs without experiencing
this issue (it has other issues unrelated to this, as the binary was a
pre-release beta...I mention it for comparison purposes).
I have researched this problem at length, and although there are anecdotes of
others running into these same errors with various OpenGL programs, there is no
apparent solution and I suspect most people just give up, or end up using
different hardware.
--- Comment #1 from m.kolesinski(a)gmail.com ---
*** Bug 56604 has been marked as a duplicate of this bug. ***
--- Comment #2 from Ken Sharp <imwellcushtymelike(a)gmail.com> ---
Does the demo also suffer from this issue?
--- Comment #3 from m.kolesinski(a)gmail.com ---
I found a demo download and tested it, can confirm it suffers from this issue.
https://games.softpedia.com/get/Games-Demo/Medal-of-Honor-Allied-Assault-Si…
The game launches normally using the AMDGPU drivers on the 5800h, but throws
the same GLX error with the RTX3070.
--
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=53688
Bug ID: 53688
Summary: Ubuntu install instruction are wrong and not working
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: sayanel(a)protonmail.com
Distribution: ---
As of today (2022-09-15) the ubuntu install instructions
(https://wiki.winehq.org/Ubuntu) do not work properly
The repo key is placed in /usr/share/keyrings
But the source info
(https://dl.winehq.org/wine-builds/ubuntu/dists/jammy/winehq-jammy.sources)
indicates to search /etc/apt/keyrings/
Either change instruction to copy the key to /etc or change the .source file to
point to /usr
--
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=35732
Bug ID: 35732
Summary: Adobe CC (Creative Cloud) fails to install.
Product: Wine
Version: 1.7.13
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: giorgosk67(a)gmail.com
Created attachment 47719
--> http://bugs.winehq.org/attachment.cgi?id=47719
The error screen.
CC fails to install and exits with an error (A12E1).
(For error details, please see the attached screenshot).
For help, points to this page:
https://helpx.adobe.com/creative-cloud/topics/getting-started.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=57149
Bug ID: 57149
Summary: Inconsistent keyboard keys handling between
winewayland and winex11
Product: Wine
Version: 9.16
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winewayland
Assignee: wine-bugs(a)winehq.org
Reporter: shtetldik(a)gmail.com
Distribution: ---
I noticed that when I remap keys in KDE (such as "Left Alt is swapped with Left
Win" in keyboard settings), it's not working with winewayland but works as
expected with winex11 (in XWayland mode).
In particular, in Cyberpunk 2077 when I try to bind some action to a key it
detects "Super_L" (aka Win key) as Alt when XWayland / winex11 are used, but
with winewayland it doesn't and detects actual Alt as Alt ignoring KDE's
override.
Not sure if it's something incomplete on KDE's side or winewayland is doing
something strange?
It happens with KDE Plasma 6.1.4.
--
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=57180
Bug ID: 57180
Summary: Cradle needs support for converting from float3 to
float4
Product: vkd3d
Version: 1.13
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: hlsl
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
Distribution: ---
0898:err:d3dcompiler:D3DCompile2
core/shaders/default/render/vertex_query_deferred.shader:224:8: E5017: Aborting
due to not yet implemented feature: Prioritize between multiple compatible
function overloads.
(Bug 56353)
0898:err:d3dcompiler:D3DCompile2
core/shaders/default/render/vertex_query_deferred.shader:224:1: E5002: Can't
implicitly convert from float3 to float4.
1.13-114-gd3016071
--
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.