mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-02 21:32:52 +00:00
8593898109
qemu.org is held by a third-party and no core community contributor has access to the DNS configuration. This leaves the website exposed to outages due to DNS issues or IP address changes. For example, if the web server IP address needs to change we cannot guarantee qemu.org will point to it! The newer qemu-project.org domain name is owned by Anthony Liguori <anthony@codemonkey.ws>. You can confirm this by querying the whois information. Also note that the #qemu IRC channel topic already references qemu-project.org. Short of having a dedicated legal entity to hold the domain name on behalf of the community, qemu-project.org seems like the safest bet. Let's replace references to qemu.org with qemu-project.org. Note that git-submodule(1) does not detect URL changes. The following commands clear out and re-initialize all submodules to ensure you are using the latest URLs: $ git submodule deinit . # you'll be warned if you have local changes $ rm -rf .git/modules # also clear cached .git/ directories $ git submodule update --init Reviewed-by: Markus Armbruster <armbru@redhat.com> Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com> Message-id: 1381495958-8306-1-git-send-email-stefanha@redhat.com Signed-off-by: Anthony Liguori <aliguori@amazon.com>
30 lines
797 B
Text
30 lines
797 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-project.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"
|