You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Added localized verbose messaging, help documentation, and a version of the README help to French. Translations were done with GitHub CoPilot so I can't guarantee the quality.
- Fixed `Open-PSProjectStatusHelp` to make `-AsMarkdown` a dynamic parameter for PowerShell 7. [Issue #13](https://github.com/jdhitsolutions/PSProjectStatus/issues/13)
39
+
- Fixed doc links in the French help PDF file. [Issue #16](https://github.com/jdhitsolutions/PSProjectStatus/issues/16)
40
+
- Fixed issue trying to open default `README` as markdown. [Issue #15](https://github.com/jdhitsolutions/PSProjectStatus/issues/15)
41
+
- Fixed task-related bugs. Rolled class definition and code back to v0.14.0. [Issue #17](https://github.com/jdhitsolutions/PSProjectStatus/issues/17) _This is a potential breaking change._
@@ -170,7 +143,8 @@ This would be a major breaking change
170
143
171
144
#>
172
145
173
-
<# Class PSProjectTask {
146
+
#7 Jan 2025 Restoring the old version until the new PSProjectTask class is ready
147
+
ClassPSProjectTask {
174
148
[string]$ProjectName
175
149
[string]$Path
176
150
[string]$TaskDescription
@@ -183,7 +157,8 @@ This would be a major breaking change
183
157
$this.TaskDescription=$TaskDescription
184
158
$this.ProjectVersion=$ProjectVersion
185
159
}
186
-
} #>
160
+
}
161
+
187
162
188
163
#endregion
189
164
@@ -347,7 +322,7 @@ $PSProjectANSI = @{
347
322
Set-Variable-Name PSProjectANSI -Description "a hash table to store ANSI escape sequences for different commands used in verbose output. You can modify settings using ANSI sequences or `$PSStyle"
348
323
349
324
#Export the module version to a global variable that will be used in Verbose messages
350
-
New-Variable-Name PSProjectStatusModule -Value '0.16.0'-Description 'The PSProjectStatus module version used in verbose messaging.'
325
+
New-Variable-Name PSProjectStatusModule -Value '0.17.0'-Description 'The PSProjectStatus module version used in verbose messaging.'
Copy file name to clipboardExpand all lines: changelog.md
+15-1Lines changed: 15 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,19 @@
2
2
3
3
## [Unreleased]
4
4
5
+
## [0.17.0] - 2025-01-08
6
+
7
+
### Changed
8
+
9
+
- Moved default help PDF to en-US.
10
+
- Updates to `README` files.
11
+
12
+
### Fixed
13
+
14
+
- Fixed doc links in the French help PDF file. [Issue #16](https://github.com/jdhitsolutions/PSProjectStatus/issues/16)
15
+
- Fixed issue trying to open default `README` as markdown. [Issue #15](https://github.com/jdhitsolutions/PSProjectStatus/issues/15)
16
+
- Fixed task-related bugs. Rolled class definition and code back to v0.14.0. [Issue #17](https://github.com/jdhitsolutions/PSProjectStatus/issues/17)_This is a potential breaking change._
17
+
5
18
## [0.16.0] - 2025-01-07
6
19
7
20
### Added
@@ -255,7 +268,8 @@
255
268
- Modified `New-PSProjectStatus` to convert all paths to full filesystem paths and not PSDrives.
256
269
- Updated `psproject.format.ps1xml` to adjust table widths. Added a default list view.
0 commit comments