VirtualBox

儲存庫 vbox 的更動 37253


忽略:
時間撮記:
2011-5-30 上午11:56:34 (13 年 以前)
作者:
vboxsync
訊息:

Windows Guest Additions installer: Ask if Aero (WDDM) support should be installed instead of the regular Direct3D support.

位置:
trunk/src/VBox/Additions/WINNT/Installer
檔案:
修改 4 筆資料

圖例:

未更動
新增
刪除
  • trunk/src/VBox/Additions/WINNT/Installer/Languages/English.nsh

    r32503 r37253  
    2020
    2121LangString VBOX_COMPONENT_MAIN ${LANG_ENGLISH}                      "VirtualBox Guest Additions"
    22 LangString VBOX_COMPONENT_MAIN_DESC ${LANG_ENGLISH}                 "Main Files of VirtualBox Guest Additions"
    23 LangString VBOX_COMPONENT_AUTOLOGON ${LANG_ENGLISH}                 "Auto-Logon Support"
     22LangString VBOX_COMPONENT_MAIN_DESC ${LANG_ENGLISH}                 "Main files of VirtualBox Guest Additions"
     23LangString VBOX_COMPONENT_AUTOLOGON ${LANG_ENGLISH}                 "Auto-Logon support"
    2424LangString VBOX_COMPONENT_AUTOLOGON_DESC ${LANG_ENGLISH}            "Enables auto-logon support for guests"
    2525LangString VBOX_COMPONENT_AUTOLOGON_WARN_3RDPARTY ${LANG_ENGLISH}   "There already is a component installed for providing auto-logon support.$\r$\nIf you replace this component with the one from VirtualBox, the system could become unstable.$\r$\nReplace it anyway?"
    2626LangString VBOX_COMPONENT_D3D  ${LANG_ENGLISH}                      "Direct3D Support (Experimental)"
    27 LangString VBOX_COMPONENT_D3D_DESC  ${LANG_ENGLISH}                 "Enables Direct3D Support for guests (Experimental)"
     27LangString VBOX_COMPONENT_D3D_DESC  ${LANG_ENGLISH}                 "Enables Direct3D support for guests (Experimental)"
    2828LangString VBOX_COMPONENT_D3D_NO_SM ${LANG_ENGLISH}                 "Windows is currently not started in safe mode.$\r$\nTherefore the D3D support cannot be installed."
    2929LangString VBOX_COMPONENT_D3D_NOT_SUPPORTED ${LANG_ENGLISH}         "Direct3D guest support not available on Windows $g_strWinVersion!"
     30LangString VBOX_COMPONENT_D3D_OR_WDDM ${LANG_ENGLISH}               "On this guest Windows Aero (WDDM) is supported.$\r$\nThis feature is experimental and therefore should not be used on productive systems yet.$\r$\n$\r$\nDo you want to install the regular Direct3D support instead?"
    3031
    3132LangString VBOX_WFP_WARN_REPLACE ${LANG_ENGLISH}         "The setup just has replaced some system files in order to make ${PRODUCT_NAME} work correctly.$\r$\nIn case Windows File Protection shows a warning dialog, please cancel its suggestion of restoring the original files."
  • trunk/src/VBox/Additions/WINNT/Installer/Languages/French.nsh

    r32515 r37253  
    2828LangString VBOX_COMPONENT_D3D_NO_SM ${LANG_FRENCH}                  "Windows ne fonctionne pas en mode sans échec.$\r$\nDe ce fait, le support D3D ne peut être installé."
    2929LangString VBOX_COMPONENT_D3D_NOT_SUPPORTED ${LANG_FRENCH}          "Le support invité pour Direct3D n'est pas disponible sur Windows $g_strWinVersion!"
     30LangString VBOX_COMPONENT_D3D_OR_WDDM ${LANG_FRENCH}                "On this guest Windows Aero (WDDM) is supported.$\r$\nThis feature is experimental and therefore should not be used on productive systems yet.$\r$\n$\r$\nDo you want to install the regular Direct3D support instead?"
    3031
    3132LangString VBOX_WFP_WARN_REPLACE ${LANG_FRENCH}          "Le programme d'installation vient de remplacer certains fichiers systèmes afin de faire fonctionner correctement ${PRODUCT_NAME}.$\r$\nPour le cas qu'un avertissement de la Protection de fichiers Windows apparaisse, veuiller l'annuler sans restaurer les fichiers originaux!"
  • trunk/src/VBox/Additions/WINNT/Installer/Languages/German.nsh

    r32503 r37253  
    2828LangString VBOX_COMPONENT_D3D_NO_SM ${LANG_GERMAN}                  "Windows befindet sich aktuell nicht im abgesicherten Modus.$\r$\nDaher kann die D3D-Unterstützung nicht installiert werden."
    2929LangString VBOX_COMPONENT_D3D_NOT_SUPPORTED ${LANG_GERMAN}          "Direct3D Gast-Unterstützung nicht verfügbar unter Windows $g_strWinVersion!"
     30LangString VBOX_COMPONENT_D3D_OR_WDDM ${LANG_GERMAN}                "Für diesen Gast ist Windows Aero (WDDM)-Unterstützung verfügbar.$\r$\nDieses Feature ist jedoch noch experimentell und sollte daher noch nicht auf produktiven Systemen eingesetzt werden.$\r$\n$\r$\nMöchten Sie stattdessen die reguläre Direct3D-Unterstützung installieren?"
    3031
    3132LangString VBOX_WFP_WARN_REPLACE ${LANG_GERMAN}         "Das Setup hat gerade Systemdateien ersetzt um die ${PRODUCT_NAME} korrekt installieren zu können.$\r$\nFalls nun ein Warn-Dialog des Windows-Dateischutzes erscheint, diesen bitte abbrechen und die Dateien nicht wiederherstellen lassen!"
  • trunk/src/VBox/Additions/WINNT/Installer/VBoxGuestAdditions.nsi

    r37046 r37253  
    212212Var g_strWinVersion                     ; Current Windows version we're running on
    213213Var g_bLogEnable                        ; Do logging when installing? "true" or "false"
    214 Var g_bWithWDDM                         ; Install the WDDM driver instead of the normal one
     214Var g_bWithWDDM                         ; Install the WDDM driver instead of the XPDM one
    215215Var g_bCapWDDM                          ; Capability: Is the guest able to handle/use our WDDM driver?
    216216
     
    965965    ; D3D components below
    966966    ${If} $g_bCapWDDM == "true"
     967      ;
     968      ; Temporary solution: Since WDDM is marked as experimental yet we notify the user
     969      ; that WDDM (Aero) support is available but not recommended for production use. He now
     970      ; can opt-in for installing WDDM or still go for the old (XPDM) way -- safe mode still required!
     971      ;
     972      MessageBox MB_ICONQUESTION|MB_YESNO $(VBOX_COMPONENT_D3D_OR_WDDM) /SD IDNO IDYES d3d_install
    967973      StrCpy $g_bWithWDDM "true"
    968974      Goto exit
    969975    ${EndIf}
     976
     977d3d_install:
     978
    970979!endif
    971980
注意: 瀏覽 TracChangeset 來幫助您使用更動檢視器

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette