Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update copyright and add new icon for PublicIP module #1

Merged
merged 1 commit into from
Mar 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Binary file removed icon/PowerShell_Core_6.0_icon.png
Binary file not shown.
Binary file added icon/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
39 changes: 13 additions & 26 deletions src/PublicIP/PublicIP.psd1
Original file line number Diff line number Diff line change
@@ -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'
}
}
}

Loading