diff --git a/.all-contributorsrc b/.all-contributorsrc index 11502c9..942cafb 100644 --- a/.all-contributorsrc +++ b/.all-contributorsrc @@ -24,5 +24,5 @@ "repoType": "github", "repoHost": "https://github.com", "projectName": "F7History", - "projectOwner": "gui-cs" + "projectOwner": "tui-cs" } diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bb57b37..ffe0890 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -43,19 +43,19 @@ jobs: ./build.ps1 -Version ${{ steps.gitversion.outputs.FullSemVer }} - name: Upload Build Output - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: Modules path: ${{github.workspace}}/Output - name: Upload Tests - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: PesterTests path: ${{github.workspace}}/Tests - name: Upload PSScriptAnalyzerSettings.psd1 - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ScriptAnalyzer path: ${{github.workspace}}/PSScriptAnalyzerSettings.psd1 @@ -66,7 +66,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Download Build Output - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 - name: Invoke-ScriptAnalyzer uses: devblackops/github-action-psscriptanalyzer@master with: @@ -90,7 +90,7 @@ jobs: "$HOME/.dotnet/tools`r`n$(Get-Content -Path $env:GITHUB_PATH)" | Set-Content -Path $env:GITHUB_PATH -Encoding utf8 - name: Download Build Output - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 # see https://github.com/Jaykul/RequiredModules/issues/6 - name: Manually Install Modules F7History is dependent on @@ -121,7 +121,7 @@ jobs: test_results_path: results.xml - name: Upload Results - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: - name: Pester Results + name: Pester Results-${{ matrix.os }} path: ${{github.workspace}}/*.xml diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index ea4871f..ad511c3 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -44,19 +44,19 @@ jobs: ./build.ps1 -Version ${{ steps.gitversion.outputs.FullSemVer }} - name: Upload Build Output - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: Modules path: ${{github.workspace}}/Output - name: Upload Tests - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: PesterTests path: ${{github.workspace}}/Tests - name: Upload PSScriptAnalyzerSettings.psd1 - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ScriptAnalyzer path: ${{github.workspace}}/PSScriptAnalyzerSettings.psd1 @@ -67,7 +67,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Download Build Output - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 - name: Invoke-ScriptAnalyzer uses: devblackops/github-action-psscriptanalyzer@master with: @@ -91,7 +91,7 @@ jobs: "$HOME/.dotnet/tools`r`n$(Get-Content -Path $env:GITHUB_PATH)" | Set-Content -Path $env:GITHUB_PATH -Encoding utf8 - name: Download Build Output - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 # see https://github.com/Jaykul/RequiredModules/issues/6 - name: Manually Install Modules F7History is dependent on @@ -122,9 +122,9 @@ jobs: test_results_path: results.xml - name: Upload Results - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: - name: Pester Results + name: Pester Results-${{ matrix.os }} path: ${{github.workspace}}/*.xml publish: @@ -135,7 +135,7 @@ jobs: steps: - name: Download Build Output - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 # - name: Display structure of downloaded files # run: ls -R diff --git a/Build.ps1 b/Build.ps1 index f838cdf..6f00cf8 100644 --- a/Build.ps1 +++ b/Build.ps1 @@ -65,7 +65,7 @@ if ($null -eq $ocgvVersion) { " $ocgvModule v$v found in PSGallery" } -$ocgvVersion = "$($v.Major).$($v.Minor).$($v.Build).$($v.Revision)" +$ocgvVersion = $v.ToString() " Installing $ocgvModule v$ocgvVersion to ensure it is loaded." Install-Module $ocgvModule -MinimumVersion $ocgvVersion -Force -Verbose:($PSBoundParameters['Verbose'] -eq $true) -SkipPublisherCheck diff --git a/DEPLOY.md b/DEPLOY.md index 51b18a9..11dddb9 100644 --- a/DEPLOY.md +++ b/DEPLOY.md @@ -66,7 +66,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d - +
Tig
Tig

🚧 🚇 👀
Tig
Tig

🚧 🚇 👀
diff --git a/README.md b/README.md index 7a0593a..c8be8ae 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ - F7 History Icon @@ -15,13 +15,13 @@
A PowerShell module providing a graphical Command History activated by the `F7` and `Shift-F7` keys.
- Built with Terminal.Gui and Out-ConsoleGridView by Tig. + Built with Terminal.Gui and Out-ConsoleGridView by Tig. -![Demo](https://gui-cs.github.io/F7History/F7History.gif) +![Demo](https://tui-cs.github.io/F7History/F7History.gif) Setup and usage is as easy as... @@ -39,4 +39,4 @@ Import-Module -Name "F7History" 3. Press `F7` or `Shift-F7` to invoke. -For more details see the [F7 History Documentation](https://gui-cs.github.io/F7History). +For more details see the [F7 History Documentation](https://tui-cs.github.io/F7History). diff --git a/Source/F7History.psd1 b/Source/F7History.psd1 index 37cfa33..a22bada 100644 --- a/Source/F7History.psd1 +++ b/Source/F7History.psd1 @@ -94,16 +94,16 @@ PrivateData = @{ Tags = 'History','Windows','Mac','Linux','History','ConsoleGuiTools','TUI','Out-ConsoleGridView','ocgv','Terminal.Gui','gui.cs' # A URL to the license for this module. - LicenseUri = 'https://github.com/gui-cs/F7History/blob/main/LICENSE.md' + LicenseUri = 'https://github.com/tui-cs/F7History/blob/main/LICENSE.md' # A URL to the main website for this project. - ProjectUri = 'https://github.com/gui-cs/F7History/' + ProjectUri = 'https://github.com/tui-cs/F7History/' # A URL to an icon representing this module. - IconUri = 'https://gui-cs.github.io/Terminal.Gui/images/F7HistoryIcon.png' + IconUri = 'https://tui-cs.github.io/Terminal.Gui/images/F7HistoryIcon.png' # ReleaseNotes of this module - ReleaseNotes = 'https://github.com/gui-cs/F7History/releases' + ReleaseNotes = 'https://github.com/tui-cs/F7History/releases' # Prerelease string of this module # Prerelease = '' @@ -119,7 +119,7 @@ PrivateData = @{ } # End of PrivateData hashtable # HelpInfo URI of this module -HelpInfoURI = 'https://github.com/gui-cs/F7History' +HelpInfoURI = 'https://github.com/tui-cs/F7History' # Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix. # DefaultCommandPrefix = '' diff --git a/Source/en-US/about_F7History.help.txt b/Source/en-US/about_F7History.help.txt index 655e981..328d037 100644 --- a/Source/en-US/about_F7History.help.txt +++ b/Source/en-US/about_F7History.help.txt @@ -10,7 +10,7 @@ LONG DESCRIPTION EXAMPLES SEE ALSO - - https://github.com/gui-cs + - https://github.com/tui-cs KEYWORDS Windows, Mac, Linux, CommandLine, History, ConsoleGuiTools, TUI, Out-ConsoleGridView, ocgv, Terminal.Gui, gui.cs