PSBlueSky.psd1
# # Module manifest for module 'PSBluesky' # @{ RootModule = 'PSBluesky.psm1' ModuleVersion = '1.1.0' CompatiblePSEditions = 'Core' GUID = 'c5c1fd1d-e648-432d-b7d6-bb56f2044c2a' Author = 'Jeff Hicks' CompanyName = 'JDH Information Technology Solutions, Inc.' Copyright = '2024 JDH Information Technology Solutions, Inc.' Description = 'A set of PowerShell commands that use the Bluesky API. You can skeet and upload images from a PowerShell prompt. This module is written for PowerShell 7 and uses features like $PSStyle.' PowerShellVersion = '7.4' FunctionsToExport = @( 'Add-BskyImage', 'Get-BskyAccessToken', 'Get-BskyFeed', 'Get-BskyFollowers', 'Get-BskyFollowing', 'Get-BskyProfile', 'Get-BskySession', 'Get-BskyTimeline' 'New-BskyPost', 'Open-BskyHelp', 'Update-BskySession' ) TypesToProcess = @( 'types/PSBluesky.types.ps1xml' ) FormatsToProcess = @( 'formats/PSBlueskyTimelinePost.format.ps1xml', 'formats/PSBlueskyProfile.format.ps1xml', 'formats/PSBlueskyFollower.format.ps1xml', 'formats/PSBlueskyFeed.format.ps1xml', 'formats/PSBlueskySession.format.ps1xml' ) CmdletsToExport = '' VariablesToExport = '' AliasesToExport = 'skeet' PrivateData = @{ PSData = @{ Tags = @('Bluesky', 'skeet') LicenseUri = 'https://github.com/jdhitsolutions/PSBlueSky/blob/main/LICENSE.txt' ProjectUri = 'https://github.com/jdhitsolutions/PSBluesky' IconUri = 'https://raw.githubusercontent.com/jdhitsolutions/PSBlueSky/main/images/BlueskyLogo-icon.png' ReleaseNotes = @' ## [1.1.0] - 2024-11-07 ### Added - Moved the helper function `_RefreshSession` to a public function, `Update-BskySession`. ### Changed - Modified `New-BSkyPost` to accept pipeline input. - Updated default formatting for Bluesky timeline items to use a custom format. The Table definition remains as a named view. - Modified session code to refresh the session if the age is greater than 60 minutes. - Updated `README.md`. - Revised the PDF help document formatting. - Help documentation updates. '@ RequireLicenseAcceptance = $false ExternalModuleDependencies = @() } # End of PSData hashtable } # End of PrivateData hashtable } |