diff --git a/LICENSE b/LICENSE index d8bb7bd..92f4384 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2024 Marius Storhaug +Copyright (c) 2024 PSModule Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/icon/PowerShell_Core_6.0_icon.png b/icon/PowerShell_Core_6.0_icon.png deleted file mode 100644 index 54d1e96..0000000 Binary files a/icon/PowerShell_Core_6.0_icon.png and /dev/null differ diff --git a/icon/icon.png b/icon/icon.png new file mode 100644 index 0000000..be83fd5 Binary files /dev/null and b/icon/icon.png differ diff --git a/src/PublicIP/PublicIP.psd1 b/src/PublicIP/PublicIP.psd1 index 6d56148..af33e73 100644 --- a/src/PublicIP/PublicIP.psd1 +++ b/src/PublicIP/PublicIP.psd1 @@ -1,33 +1,20 @@ -@{ - # Version number of this module +@{ ModuleVersion = '0.1.0' - - # Description of the functionality provided by this module Description = 'PowerShell Module for Public IP' - - # 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. + HelpInfoURI = 'https://PSModule.github.io/PublicIP' PrivateData = @{ - PSData = @{ - - # Tags applied to this module. These help with module discovery in online galleries. - Tags = @('PublicIP', 'IP', 'Public', 'IPConfig', 'Config') - - # A URL to the license for this module. + Tags = @( + 'PublicIP' + 'IP' + 'Public' + 'IPConfig' + 'Config' + ) LicenseUri = 'https://github.com/PSModule/PublicIP/blob/main/LICENSE' - - # A URL to the main website for this project. ProjectUri = 'https://github.com/PSModule/PublicIP' - - # A URL to an icon representing this module. - IconUri = 'https://raw.githubusercontent.com/PSModule/PublicIP/main/icon/PowerShell_Core_6.0_icon.png' - - } # End of PSData hashtable - - } # End of PrivateData hashtable - - # HelpInfo URI of this module - HelpInfoURI = 'https://PSModule.github.io/PublicIP' - + IconUri = 'https://raw.githubusercontent.com/PSModule/PublicIP/main/icon/icon.png' + } + } } +