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: streamerbot/4.changelogs/v1.0.0.md
+19Lines changed: 19 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,6 +24,14 @@ badge: Alpha
24
24
* Add new Triggers for `Global Variable Created` and `Global Variable Deleted`
25
25
* Add new sub-actions to add `YouTube` and `Trovo` broadcaster information
26
26
* Add support for `7TV Zero Width` emotes
27
+
* Add new inline function, `$parse()$`
28
+
* Add ability to change the `Backup Folder` location
29
+
* Add ability to manually create a `Backup`
30
+
* Add `Auto-Save`, this will happen every **5** minutes
31
+
* Add a new context menu item in `Global Variable Viewer` for `Persisted` and `Non-Persisted` user tabs to delete the selected variable for **all** users
32
+
* Add a warning to `Import`, when the `Import` contains an `Execute C# Code` sub-action
33
+
* Add new `Default` settings for `Actions` and `Commands`
34
+
* Add ability to add a path mapping to the `HTTP Server` allowing for hosting files
27
35
::
28
36
29
37
## Updates
@@ -40,6 +48,7 @@ badge: Alpha
40
48
* Application Crash messages will only show once now, instead of doing a solitaire win move
41
49
* The built in `!quote` command has been removed and replaced with new sub-actions
42
50
* How to favourite/unfavourite a Trigger or Sub-Action has changed, you now do this directly on a Sub-Action or Trigger that you've added
51
+
* Move `HTTP Get Methods` to `/api/`
43
52
::
44
53
45
54
## Fixes
@@ -64,12 +73,22 @@ Logic If/Else has received a power-up, no longer do you need to specify an actio
64
73
New with this release is a new Logic sub-action, the Switch Case. Same applies to this sub-action, add your logic switch, and you can add case groups, which can in turn have sub-actions nested in them
65
74
#### Logic While
66
75
New with this release is the `Logic While` sub-action. Yes, that means you can finally perform loops within a single action without needing C#!
76
+
### Inline Function,
77
+
A new function has been added, `$parse()$`, that will allow for a 2nd level of variable parsing.
78
+
79
+
This would be of benefit for the newly added `Logic While` sub-action.
80
+
81
+
As an example, ff you are using the global `~idx~` as your test variable, and incrementing this within the while loop. You would then be able to use the inline method like `$parse(rawInput~idx~)$` which would internally parse to `%rawInput#%`, and finally would return the value of the `%rawInput#%` argument. In this example, `rawInput` is the argument you're wanting to get an indexed position of, this is typically used in most `Message` based triggers
67
82
### Twitch
68
83
Twitch PubSub is being deprecated in April, so that means it's finally time to remove PubSub from the connection list for the Broadcaster Account.
69
84
70
85
What this means, the Ad Mid Roll sub-action no longer exists (to this day, still really don't know what it did), Channel Point Community Goals will cease to work until they're added to EventSub, and the Viewer count pulse has been updated to use other methods.
71
86
### Quotes
72
87
Quotes got a small overhaul, the built in `!quote` command is no more, it has been replaced with various sub-actions, so you now have full control over adding, deleting quotes by any means.
88
+
### HTTP Server
89
+
You read that right, you can now serve **local files** with the `HTTP Server`! Simply add a `Path Mapping` to the `HTTP Server` settings, and you can access any file/folder from that `Mapping`.
90
+
91
+
The current methods are being moved to an `/api/` prefix, and they will continue to work for now but consider them deprecated, and will eventually be removed. Be sure to update any usages to use the `/api/` equivalent.
73
92
### C# Changes
74
93
The following C# methods have been updated to account for the new `useBot` and `fallback` options.
0 commit comments