FileOptimizer.psd1
|
@{ ModuleVersion = '1.1.4' GUID = 'a47c8e21-5f3b-4d92-9c1a-6e8b2d4f7c90' Author = 'Aurocosh' Copyright = '(c) PS-FileOptimizer contributors. FileOptimizer plugins are subject to their respective licenses.' Description = 'PowerShell module mirroring FileOptimizer plugin optimization chains with a scriptable CLI.' PowerShellVersion = '5.1' RootModule = 'FileOptimizer.psm1' FunctionsToExport = @( 'Optimize-FoFile' 'Get-FoPipeline' 'Get-FoExecutionPlan' 'Invoke-FoPluginChain' 'Resolve-FoPluginExecutable' 'Get-FoConfig' 'Initialize-FoConfig' 'Undo-FoOptimization' 'Get-FoHistory' 'Install-FoPlugins' 'Install-FoDssim' ) PrivateData = @{ PSData = @{ Tags = @('FileOptimizer', 'compression', 'optimization', 'PNG', 'CLI') LicenseUri = 'https://www.gnu.org/licenses/agpl-3.0.html' ProjectUri = 'https://github.com/Aurocosh/ps-file-optimizer' # Plain text only (PowerShell Gallery does not render markdown). ReleaseNotes = @' 1.1.4 Fix Undo-FoOptimization so -Last, -LastBatches, and -Path only reverse the selected history entries. Fixes - Undo selection no longer ignores filters inside the history file lock (ParameterSetName was lost), which previously reversed every pending entry. - Pending entries are sorted by Timestamp with a scriptblock so hashtable history rows order correctly when choosing the newest batch or file. '@ } } } |