vDOS 2020.03.01

This commit is contained in:
Peter V. Beck 2020-05-10 16:21:44 +02:00
parent 42647d35a1
commit 48a75a07cd
3 changed files with 32 additions and 27 deletions

View File

@ -1,12 +1,12 @@
# vDOS for Windows # vDOS for Windows
# 2011-2018 foo.li systeme + software # 2011-2020 foo.li systeme + software
# download site has ssl issues, setup is included in package... # download site has ssl issues, setup is included in package...
# package installs to 'default' location: c:\vDOS # package installs to 'default' location: c:\vDOS
$packageName = 'vdos' $packageName = 'vdos'
$version = '2018.05.01' $version = '2020.03.01'
$installerType = 'exe' $installerType = 'exe'
$scriptPath = $(Split-Path $MyInvocation.MyCommand.Path) $scriptPath = $(Split-Path $MyInvocation.MyCommand.Path)
$setupFullPath = Join-Path $scriptPath 'vDosSetup.exe' $setupFullPath = Join-Path $scriptPath 'vDosSetup.exe'
@ -17,4 +17,4 @@ try {
Remove-Item $setupFullPath -ErrorAction SilentlyContinue Remove-Item $setupFullPath -ErrorAction SilentlyContinue
} catch { } catch {
throw $_.Exception throw $_.Exception
} }

View File

@ -1,17 +1,17 @@
# vDOS Removal # vDOS Removal
# 2011-2018 foo.li systeme + software # 2011-2020 foo.li systeme + software
$packageName = 'vdos' $packageName = 'vdos'
$version = '2018.05.01' $version = '2020.03.01'
$vdosPath = "$env:SystemDrive" + "\vDos" $vdosPath = "$env:SystemDrive" + "\vDos"
try { try {
if (Test-Path $vdosPath) { if (Test-Path $vdosPath) {
Write-Host 'removing directory ' $vdosPath Write-Host 'removing directory ' $vdosPath
Remove-Item $vdosPath -Recurse -Force Remove-Item $vdosPath -Recurse -Force
} else { } else {
Write-Host 'could not detect ' $vdosPath ' files.' Write-Host 'could not detect ' $vdosPath ' files.'
} }
} catch { } catch {
throw $_.Exception throw $_.Exception
} }

View File

@ -1,21 +1,26 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd"> <package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata> <metadata>
<id>vdos</id> <id>vdos</id>
<version>2018.05.01</version> <version>2020.03.01</version>
<title>vDOS</title> <title>vDOS</title>
<authors>Jos Schaars</authors> <authors>Jos Schaars</authors>
<owners>foo.li systeme + software</owners> <owners>foo.li systeme + software</owners>
<licenseUrl>https://sourceforge.net/projects/vdos/</licenseUrl> <licenseUrl>https://sourceforge.net/projects/vdos/</licenseUrl>
<projectUrl>https://sourceforge.net/projects/vdos/</projectUrl> <projectUrl>https://sourceforge.net/projects/vdos/</projectUrl>
<iconUrl>https://git.foo.li/peter/chocolatey/raw/branch/master/icons/vdos.png</iconUrl> <iconUrl>https://git.foo.li/peter/chocolatey/raw/branch/master/icons/vdos.png</iconUrl>
<requireLicenseAcceptance>true</requireLicenseAcceptance> <requireLicenseAcceptance>true</requireLicenseAcceptance>
<description>vDos: Run DOS applications in Windows</description> <description>vDos: Run DOS applications in Windows</description>
<summary>Windows 64-bit doesnt support DOS applications. Windows 32-bit included NTVDM, <summary>Windows 64-bit doesnt support DOS applications. Windows 32-bit included NTVDM,
to some extend facilitating DOS programs to run. PCs now come with Windows 10 64-bit installed, to some extend facilitating DOS programs to run. PCs now come with Windows 10 64-bit installed,
mostly without an option to downgrade to Windows 32-bit. vDOS takes care of this limitation. mostly without an option to downgrade to Windows 32-bit. vDOS takes care of this limitation.
</summary> </summary>
<releaseNotes>see notes at https://www.vdos.info/download.html</releaseNotes> <releaseNotes>see notes at https://www.vdos.info/download.html</releaseNotes>
<tags>dos vdos windows10x64</tags> <tags>dos vdos windows10x64</tags>
</metadata> </metadata>
<!-- building package on gnu/linux with nuget (https://packages.debian.org/stretch/nuget)
requires adding the tools path -->
<files>
<file src="tools/*" target="tools"/>
</files>
</package> </package>