File tree Expand file tree Collapse file tree 2 files changed +79
-5
lines changed
Expand file tree Collapse file tree 2 files changed +79
-5
lines changed Original file line number Diff line number Diff line change 1+ ## Font 0.1
2+
3+ * Initial Release of Font Module (#1 )
4+ * Core Commands:
5+ * Get-Font (#2 )
6+ * Export-Font (#3 )
7+ * Import-Font (#4 )
8+ * Extended Types
9+ * ` Font.File `
10+ * ` get_FamilyName ` (#5 )
11+ * ` Font.svg `
12+ * ` get_FontFace ` (#7 )
13+ * ` get_FontStyle ` (#8 )
14+ * ` get/set_FamilyName ` (#9 )
15+ * ` get_FontWeight ` (#10 )
16+ * ` get_BoundingBox ` (#11 )
17+ * ` get_UnitsPerEm ` (#12 )
18+ * ` get_Descent ` (#13 )
19+ * ` get_Ascent ` (#14 )
20+ * ` GetGlyph() ` (#15 )
21+ * ` get_XML ` (#17 )
22+ * ` get/set_ID ` (#28 )
23+ * ` Font.Glyph `
24+ * ` get_SVG ` (#18 )
25+ * ` get_PathData ` (#19 )
26+ * ` get_Outline ` (#20 )
27+ * ` get_Motion ` (#21 )
28+ * ` .Save() ` (#27 )
29+ * ` .ToString() ` (#30 )
30+ * Docs
31+ * ` README ` (#22 )
32+ * ` CONTRIBUTING.md ` (#23 )
33+ * ` CODE_OF_CONDUCT.md ` (#24 )
34+ * ` SECURITY.md ` (#25 )
35+ * ` FUNDING.yml ` (#29 )
36+ * ` Font ` GitHub Action (#26 )
Original file line number Diff line number Diff line change @@ -95,19 +95,57 @@ PrivateData = @{
9595 PSData = @ {
9696
9797 # Tags applied to this module. These help with module discovery in online galleries.
98- # Tags = @()
99-
100- # A URL to the license for this module.
101- # LicenseUri = ''
98+ Tags = @ (' PowerShell' , ' SVG' , ' Font' , ' FontForge' )
10299
103100 # A URL to the main website for this project.
104- # ProjectUri = ''
101+ ProjectUri = ' https://github.com/PowerShellWeb/Font'
102+
103+ # A URL to the license for this module.
104+ LicenseUri = ' https://github.com/PowerShellWeb/Font/blob/main/LICENSE'
105105
106106 # A URL to an icon representing this module.
107107 # IconUri = ''
108108
109109 # ReleaseNotes of this module
110110 # ReleaseNotes = ''
111+ ReleaseNotes = @'
112+ ## Font 0.1
113+
114+ * Initial Release of Font Module (#1)
115+ * Core Commands:
116+ * Get-Font (#2)
117+ * Export-Font (#3)
118+ * Import-Font (#4)
119+ * Extended Types
120+ * `Font.File`
121+ * `get_FamilyName` (#5)
122+ * `Font.svg`
123+ * `get_FontFace` (#7)
124+ * `get_FontStyle` (#8)
125+ * `get/set_FamilyName` (#9)
126+ * `get_FontWeight` (#10)
127+ * `get_BoundingBox` (#11)
128+ * `get_UnitsPerEm` (#12)
129+ * `get_Descent` (#13)
130+ * `get_Ascent` (#14)
131+ * `GetGlyph()` (#15)
132+ * `get_XML` (#17)
133+ * `get/set_ID` (#28)
134+ * `Font.Glyph`
135+ * `get_SVG` (#18)
136+ * `get_PathData` (#19)
137+ * `get_Outline` (#20)
138+ * `get_Motion` (#21)
139+ * `.Save()` (#27)
140+ * `.ToString()` (#30)
141+ * Docs
142+ * `README` (#22)
143+ * `CONTRIBUTING.md` (#23)
144+ * `CODE_OF_CONDUCT.md` (#24)
145+ * `SECURITY.md` (#25)
146+ * `FUNDING.yml` (#29)
147+ * `Font` GitHub Action (#26)
148+ '@
111149
112150 # Prerelease string of this module
113151 # Prerelease = ''
You can’t perform that action at this time.
0 commit comments