<feed xmlns='http://www.w3.org/2005/Atom'>
<title>vcpkg/versions/m-/magnum-plugins.json, branch master</title>
<subtitle>Forked from https://github.com/microsoft/vcpkg</subtitle>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/'/>
<entry>
<title>Bulk convert control files. (#19986)</title>
<updated>2021-09-09T08:24:04+00:00</updated>
<author>
<name>Billy O'Neal</name>
<email>bion@microsoft.com</email>
</author>
<published>2021-09-09T08:24:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=b295670e4bab14debe88d92cd5364b21ce26232c'/>
<id>b295670e4bab14debe88d92cd5364b21ce26232c</id>
<content type='text'>
```
function Convert-Control {
    Param($full)
    .\vcpkg.exe format-manifest $full
    $root = $full.Substring(0, $full.Length - 7) # CONTROL
    $new = $root + 'vcpkg.json'
    $content = Get-Content -Raw $new
    $asJson = ConvertFrom-Json $content -AsHashtable -Depth 100
    $oldVersion = $asJson['port-version']
    if ($null -eq $oldVersion) {
        $oldVersionFull = $asJson['version-string']
        Write-Host "Got version $oldVersionFull"
        $match = [System.Text.RegularExpressions.Regex]::Match($oldVersionFull, '^(.+)-(\d+)$')
        if ($match.Success -and -not [System.Text.RegularExpressions.Regex]::IsMatch($oldVersionFull, '^\d\d\d\d-\d\d-\d\d$')) {
            $newFullVersion = [string]$match.Groups[1].Value
            $oldVersion = [int]$match.Groups[2].Value
            Write-Host "newFullVersion $newFullVersion oldVersion $oldVersion"
            $newVersion = $oldVersion + 1
            $asJson['version-string'] = $newFullVersion
            Write-Host "Previous version for $full extracted from version field -- setting version-string $newFullVersion and port-version $newVersion"
        } else {
            Write-Host "No previous version for $full -- setting 1"
            $newVersion = 1
        }
    } else {
        $newVersion = [int]$oldVersion + 1
        Write-Host "New version for $full : $newVersion"
    }

    $asJson['port-version'] = $newVersion

    $content = ConvertTo-Json $asJson -Depth 100
    Set-Content -Path $new -Value $content
    .\vcpkg.exe format-manifest $new
}

Get-ChildItem ports\CONTROL -Recurse | Foreach-Object {
    Convert-Control $_.FullName
}

git commit -am "this message"
.\vcpkg.exe x-add-version -all
git commit -a --amend
```</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
```
function Convert-Control {
    Param($full)
    .\vcpkg.exe format-manifest $full
    $root = $full.Substring(0, $full.Length - 7) # CONTROL
    $new = $root + 'vcpkg.json'
    $content = Get-Content -Raw $new
    $asJson = ConvertFrom-Json $content -AsHashtable -Depth 100
    $oldVersion = $asJson['port-version']
    if ($null -eq $oldVersion) {
        $oldVersionFull = $asJson['version-string']
        Write-Host "Got version $oldVersionFull"
        $match = [System.Text.RegularExpressions.Regex]::Match($oldVersionFull, '^(.+)-(\d+)$')
        if ($match.Success -and -not [System.Text.RegularExpressions.Regex]::IsMatch($oldVersionFull, '^\d\d\d\d-\d\d-\d\d$')) {
            $newFullVersion = [string]$match.Groups[1].Value
            $oldVersion = [int]$match.Groups[2].Value
            Write-Host "newFullVersion $newFullVersion oldVersion $oldVersion"
            $newVersion = $oldVersion + 1
            $asJson['version-string'] = $newFullVersion
            Write-Host "Previous version for $full extracted from version field -- setting version-string $newFullVersion and port-version $newVersion"
        } else {
            Write-Host "No previous version for $full -- setting 1"
            $newVersion = 1
        }
    } else {
        $newVersion = [int]$oldVersion + 1
        Write-Host "New version for $full : $newVersion"
    }

    $asJson['port-version'] = $newVersion

    $content = ConvertTo-Json $asJson -Depth 100
    Set-Content -Path $new -Value $content
    .\vcpkg.exe format-manifest $new
}

Get-ChildItem ports\CONTROL -Recurse | Foreach-Object {
    Convert-Control $_.FullName
}

git commit -am "this message"
.\vcpkg.exe x-add-version -all
git commit -a --amend
```</pre>
</div>
</content>
</entry>
<entry>
<title>[corrade/magnum/-plugins] Fix build, minor cleanup and minor warning fix in vcpkg CMake scripts (#19435)</title>
<updated>2021-09-02T20:24:33+00:00</updated>
<author>
<name>Jonathan Hale</name>
<email>Squareys@googlemail.com</email>
</author>
<published>2021-09-02T20:24:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=8655bfd4b311df8dd853ca49969a9ecfac94ea91'/>
<id>8655bfd4b311df8dd853ca49969a9ecfac94ea91</id>
<content type='text'>
* [magnum/-plugins] Remove obsolete patches that no longer apply

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* [corrade] Make feature to flag translation consistent to fix warning

Consistent with magnum &amp; magnum-plugins

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* Fix warning message for dlls without matching pdbs always displayed

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* Fix the baseline version

* Revert the changes in vcpkg_copy_pdbs.cmake

Co-authored-by: PhoebeHui &lt;20694052+PhoebeHui@users.noreply.github.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [magnum/-plugins] Remove obsolete patches that no longer apply

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* [corrade] Make feature to flag translation consistent to fix warning

Consistent with magnum &amp; magnum-plugins

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* Fix warning message for dlls without matching pdbs always displayed

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* Fix the baseline version

* Revert the changes in vcpkg_copy_pdbs.cmake

Co-authored-by: PhoebeHui &lt;20694052+PhoebeHui@users.noreply.github.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>[magnum,-plugins] Fix deprecated use of vcpkg_check_features (#17016)</title>
<updated>2021-04-29T20:49:04+00:00</updated>
<author>
<name>Jonathan Hale</name>
<email>Squareys@googlemail.com</email>
</author>
<published>2021-04-29T20:49:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=70610f449497db0f87f2484ade4e88c78aa6f085'/>
<id>70610f449497db0f87f2484ade4e88c78aa6f085</id>
<content type='text'>
Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>[magnum/magnum-plugins] fix all magnum dependencies being built (#16657)</title>
<updated>2021-03-16T18:51:57+00:00</updated>
<author>
<name>Francisco Facioni</name>
<email>francisco@remyrobotics.com</email>
</author>
<published>2021-03-16T18:51:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=37df5123352fbb89411b4655e730767f35e30a30'/>
<id>37df5123352fbb89411b4655e730767f35e30a30</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[magnum,-plugins] Fix deployment of plugin types and incorrect removal of plugin lib dir on unix (#16245)</title>
<updated>2021-02-18T21:02:27+00:00</updated>
<author>
<name>Jonathan Hale</name>
<email>Squareys@googlemail.com</email>
</author>
<published>2021-02-18T21:02:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=e7377f7992830bfc60fb2a7f43f300200822d82a'/>
<id>e7377f7992830bfc60fb2a7f43f300200822d82a</id>
<content type='text'>
* [magnum] Correctly deploy shaderconverter and sceneconverter plugins

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* [magnum,-plugins] Only remove plugin lib dirs for Windows platforms

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* [magnum,-plugins] Clean up deletion of plugin libs and clarify in comment

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* Update versions

Co-authored-by: PhoebeHui &lt;20694052+PhoebeHui@users.noreply.github.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [magnum] Correctly deploy shaderconverter and sceneconverter plugins

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* [magnum,-plugins] Only remove plugin lib dirs for Windows platforms

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* [magnum,-plugins] Clean up deletion of plugin libs and clarify in comment

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* Update versions

Co-authored-by: PhoebeHui &lt;20694052+PhoebeHui@users.noreply.github.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>[magnum,magnum-plugins] Add vulkan and shaderconverter features (#15163)</title>
<updated>2021-01-26T23:03:54+00:00</updated>
<author>
<name>Jonathan Hale</name>
<email>Squareys@googlemail.com</email>
</author>
<published>2021-01-26T23:03:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=795588570aa5fb2d4f33a13648b8b602e9d4a52c'/>
<id>795588570aa5fb2d4f33a13648b8b602e9d4a52c</id>
<content type='text'>
* [magnum,magnum-plugins] Add vulkan and shaderconverter features

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* [magnum,-plugins] Add warning for features unavailable in non-head version

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* update version record

Co-authored-by: JackBoosY &lt;yuzaiyang@beyondsoft.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [magnum,magnum-plugins] Add vulkan and shaderconverter features

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* [magnum,-plugins] Add warning for features unavailable in non-head version

Signed-off-by: Squareys &lt;squareys@googlemail.com&gt;

* update version record

Co-authored-by: JackBoosY &lt;yuzaiyang@beyondsoft.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>[vcpkg] Rename `port_versions` to `versions` (#15784)</title>
<updated>2021-01-21T17:53:22+00:00</updated>
<author>
<name>nicole mazzuca</name>
<email>mazzucan@outlook.com</email>
</author>
<published>2021-01-21T17:53:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=68a74950d0400f5a803026d0860f49853984bf11'/>
<id>68a74950d0400f5a803026d0860f49853984bf11</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
