-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
124 additions
and
138 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
# todo: add explanation | ||
# BUGBUG: I don't think this file is needed/used | ||
@{ | ||
ModuleBuilder = "1.*" | ||
Pester = "[4.7.2, 5.0)" | ||
"Microsoft.PowerShell.ConsoleGuiTools" = "0.7.*" | ||
"Microsoft.PowerShell.ConsoleGuiTools" = "0.7" | ||
PSReadLine = "2.*" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,156 +1,133 @@ | ||
# | ||
# Module manifest for module 'F7History' | ||
# | ||
# Generated by: Tig Kindel | ||
# | ||
# Generated on: 11/3/2023 | ||
# | ||
|
||
@{ | ||
|
||
# Version number of this module. | ||
ModuleVersion = '0.0.0' | ||
# Script module or binary module file associated with this manifest. | ||
RootModule = '.\F7History.psm1' | ||
|
||
# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell. | ||
PrivateData = @{ | ||
# Version number of this module. | ||
ModuleVersion = '0.0.0' | ||
|
||
PSData = @{ | ||
# Supported PSEditions | ||
# CompatiblePSEditions = @() | ||
|
||
# Tags applied to this module. These help with module discovery in online galleries. | ||
Tags = @("Windows", "Mac", "Linux", "History", "ConsoleGuiTools", "TUI", "Out-ConsoleGridView", "ocgv", "Terminal.Gui", "gui.cs" ) | ||
# ID used to uniquely identify this module | ||
GUID = 'af35b6c1-758f-4d46-92ae-ac18cb9c983d' | ||
|
||
# A URL to the license for this module. | ||
LicenseUri = 'https://github.com/gui-cs/F7History/blob/main/LICENSE.md' | ||
# Author of this module | ||
Author = 'Tig Kindel' | ||
|
||
# A URL to the main website for this project. | ||
ProjectUri = 'https://github.com/gui-cs/F7History/' | ||
# Company or vendor of this module | ||
CompanyName = 'Kindel, LLC' | ||
|
||
# A URL to an icon representing this module. | ||
IconUri = 'https://gui-cs.github.io/Terminal.Gui/images/logo48.png' | ||
# Copyright statement for this module | ||
Copyright = '(c) Kindel, LLC. All rights reserved.' | ||
|
||
# ReleaseNotes of this module | ||
ReleaseNotes = '' | ||
# Description of the functionality provided by this module | ||
Description = 'Press F7 to get a graphical Command History in Powershell.' | ||
|
||
# Prerelease string of this module | ||
Prerelease = '' | ||
# Minimum version of the PowerShell engine required by this module | ||
# PowerShellVersion = '' | ||
|
||
# Flag to indicate whether the module requires explicit user acceptance for install/update/save | ||
# RequireLicenseAcceptance = $false | ||
# Name of the PowerShell host required by this module | ||
# PowerShellHostName = '' | ||
|
||
# External dependent modules of this module | ||
ExternalModuleDependencies = @( | ||
@{ | ||
ModuleName = 'Microsoft.PowerShell.ConsoleGuiTools'; RequiredVersion = '0.7.4' | ||
}, | ||
'PSReadLine' | ||
) | ||
# Minimum version of the PowerShell host required by this module | ||
# PowerShellHostVersion = '' | ||
|
||
} # End of PSData hashtable | ||
# Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only. | ||
# DotNetFrameworkVersion = '' | ||
|
||
} # End of PrivateData hashtableoc | ||
# Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only. | ||
# ClrVersion = '' | ||
|
||
# Script module or binary module file associated with this manifest. | ||
RootModule = '.\F7History.psm1' | ||
# Processor architecture (None, X86, Amd64) required by this module | ||
# ProcessorArchitecture = '' | ||
|
||
# Modules that must be imported into the global environment prior to importing this module | ||
RequiredModules = @( | ||
@{ | ||
ModuleName = 'Microsoft.PowerShell.ConsoleGuiTools' ; | ||
RequiredVersion = '0.7.4' # Generated by Build.ps1 | ||
}, | ||
'PSReadLine' | ||
) | ||
# Modules that must be imported into the global environment prior to importing this module | ||
RequiredModules = @(@{ModuleName = 'PSReadline'; ModuleVersion = '2.0'; }, | ||
@{ModuleName = 'Microsoft.PowerShell.ConsoleGuiTools'; ModuleVersion = '0.7.6.0'; }) | ||
|
||
# Always define FunctionsToExport as an empty @() which will be replaced on build | ||
FunctionsToExport = @() | ||
AliasesToExport = @() | ||
# Assemblies that must be loaded prior to importing this module | ||
# RequiredAssemblies = @() | ||
|
||
# List of all files packaged with this module | ||
#FileList = @(".\F7History.psd1"; ".\F7History.psm1") | ||
# Script files (.ps1) that are run in the caller's environment prior to importing this module. | ||
# ScriptsToProcess = @() | ||
|
||
# HelpInfo URI of this module | ||
HelpInfoURI = 'https://github.com/gui-cs/F7History/blob/main/README.md' | ||
# Type files (.ps1xml) to be loaded when importing this module | ||
# TypesToProcess = @() | ||
|
||
# Supported PSEditions | ||
# CompatiblePSEditions = @() | ||
# Format files (.ps1xml) to be loaded when importing this module | ||
# FormatsToProcess = @() | ||
|
||
# ID used to uniquely identify this module | ||
GUID = 'af35b6c1-758f-4d46-92ae-ac18cb9c983d' | ||
# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess | ||
# NestedModules = @() | ||
|
||
# Author of this module | ||
Author = 'Tig Kindel' | ||
# Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. | ||
FunctionsToExport = @() | ||
|
||
# Company or vendor of this module | ||
CompanyName = 'Kindel, LLC' | ||
# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export. | ||
CmdletsToExport = @() | ||
|
||
# Copyright statement for this module | ||
Copyright = '(c) Kindel, LLC. All rights reserved.' | ||
# Variables to export from this module | ||
# VariablesToExport = @() | ||
|
||
# Description of the functionality provided by this module | ||
Description = 'Press F7 to get a graphical Command History in Powershell.' | ||
# Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export. | ||
AliasesToExport = @() | ||
|
||
# Minimum version of the PowerShell engine required by this module | ||
# PowerShellVersion = '' | ||
# DSC resources to export from this module | ||
# DscResourcesToExport = @() | ||
|
||
# Name of the PowerShell host required by this module | ||
# PowerShellHostName = '' | ||
# List of all modules packaged with this module | ||
# ModuleList = @() | ||
|
||
# Minimum version of the PowerShell host required by this module | ||
# PowerShellHostVersion = '' | ||
# List of all files packaged with this module | ||
# FileList = @() | ||
|
||
# Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only. | ||
# DotNetFrameworkVersion = '' | ||
# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell. | ||
PrivateData = @{ | ||
|
||
# Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only. | ||
# ClrVersion = '' | ||
PSData = @{ | ||
|
||
# Processor architecture (None, X86, Amd64) required by this module | ||
# ProcessorArchitecture = '' | ||
# Tags applied to this module. These help with module discovery in online galleries. | ||
Tags = 'Windows','Mac','Linux','History','ConsoleGuiTools','TUI','Out-ConsoleGridView','ocgv','Terminal.Gui','gui.cs' | ||
|
||
# Assemblies that must be loaded prior to importing this module | ||
# RequiredAssemblies = @() | ||
# A URL to the license for this module. | ||
LicenseUri = 'https://github.com/gui-cs/F7History/blob/main/LICENSE.md' | ||
|
||
# Script files (.ps1) that are run in the caller's environment prior to importing this module. | ||
# ScriptsToProcess = @() | ||
# A URL to the main website for this project. | ||
ProjectUri = 'https://github.com/gui-cs/F7History/' | ||
|
||
# Type files (.ps1xml) to be loaded when importing this module | ||
# TypesToProcess = @() | ||
# A URL to an icon representing this module. | ||
IconUri = 'https://gui-cs.github.io/Terminal.Gui/images/logo48.png' | ||
|
||
# Format files (.ps1xml) to be loaded when importing this module | ||
# FormatsToProcess = @() | ||
# ReleaseNotes of this module | ||
# ReleaseNotes = '' | ||
|
||
# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess | ||
# NestedModules = @() | ||
# Prerelease string of this module | ||
# Prerelease = '' | ||
|
||
# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export. | ||
#CmdletsToExport = '*' | ||
# Flag to indicate whether the module requires explicit user acceptance for install/update/save | ||
# RequireLicenseAcceptance = $false | ||
|
||
# Variables to export from this module | ||
#ariablesToExport = '*' | ||
# External dependent modules of this module | ||
ExternalModuleDependencies = @('Microsoft.PowerShell.ConsoleGuiTools','PSReadLine') | ||
|
||
# Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export. | ||
#AliasesToExport = '*' | ||
} # End of PSData hashtable | ||
|
||
# DSC resources to export from this module | ||
# DscResourcesToExport = @() | ||
} # End of PrivateData hashtable | ||
|
||
# List of all modules packaged with this module | ||
# ModuleList = @() | ||
# HelpInfo URI of this module | ||
HelpInfoURI = 'https://github.com/gui-cs/F7History/blob/main/README.md' | ||
|
||
# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix. | ||
# DefaultCommandPrefix = '' | ||
# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix. | ||
# DefaultCommandPrefix = '' | ||
|
||
} | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|