1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<think>
Alright, I need to classify the bug report about QEMU 7.0.0's NSIS installer issue into one of the provided categories. Let me read through the description carefully.
The user mentioned that the QEMU.nsi file is missing some info. Specifically, there are a lot of properties missing in the exe installer file, which leads to issues when looking at Windows program uninstall details. The problem includes a missing icon and publisher information.
Looking at the code snippets provided, I see lines like VIAddVersionKey with empty values for ProductName, Version, etc. It seems these versioning keys are not being set correctly in the NSIS script. Additionally, there's an issue with defining the uninstaller icon using !define MUI_UNICON pointing to a non-existent file and a missing Publisher info line.
Now, considering the categories: mistranslation, assembly lowering, device, graphic, socket, network, KVM, boot, vnc, debug, files, permissions, performance, kernel, peripherals, hypervisor, other.
This bug is related to the installer script, specifically NSIS (Nullsoft Scriptable Install System), which QEMU uses for creating installers. The issues are about missing information in the installer file and incorrect icon references. These don't fall under any of the architecture-related categories like mistranslation or assembly lowering. It's also not a device, graphic, network, or kernel issue.
The problem is more about the installation script and metadata rather than core QEMU functionalities. Therefore, it doesn't fit into the other specific categories either. The closest category provided that might cover this is 'other' since it's an installer-related issue, which isn't explicitly listed in the main options.
</think>
other
|