SpotifyControls.psd1
|
# # Module manifest for module 'SpotifyControls' # # Original author: niwamo # Modified by: RedThinkCode, 2026 # # Generated on: 2026-05-07 # @{ # Script module or binary module file associated with this manifest. RootModule = 'SpotifyControls.psm1' # Version number of this module. ModuleVersion = '2.1.0' # Supported PSEditions CompatiblePSEditions = 'Desktop', 'Core' # ID used to uniquely identify this module GUID = '615a1977-e5bd-4fd8-b38b-f05b2d63f875' # Author of this module Author = 'RedThinkCode' # Company or vendor of this module CompanyName = 'RedThinkCode' # Copyright statement for this module Copyright = '(c) niwamo. Modified by RedThinkCode, 2026. Licensed under AGPL-3.0.' # Description of the functionality provided by this module Description = 'A PowerShell module for managing your Spotify tracks and playlists via Spotify''s API.' # Minimum version of the PowerShell engine required by this module PowerShellVersion = '5.1' # 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-SpotifyPlaylistTracks', 'Export-SpotifyTokens', 'Get-SpotifyControlsConfig', 'Get-SpotifyPlaylists', 'Get-SpotifyTracks', 'Import-SpotifyTokens', 'New-SpotifyPlaylist', 'Search-SpotifyTrack', 'Set-SpotifyControlsConfig', 'Start-SpotifySession' ) # Cmdlets to export from this module CmdletsToExport = @() # Aliases to export from this module AliasesToExport = @() # Private data to pass to the module specified in RootModule/ModuleToProcess. PrivateData = @{ PSData = @{ # Tags applied to this module. These help with module discovery in online galleries. Tags = @( 'Spotify', 'API', 'Music', 'Playlist', 'Track', 'PSEdition_Core', 'PSEdition_Desktop', 'Windows', 'Linux', 'MacOS' ) # A URL to the license for this module. LicenseUri = 'https://github.com/RedThinkCode/SpotifyControls/blob/main/LICENSE.txt' # A URL to the main website for this project. ProjectUri = 'https://github.com/RedThinkCode/SpotifyControls' # Release notes ReleaseNotes = @' 2.1.0 (2026-05-07) - Renamed: module renamed from SpotifyUtils to SpotifyControls - Renamed: Get-SpotifyUtilsConfig → Get-SpotifyControlsConfig - Renamed: Set-SpotifyUtilsConfig → Set-SpotifyControlsConfig 2.0.0 (RedThinkCode fork, 2026-05-07) - Removed: Add-SpotifyTracks, Get-TracksFromFolder, Remove-SpotifyPlaylistTracks - Added: New-SpotifyPlaylist, Search-SpotifyTrack (with -Interactive and -TopTracksOnNoMatch) - Added: Add-SpotifyPlaylistTracks accepts SpotifyTrack objects and prints Artist-Title output - Changed: Get-SpotifyPlaylists now returns {Name, Id} list; added -Name filter - Added: Invoke-SpotifyRequest private helper with HTTP 429 retry logic - Fixed: deprecated /tracks endpoint replaced with /items throughout - Fixed: rate-limiting sleep placement across all batch operations '@ } # End of PSData hashtable } # End of PrivateData hashtable } |