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
Copy file name to clipboardExpand all lines: MIGRATION.md
+25Lines changed: 25 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,31 @@ This document describes the changes that need to be made to migrate from one ver
3
3
4
4
## 8.0 to 9.0
5
5
6
+
### Support / Donation section
7
+
If you used the sponsor/donation mechanism in the `appsettings.json` like this:
8
+
```json
9
+
{
10
+
...
11
+
"KofiToken": "TokenHere",
12
+
"GithubSponsorName": "namehere",
13
+
"PatreonName": "namehere",
14
+
}
15
+
```
16
+
17
+
These moved to their own respective subsection:
18
+
```json
19
+
{
20
+
"SupportMe": {
21
+
"KofiToken": "TokenHere",
22
+
"GithubSponsorName": "namehere",
23
+
"PatreonName": "namehere",
24
+
"ShowUnderBlogPost": true,
25
+
}
26
+
}
27
+
```
28
+
29
+
The `ShowUnderBlogPost` is neede to indicate that the part will be shown under each blog post. We also added more possibilities to customize this: Checkout the [Donation section in the documentation](docs/Donations/Readme.md).
30
+
6
31
### Shortcodes
7
32
Shortcodes, a form a templating that can be adjusted dynamically, are introduced in this version. The following table has to be added to the database:
0 commit comments