Changeset 65289 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Jan 13, 2017 4:43:39 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/net/UIDownloaderExtensionPack.cpp
r65269 r65289 62 62 63 63 /* Prepare source/target: */ 64 QString strVersion = vboxGlobal().vboxVersionStringNormalized(); 64 65 QString strExtPackUnderscoredName(QString(GUI_ExtPackName).replace(' ', '_')); 65 66 QString strTemplateSourcePath("http://download.virtualbox.org/virtualbox/%1/"); 66 67 QString strTemplateSourceName(QString("%1-%2.vbox-extpack").arg(strExtPackUnderscoredName)); 67 QString strSourcePath(strTemplateSourcePath.arg( vboxGlobal().vboxVersionStringNormalized()));68 QString strSourceName(strTemplateSourceName.arg( vboxGlobal().vboxVersionStringNormalized()));68 QString strSourcePath(strTemplateSourcePath.arg(strVersion)); 69 QString strSourceName(strTemplateSourceName.arg(strVersion)); 69 70 QString strSource(strSourcePath + strSourceName); 70 QString strPathSHA256SumsFile = QString("https://www.virtualbox.org/download/hashes/%1/SHA256SUMS").arg( vboxGlobal().vboxVersionStringNormalized());71 QString strPathSHA256SumsFile = QString("https://www.virtualbox.org/download/hashes/%1/SHA256SUMS").arg(strVersion); 71 72 QString strTargetPath(vboxGlobal().homeFolder()); 72 73 QString strTargetName(strSourceName);
Note:
See TracChangeset
for help on using the changeset viewer.