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
+
1
12
## Turtle 0.1.1:
2
13
3
14
* Updates:
Original file line number Diff line number Diff line change 2
2
3
3
<div align =' center ' >
4
4
<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>
5
9
</div >
6
10
7
11
Original file line number Diff line number Diff line change @@ -14,6 +14,10 @@ param()
14
14
15
15
<div align='center'>
16
16
<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>
17
21
</div>
18
22
19
23
Original file line number Diff line number Diff line change 1
1
@ {
2
2
# Version number of this module.
3
- ModuleVersion = ' 0.1.1 '
3
+ ModuleVersion = ' 0.1.2 '
4
4
# Description of the module
5
5
Description = " Turtles in a PowerShell"
6
6
# Script module or binary module file associated with this manifest.
37
37
# A URL to the license for this module.
38
38
LicenseURI = ' https://github.com/PowerShellWeb/Turtle/blob/main/LICENSE'
39
39
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
+
40
51
## Turtle 0.1.1:
41
52
42
53
* Updates:
You can’t perform that action at this time.
0 commit comments