-
Notifications
You must be signed in to change notification settings - Fork 28
/
announcements.json
48 lines (48 loc) · 2.01 KB
/
announcements.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[
{
"explain": "This is an example announcement that won't ever be shown because of the maxVersion value. The *Explain properties are just for this example. To use the default value, either don't specify the property or set it to null.",
"id": "a-unique-id",
"idExplain": "A unique identifier for the announcement (required).",
"message": "This is an announcement message",
"messageExplain": "A hardcoded message or an i18n key for translation (required).",
"type": "warning",
"typeExplain": "info, warning or error. Defaults to info.",
"platform": ["linux", "mac", "win"],
"platformExplain": "Platforms to target. Defaults to all platforms.",
"minVersion": "24.11.1",
"minVersionExplain": "Minimum target version for the announcement. Defaults to all versions.",
"maxVersion": "0.0.0",
"maxVersionExplain": "Maximum target version for the announcement. Defaults to all versions.",
"scope": ["obs"],
"scopeExplain": "Show only to the specified scope(s). Defaults to all scopes.",
"persistent": true,
"persistentExplain": "If true, show at every startup. If false, show once per congregation. Defaults to false.",
"actions": ["docs", "repo", "update"],
"actionsExplain": "Action buttons to show. Defaults to no actions."
},
{
"id": "new-update",
"message": "update-available",
"type": "info",
"maxVersion": "24.11.4",
"persistent": true,
"actions": ["update"]
},
{
"id": "new-update",
"message": "update-available",
"type": "info",
"platform": ["win"],
"minVersion": "24.11.5",
"maxVersion": "24.12.0",
"persistent": true,
"actions": ["update"]
},
{
"id": "media-window-title-update",
"message": "Starting in v25.1.0, the title of the media window will change. If OBS Studio is set to capture the media window by title, it may stop working. Be prepared to update your OBS Studio window capture settings after the update.",
"type": "warning",
"minVersion": "24.12.1",
"scope": ["obs"]
}
]