FileOptimizer.psd1
|
@{ ModuleVersion = '1.1.3' 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.3 -ShowProgress now reports batch progress across multiple files, with nested per-step plugin progress. Fixes - Batch bar shows File i of N: filename with overall percent complete. - Nested step bar shows Step i of N: plugin under the current file (no duplicated full path under each bar). '@ } } } |