File tree Expand file tree Collapse file tree 4 files changed +31
-1
lines changed Expand file tree Collapse file tree 4 files changed +31
-1
lines changed Original file line number Diff line number Diff line change 1+ ## Turtle 0.1.2:
2+
3+ * ` Get-Turtle/Turtle ` can now get or set properties or methods
4+ * New Methods:
5+ * ` Turtle.Distance() ` determines the distance to a point
6+ * ` Turtle.Towards() ` determines the angle to a point
7+ * ` Turtle.Home() ` sends the turtle to 0,0
8+ * ` Turtle.lt/rt ` aliases help original Logo compatibility
9+ * ` Turtle.Save() ` calls Save-Turtle
10+ * Explicitly exporting commands from module
11+
112## Turtle 0.1.1:
213
314* Updates:
Original file line number Diff line number Diff line change 22
33<div align =' center ' >
44 <img src='./Examples/SierpinskiTriangle.svg' alt='SierpinskiTriangle' width='50%' />
5+ <br/>
6+ <a href='https://www.powershellgallery.com/packages/Turtle/' >
7+ <img src='https://img.shields.io/powershellgallery/dt/Turtle' />
8+ </a>
59</div >
610
711
Original file line number Diff line number Diff line change @@ -14,6 +14,10 @@ param()
1414
1515<div align='center'>
1616 <img src='./Examples/SierpinskiTriangle.svg' alt='SierpinskiTriangle' width='50%' />
17+ <br/>
18+ <a href='https://www.powershellgallery.com/packages/Turtle/' >
19+ <img src='https://img.shields.io/powershellgallery/dt/Turtle' />
20+ </a>
1721</div>
1822
1923
Original file line number Diff line number Diff line change 11@ {
22 # Version number of this module.
3- ModuleVersion = ' 0.1.1 '
3+ ModuleVersion = ' 0.1.2 '
44 # Description of the module
55 Description = " Turtles in a PowerShell"
66 # Script module or binary module file associated with this manifest.
3737 # A URL to the license for this module.
3838 LicenseURI = ' https://github.com/PowerShellWeb/Turtle/blob/main/LICENSE'
3939 ReleaseNotes = @'
40+ ## Turtle 0.1.2:
41+
42+ * `Get-Turtle/Turtle` can now get or set properties or methods
43+ * New Methods:
44+ * `Turtle.Distance()` determines the distance to a point
45+ * `Turtle.Towards()` determines the angle to a point
46+ * `Turtle.Home()` sends the turtle to 0,0
47+ * `Turtle.lt/rt` aliases help original Logo compatibility
48+ * `Turtle.Save()` calls Save-Turtle
49+ * Explicitly exporting commands from module
50+
4051## Turtle 0.1.1:
4152
4253* Updates:
You can’t perform that action at this time.
0 commit comments