-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update copyright year and license information, and fix module metadata
- Loading branch information
1 parent
b00792d
commit 7eb816a
Showing
4 changed files
with
14 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,19 @@ | ||
@{ | ||
# Version number of this module | ||
@{ | ||
ModuleVersion = '0.3.0' | ||
|
||
# Description of the functionality provided by this module | ||
Description = 'A PowerShell module to manage NerdFonts' | ||
|
||
# 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/NerdFonts' | ||
PrivateData = @{ | ||
|
||
PSData = @{ | ||
|
||
# Tags applied to this module. These help with module discovery in online galleries. | ||
Tags = @('NerdFonts', 'Fonts', 'PowerShell', 'Module') | ||
|
||
# A URL to the license for this module. | ||
LicenseUri = 'https://github.com/MariusStorhaug/NerdFonts/blob/main/LICENSE' | ||
|
||
# A URL to the main website for this project. | ||
ProjectUri = 'https://github.com/MariusStorhaug/NerdFonts' | ||
|
||
# A URL to an icon representing this module. | ||
IconUri = 'https://raw.githubusercontent.com/MariusStorhaug/NerdFonts/main/icon/PowerShell_Core_6.0_icon.png' | ||
|
||
} # End of PSData hashtable | ||
|
||
} # End of PrivateData hashtable | ||
|
||
# HelpInfo URI of this module | ||
HelpInfoURI = 'https://mariusstorhaug.github.io/NerdFonts' | ||
|
||
Tags = @( | ||
'NerdFonts' | ||
'Fonts' | ||
'PowerShell' | ||
'Module' | ||
) | ||
LicenseUri = 'https://github.com/PSModule/NerdFonts/blob/main/LICENSE' | ||
ProjectUri = 'https://github.com/PSModule/NerdFonts' | ||
IconUri = 'https://raw.githubusercontent.com/PSModule/NerdFonts/main/icon/icon.png' | ||
} | ||
} | ||
} | ||
|