mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-08 10:13:56 -06:00

The owner of qemu.org has delegated authority to modify DNS records to
the QEMU Project. This has allowed us to use the domain name without
worries about IP address changes or technical issues disrupting service.
The issues described in commit 8593898109
("Use qemu-project.org domain name") have therefore been mitigated.
This patch switches back to consistently using qemu.org instead of
qemu-project.org in documentation, version.rc, and the Windows installer
script.
The git submodules and SeaBIOS still use qemu-project.org for the time
being. This will be fixed in the QEMU 2.12 release cycle.
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Message-id: 20171121120435.28728-2-stefanha@redhat.com
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
30 lines
789 B
Text
30 lines
789 B
Text
#include <winver.h>
|
|
#include "config-host.h"
|
|
|
|
VS_VERSION_INFO VERSIONINFO
|
|
FILEVERSION CONFIG_FILEVERSION
|
|
PRODUCTVERSION CONFIG_PRODUCTVERSION
|
|
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
|
|
FILEOS VOS_NT_WINDOWS32
|
|
FILETYPE VFT_APP
|
|
FILESUBTYPE VFT2_UNKNOWN
|
|
{
|
|
BLOCK "StringFileInfo"
|
|
{
|
|
BLOCK "040904E4"
|
|
{
|
|
VALUE "CompanyName", "http://www.qemu.org"
|
|
VALUE "FileDescription", "QEMU machine emulators and tools"
|
|
VALUE "FileVersion", QEMU_VERSION
|
|
VALUE "LegalCopyright", "Copyright various authors. Released under the GNU General Public License."
|
|
VALUE "LegalTrademarks", "QEMU is a trademark of Fabrice Bellard."
|
|
VALUE "ProductName", "QEMU"
|
|
}
|
|
}
|
|
BLOCK "VarFileInfo"
|
|
{
|
|
VALUE "Translation", 0x0409, 1252
|
|
}
|
|
}
|
|
|
|
IDI_ICON1 ICON "pc-bios/qemu-nsis.ico"
|