<feed xmlns='http://www.w3.org/2005/Atom'>
<title>vcpkg/ports/magic-enum, 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>[magic-enum] Update to v0.7.3 (#18575)</title>
<updated>2021-06-24T20:09:29+00:00</updated>
<author>
<name>Daniil Goncharov</name>
<email>neargye@gmail.com</email>
</author>
<published>2021-06-24T20:09:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=cd6df79981f8e5b658900563370f3af16074850e'/>
<id>cd6df79981f8e5b658900563370f3af16074850e</id>
<content type='text'>
* [magic-enum] Update to v0.7.3

* fix</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [magic-enum] Update to v0.7.3

* fix</pre>
</div>
</content>
</entry>
<entry>
<title>[magic-enum] Update to v0.7.2 (#15974)</title>
<updated>2021-02-03T19:43:45+00:00</updated>
<author>
<name>Daniil Goncharov</name>
<email>neargye@gmail.com</email>
</author>
<published>2021-02-03T19:43:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=37289e26fc5a565508dc2f1726184cf3827d4424'/>
<id>37289e26fc5a565508dc2f1726184cf3827d4424</id>
<content type='text'>
* [magic-enum] Update to v0.7.2

* x-add-version</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [magic-enum] Update to v0.7.2

* x-add-version</pre>
</div>
</content>
</entry>
<entry>
<title>[magic-enum] Update to v0.7.1 (#14904)</title>
<updated>2020-12-04T01:37:14+00:00</updated>
<author>
<name>Daniil Goncharov</name>
<email>neargye@gmail.com</email>
</author>
<published>2020-12-04T01:37:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=83bcf8525c4b8788ba46c46b5baf6e3d5bd8483f'/>
<id>83bcf8525c4b8788ba46c46b5baf6e3d5bd8483f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[magic-enum] Update to v0.7.0 (#14046)</title>
<updated>2020-10-15T19:43:37+00:00</updated>
<author>
<name>Daniil Goncharov</name>
<email>neargye@gmail.com</email>
</author>
<published>2020-10-15T19:43:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=c0cbe75b4793a5882641f92bfe35202b9cdc4e91'/>
<id>c0cbe75b4793a5882641f92bfe35202b9cdc4e91</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[magic-enum] Update to v0.6.6 (#11814)</title>
<updated>2020-06-11T01:01:39+00:00</updated>
<author>
<name>Daniil Goncharov</name>
<email>neargye@gmail.com</email>
</author>
<published>2020-06-11T01:01:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=473e54820731eae43b745f65240838aaaf88c9cf'/>
<id>473e54820731eae43b745f65240838aaaf88c9cf</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[magic-enum] Uprev to v0.6.5 (was v.0.6.4) (#11704)</title>
<updated>2020-06-03T05:38:27+00:00</updated>
<author>
<name>Alexander Karatarakis</name>
<email>alex@karatarakis.com</email>
</author>
<published>2020-06-03T05:38:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=3defadc6167bfb5df3efe6cff725b9a0750685df'/>
<id>3defadc6167bfb5df3efe6cff725b9a0750685df</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[magic-enum] Update to v0.6.4 (#9502)</title>
<updated>2020-01-06T19:11:40+00:00</updated>
<author>
<name>Daniil Goncharov</name>
<email>neargye@gmail.com</email>
</author>
<published>2020-01-06T19:11:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=df48026300b12ca8ac1a7e704615c6c2ae34519c'/>
<id>df48026300b12ca8ac1a7e704615c6c2ae34519c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[magic-enum] Fix export config.cmake issue (#9007)</title>
<updated>2019-11-22T01:01:17+00:00</updated>
<author>
<name>NancyLi1013</name>
<email>46708020+NancyLi1013@users.noreply.github.com</email>
</author>
<published>2019-11-22T01:01:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=8c17d3c7909fb41ce4c208f105eb0442caeeff7c'/>
<id>8c17d3c7909fb41ce4c208f105eb0442caeeff7c</id>
<content type='text'>
* [magic-enum] Fix export config.cmake issue

* Update
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [magic-enum] Fix export config.cmake issue

* Update
</pre>
</div>
</content>
</entry>
<entry>
<title>update magic_enum to 0.6.3 (#8656)</title>
<updated>2019-10-18T21:15:52+00:00</updated>
<author>
<name>Daniil Goncharov</name>
<email>neargye@gmail.com</email>
</author>
<published>2019-10-18T21:15:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=9994cdf54ff630cdf98eb98415d3f28a8fa38bce'/>
<id>9994cdf54ff630cdf98eb98415d3f28a8fa38bce</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
