cd-extras.psd1
|
# # Module manifest for module 'cd-extras' # # Generated by: Nick Cox # # Generated on: 08/26/2026 # @{ # Script module or binary module file associated with this manifest. RootModule = 'cd-extras.psm1' # Version number of this module. ModuleVersion = '3.0.0' # Supported PSEditions # CompatiblePSEditions = @() # ID used to uniquely identify this module GUID = '206fccbd-dc96-4b23-908c-5ac821372e16' # Author of this module Author = 'Nick Cox' # Company or vendor of this module CompanyName = '' # Copyright statement for this module Copyright = '(c) Nick Cox. All rights reserved.' # Description of the functionality provided by this module Description = 'Fast directory navigation, history, bookmarks and path completion for PowerShell' # Minimum version of the PowerShell engine required by this module PowerShellVersion = '5.0' # Name of the PowerShell host required by this module # PowerShellHostName = '' # Minimum version of the PowerShell host required by this module # PowerShellHostVersion = '' # Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only. # DotNetFrameworkVersion = '' # Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only. # ClrVersion = '' # 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 = @() # Assemblies that must be loaded prior to importing this module # RequiredAssemblies = @() # Script files (.ps1) that are run in the caller's environment prior to importing this module. ScriptsToProcess = 'public/_Classes.ps1' # Type files (.ps1xml) to be loaded when importing this module # TypesToProcess = @() # Format files (.ps1xml) to be loaded when importing this module # FormatsToProcess = @() # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess # NestedModules = @() # 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 = 'Add-Bookmark', 'Clear-Stack', 'Expand-Path', 'Get-Ancestors', 'Get-Bookmark', 'Get-CdExtrasOption', 'Get-FrecentLocation', 'Get-RecentLocation', 'Get-Stack', 'Get-Up', 'Redo-Location', 'Remove-Bookmark', 'Remove-RecentLocation', 'Set-CdExtrasOption', 'Set-FrecentLocation', 'Set-LocationEx', 'Set-RecentLocation', 'Step-Up', 'Switch-LocationPart', 'Undo-Location' # 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 = @() # Variables to export from this module VariablesToExport = 'cde' # 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 = '..', '~', '~~', 'cd-', 'cd:', 'cd+', 'cdf', 'cdr', 'dirs', 'dirsc', 'getocd', 'gup', 'mark', 'setocd', 'unmark', 'up', 'xpa', 'xup' # DSC resources to export from this module # DscResourcesToExport = @() # List of all modules packaged with this module # ModuleList = @() # List of all files packaged with this module # FileList = @() # 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 = @{ PSData = @{ # Tags applied to this module. These help with module discovery in online galleries. Tags = 'cd+','cd-','AUTO_CD','CD_PATH','CDABLE_VARS','bookmarks','frecency','navigation','zoxide','bash','zsh' # A URL to the license for this module. LicenseUri = 'https://github.com/nickcox/cd-extras/blob/master/LICENSE' # A URL to the main website for this project. ProjectUri = 'https://github.com/nickcox/cd-extras' # A URL to an icon representing this module. # IconUri = '' # ReleaseNotes of this module ReleaseNotes = '### Added - Add recent and frecent directory navigation with `Get-RecentLocation`, `Set-RecentLocation`, `Get-FrecentLocation` and `Set-FrecentLocation`. - Add directory bookmarks with `Add-Bookmark`, `Get-Bookmark` and `Remove-Bookmark`. - Add optional CSV persistence for recent locations and bookmarks. The CSV contains `Path`, `LastEntered`, `EnterCount` and `Favour` columns and is enabled with `RECENT_DIRS_FILE`. - Add configurable frecency providers and automatic zoxide integration when zoxide is available. - Add `Get-CdExtrasOption` and its `getocd` alias. - Add separate navigation, completion and configuration documentation. ### Changed - Allow recent and frecent navigation by index or search terms. - Allow `Set-CdExtrasOption` to update multiple options from any `IDictionary` implementation. - Retain every bookmark when recent history is trimmed. - Make `cdr -Prune` and `cdf -Prune` default to the current directory when no pattern is supplied. - Normalise custom frecency results, discard invalid results and apply the result limit afterwards. - Replace wildcard manifest exports with the explicit 3.0 public command and alias lists. - Remove the completion warning beep and report truncated results in the completion tooltip. ### Fixed - Prevent concurrent shells from losing each other''s persisted history updates. - Persist deletion of the final recent entry and reconcile external CSV additions, removals and deletion consistently. - Validate persisted CSV rows before replacing in-memory history. - Prevent ordinary recent entries from displacing bookmarks. - Reject missing paths and non-container items when creating bookmarks. ### Breaking changes - Remove `Step-Between` and its `cdb` alias. Use `Set-RecentLocation` or `cdr` to move between recently used directories. - Replace the `ToolTipExtraInfo` option with `ToolTip`. The new callback receives the completion item and a Boolean indicating whether results were truncated, and returns the complete tooltip text.' # Prerelease string of this module Prerelease = 'beta3' # Flag to indicate whether the module requires explicit user acceptance for install/update/save # RequireLicenseAcceptance = $false # External dependent modules of this module # ExternalModuleDependencies = @() } # End of PSData hashtable } # End of PrivateData hashtable # HelpInfo URI of this module # HelpInfoURI = '' # Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix. # DefaultCommandPrefix = '' } |