Skip to content

Commit 1ff5a20

Browse files
CopilotJusterZhu
andauthored
docs: fix code-docs discrepancies across all website documentation
- Add DriverDirectory to Packet class in Core.md (all 3 copies) - Update .NET version tables to include .NET 10 in Bowl, Core, Differential, Drivelution, GeneralClient.OSS, UpgradeHub docs (all 3 copies each) - Fix malformed version string '9,10' -> '9, 10' in zh-Hans GeneralTracer.md Agent-Logs-Url: https://github.com/GeneralLibrary/GeneralUpdate-Samples/sessions/eacb5b23-1edb-47a0-a533-95ac3b940688 Co-authored-by: JusterZhu <11714536+JusterZhu@users.noreply.github.com>
1 parent 81a4126 commit 1ff5a20

19 files changed

Lines changed: 34 additions & 19 deletions

website/docs/doc/GeneralClient.OSS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ catch (Exception ex)
128128

129129
| Product | Version |
130130
| -------------- | ------------- |
131-
| .NET | 5, 6, 7, 8, 9 |
131+
| .NET | 5, 6, 7, 8, 9, 10 |
132132
| .NET Framework | 4.6.1 |
133133
| .NET Standard | 2.0 |
134134
| .NET Core | 2.0 |

website/docs/doc/GeneralUpdate.Bowl.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ Windows 事件查看器格式的系统日志(.evtx 文件):
313313

314314
| 产品 | 版本 |
315315
| --------------- | ----------------- |
316-
| .NET | 5, 6, 7, 8, 9 |
316+
| .NET | 5, 6, 7, 8, 9, 10 |
317317
| .NET Framework | 4.6.1 |
318318
| .NET Standard | 2.0 |
319319
| .NET Core | 2.0 |

website/docs/doc/GeneralUpdate.Core.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,6 +336,11 @@ public class Packet
336336
/// 是否启用驱动升级功能
337337
/// </summary>
338338
public bool DriveEnabled { get; set; }
339+
340+
/// <summary>
341+
/// 驱动程序目录路径,与 Configinfo.DriverDirectory 对应,由 ConfigurationMapper 自动填充
342+
/// </summary>
343+
public string DriverDirectory { get; set; }
339344
}
340345
```
341346

@@ -555,7 +560,7 @@ await new GeneralUpdateBootstrap()
555560

556561
| 产品 | 版本 |
557562
| ------------------ | ----------------- |
558-
| .NET | 5, 6, 7, 8, 9 |
563+
| .NET | 5, 6, 7, 8, 9, 10 |
559564
| .NET Framework | 4.6.1 |
560565
| .NET Standard | 2.0 |
561566
| .NET Core | 2.0 |

website/docs/doc/GeneralUpdate.Differential.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,7 @@ await manager.GeneratePatchWithProgressAsync(
434434

435435
| 产品 | 版本 |
436436
| ------------------ | ----------------- |
437-
| .NET | 5, 6, 7, 8, 9 |
437+
| .NET | 5, 6, 7, 8, 9, 10 |
438438
| .NET Framework | 4.6.1 |
439439
| .NET Standard | 2.0 |
440440
| .NET Core | 2.0 |

website/docs/doc/GeneralUpdate.Drivelution.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -732,7 +732,7 @@ GeneralDrivelution provides a complete driver update solution with the following
732732

733733
| Product | Versions |
734734
| -------------- | ------------- |
735-
| .NET | 8, 9 |
735+
| .NET | 8, 9, 10 |
736736
| .NET Standard | N/A |
737737
| .NET Core | N/A |
738738
| .NET Framework | N/A |

website/docs/doc/UpgradeHub.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ appkey string The client key, uniquely identified, recommended value is a Guid,
9595

9696
| Product | Version |
9797
| -------------- | ------------- |
98-
| .NET | 5, 6, 7, 8, 9 |
98+
| .NET | 5, 6, 7, 8, 9, 10 |
9999
| .NET Framework | 4.6.1 |
100100
| .NET Standard | 2.0 |
101101
| .NET Core | 2.0 |

website/i18n/en/docusaurus-plugin-content-docs/current/doc/GeneralClient.OSS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ catch (Exception ex)
127127

128128
| Product | Version |
129129
| -------------- | ------------- |
130-
| .NET | 5, 6, 7, 8, 9 |
130+
| .NET | 5, 6, 7, 8, 9, 10 |
131131
| .NET Framework | 4.6.1 |
132132
| .NET Standard | 2.0 |
133133
| .NET Core | 2.0 |

website/i18n/en/docusaurus-plugin-content-docs/current/doc/GeneralUpdate.Bowl.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ System log in Windows Event Viewer format (.evtx file):
315315

316316
| Product | Version |
317317
| --------------- | ----------------- |
318-
| .NET | 5, 6, 7, 8, 9 |
318+
| .NET | 5, 6, 7, 8, 9, 10 |
319319
| .NET Framework | 4.6.1 |
320320
| .NET Standard | 2.0 |
321321
| .NET Core | 2.0 |

website/i18n/en/docusaurus-plugin-content-docs/current/doc/GeneralUpdate.Core.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,6 +336,11 @@ public class Packet
336336
/// Indicates if the driver upgrade feature is enabled
337337
/// </summary>
338338
public bool DriveEnabled { get; set; }
339+
340+
/// <summary>
341+
/// Driver directory path, corresponds to Configinfo.DriverDirectory and is auto-populated by ConfigurationMapper
342+
/// </summary>
343+
public string DriverDirectory { get; set; }
339344
}
340345
```
341346

@@ -555,7 +560,7 @@ await new GeneralUpdateBootstrap()
555560

556561
| Product | Version |
557562
| -------------- | ------------- |
558-
| .NET | 5, 6, 7, 8, 9 |
563+
| .NET | 5, 6, 7, 8, 9, 10 |
559564
| .NET Framework | 4.6.1 |
560565
| .NET Standard | 2.0 |
561566
| .NET Core | 2.0 |

website/i18n/en/docusaurus-plugin-content-docs/current/doc/GeneralUpdate.Differential.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@ await manager.GeneratePatchWithProgressAsync(
435435

436436
| Product | Version |
437437
| -------------- | ------------- |
438-
| .NET | 5, 6, 7, 8, 9 |
438+
| .NET | 5, 6, 7, 8, 9, 10 |
439439
| .NET Framework | 4.6.1 |
440440
| .NET Standard | 2.0 |
441441
| .NET Core | 2.0 |

0 commit comments

Comments
 (0)