Skip to content

Commit c9400ab

Browse files
committed
regen 1.6.0 changelog
1 parent f9d6141 commit c9400ab

4 files changed

Lines changed: 61 additions & 6 deletions

File tree

src/docs/changelog.mdx

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ description: Combo Graph Changelog
44
---
55

66
<!-- changelog-pr begin -->
7+
<!-- changelog-pr end -->
8+
9+
710
## 1.6.1 (2025-11-04)
811

912
<!-- Release notes generated using configuration in .github/release.yml at main -->
@@ -14,19 +17,17 @@ description: Combo Graph Changelog
1417

1518
**Full Changelog**: <https://github.com/combo-graph/combo-graph/compare/1.6.0...1.6.1>
1619

17-
<!-- changelog-pr end -->
18-
19-
## 1.6.0 (2025-04-07)
20+
## 1.6.0 (2025-04-04)
2021

2122
##### New Features
2223

23-
* feat: added configurable sync point for WaitNetSync task
24+
* feat: added configurable sync point for WaitNetSync task in [#60](./pull/60)
2425

2526
##### Bug Fixes
2627

27-
* fix: tweak includes to ensure compatibility with non-unity builds
28+
* fix: tweak includes to ensure compatibility with non-unity builds in [#61](./pull/61)
2829

29-
**Full Changelog**: https://github.com/combo-graph/combo-graph/compare/1.5.0...1.6.0
30+
**Full Changelog**: <https://github.com/combo-graph/combo-graph/compare/1.5.0...1.6.0>
3031

3132
## 1.5.0 (2024-11-22)
3233

33.9 KB
Loading

src/docs/pull/60/index.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
---
2+
title: "Pull Request #60"
3+
description: "feat: added configurable sync point for WaitNetSync task"
4+
eleventyNavigation:
5+
parent: Changelog
6+
key: Changelog_PR_60
7+
title: "1.6.0 - PR #60"
8+
excerpt: "feat: added configurable sync point for WaitNetSync task"
9+
layout: layouts/markdown
10+
---
11+
12+
*[on March 14th, 2025](https://github.com/combo-graph/combo-graph/pull/60)*
13+
14+
## feat: added configurable sync point for WaitNetSync task
15+
16+
Sync points and their configuration are accessible via Project Settings, beneath the `Plugins > Combo Graph` category.
17+
18+
The initial values for all the sync points are set to "None" by default.
19+
20+
* None: Means sync point task is not used, and delegate is called immediately
21+
* BothWait: Both Client and Server will wait until the other reaches the node. (Whoever gets their first, waits for the other before continueing)
22+
* OnlyClientWait: Only client will wait for the server signal. Server will signal and immediately continue without waiting to hear from Client.
23+
* OnlyServerWait: Only server will wait for the client signal. Client will signal and immediately continue without waiting to hear from Server.
24+
25+
Upon changing the sync point values in Project Settings, the configuration will be written to `Config/DefaultGame.ini` under the `[/Script/ComboGraph.ComboGraphProjectSettings]` section.
26+
27+
```ini
28+
[/Script/ComboGraph.ComboGraphProjectSettings]
29+
SyncTypeOnEventReceived=None
30+
SyncTypeOnGraphEnd=None
31+
SyncTypeOnComboTransition=None
32+
```
33+
34+
The console command `ComboGraph.DumpSyncSettings` can be used to display in the output log the current values of each settings:
35+
36+
![image](./dc5f40fe-a61d-4c57-a52a-2ea22c562acb.png)
37+

src/docs/pull/61/index.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
title: "Pull Request #61"
3+
description: "fix: tweak includes to ensure compatibility with non-unity builds"
4+
eleventyNavigation:
5+
parent: Changelog
6+
key: Changelog_PR_61
7+
title: "1.6.0 - PR #61"
8+
excerpt: "fix: tweak includes to ensure compatibility with non-unity builds"
9+
layout: layouts/markdown
10+
---
11+
12+
*[on April 4th, 2025](https://github.com/combo-graph/combo-graph/pull/61)*
13+
14+
## fix: tweak includes to ensure compatibility with non-unity builds
15+
16+
Run with `make build UAT_FLAGS="-StrictIncludes"`
17+

0 commit comments

Comments
 (0)