Skip to content

Commit 1ffd91c

Browse files
committed
Updated the Markdown manuals
1 parent dafa6cf commit 1ffd91c

605 files changed

Lines changed: 1928 additions & 1016 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

docs/add-firewall-rules.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,4 +113,4 @@ try {
113113
114114
```
115115

116-
*(generated by convert-ps2md.ps1 using the comment-based help of add-firewall-rules.ps1 as of 10/19/2023 08:11:35)*
116+
*(generated by convert-ps2md.ps1 using the comment-based help of add-firewall-rules.ps1 as of 12/07/2023 20:24:14)*

docs/add-memo.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,4 +79,4 @@ try {
7979
}
8080
```
8181

82-
*(generated by convert-ps2md.ps1 using the comment-based help of add-memo.ps1 as of 10/19/2023 08:11:35)*
82+
*(generated by convert-ps2md.ps1 using the comment-based help of add-memo.ps1 as of 12/07/2023 20:24:14)*

docs/alert.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,4 +71,4 @@ try {
7171
}
7272
```
7373

74-
*(generated by convert-ps2md.ps1 using the comment-based help of alert.ps1 as of 10/19/2023 08:11:35)*
74+
*(generated by convert-ps2md.ps1 using the comment-based help of alert.ps1 as of 12/07/2023 20:24:14)*

docs/build-repo.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,18 +66,21 @@ param([string]$path = "$PWD")
6666
function BuildInDir([string]$path) {
6767
$dirName = (Get-Item "$path").Name
6868
if (Test-Path "$path/CMakeLists.txt" -pathType leaf) {
69-
"⏳ Building 📂$dirName by using CMake into 📂$dirName/_My_Build..."
69+
"⏳ (1/4) Building 📂$dirName by using CMake into 📂$dirName/_My_Build..."
7070
if (-not(Test-Path "$path/_My_Build/" -pathType container)) {
7171
& mkdir "$path/_My_Build/"
7272
}
7373
Set-Location "$path/_My_Build/"
7474
75+
"⏳ (2/4) Executing 'cmake' to generate the Makefile..."
7576
& cmake ..
7677
if ($lastExitCode -ne "0") { throw "Executing 'cmake ..' has failed" }
7778
79+
"⏳ (3/4) Executing 'make -j4' to compile and link..."
7880
& make -j4
7981
if ($lastExitCode -ne "0") { throw "Executing 'make -j4' has failed" }
8082
83+
"⏳ (4/4) Executing 'make test' to perform tests (optional)..."
8184
& make test
8285
if ($lastExitCode -ne "0") { throw "Executing 'make test' has failed" }
8386
@@ -189,4 +192,4 @@ try {
189192
}
190193
```
191194

192-
*(generated by convert-ps2md.ps1 using the comment-based help of build-repo.ps1 as of 10/19/2023 08:11:35)*
195+
*(generated by convert-ps2md.ps1 using the comment-based help of build-repo.ps1 as of 12/07/2023 20:24:14)*

docs/build-repos.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,4 +82,4 @@ try {
8282
}
8383
```
8484

85-
*(generated by convert-ps2md.ps1 using the comment-based help of build-repos.ps1 as of 10/19/2023 08:11:35)*
85+
*(generated by convert-ps2md.ps1 using the comment-based help of build-repos.ps1 as of 12/07/2023 20:24:14)*

docs/cd-autostart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,4 @@ try {
6060
}
6161
```
6262

63-
*(generated by convert-ps2md.ps1 using the comment-based help of cd-autostart.ps1 as of 10/19/2023 08:11:35)*
63+
*(generated by convert-ps2md.ps1 using the comment-based help of cd-autostart.ps1 as of 12/07/2023 20:24:14)*

docs/cd-crashdumps.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,4 +63,4 @@ try {
6363
}
6464
```
6565

66-
*(generated by convert-ps2md.ps1 using the comment-based help of cd-crashdumps.ps1 as of 10/19/2023 08:11:35)*
66+
*(generated by convert-ps2md.ps1 using the comment-based help of cd-crashdumps.ps1 as of 12/07/2023 20:24:14)*

docs/cd-desktop.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,4 @@ try {
6464
}
6565
```
6666

67-
*(generated by convert-ps2md.ps1 using the comment-based help of cd-desktop.ps1 as of 10/19/2023 08:11:35)*
67+
*(generated by convert-ps2md.ps1 using the comment-based help of cd-desktop.ps1 as of 12/07/2023 20:24:14)*

docs/cd-docs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,4 @@ try {
6464
}
6565
```
6666

67-
*(generated by convert-ps2md.ps1 using the comment-based help of cd-docs.ps1 as of 10/19/2023 08:11:35)*
67+
*(generated by convert-ps2md.ps1 using the comment-based help of cd-docs.ps1 as of 12/07/2023 20:24:14)*

docs/cd-downloads.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,4 @@ try {
6464
}
6565
```
6666

67-
*(generated by convert-ps2md.ps1 using the comment-based help of cd-downloads.ps1 as of 10/19/2023 08:11:35)*
67+
*(generated by convert-ps2md.ps1 using the comment-based help of cd-downloads.ps1 as of 12/07/2023 20:24:14)*

0 commit comments

Comments
 (0)