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: addons/debugger/addon.json
+15-4Lines changed: 15 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,13 @@
1
1
{
2
2
"name": "Debugger",
3
-
"description": "Adds a new \"debugger\" window to the editor. Allows for logging into the \"Logs\" tab of the debugger window using the \"log\", \"warn\" and \"error\" blocks. The \"breakpoint\" block will pause the project when executed. All running stacks of blocks can be viewed in the \"Threads\" tab of the debugger window, and when paused the \"Step\" button can be used to execute the next block. A graph of frames per second and number of clones can be viewed in the \"Performance\" tab.",
3
+
"description": "Adds a new \"debugger\" window to the editor. Allows for logging into the \"Logs\" tab of the debugger window using the \"log\", \"warn\" and \"error\" blocks. The \"breakpoint\" block will pause the project when executed. All running stacks of blocks can be viewed in the \"Threads\" tab of the debugger window, and when paused the \"Step\" button can be used to execute the next block. A graph of frames per second and number of clones can be viewed in the \"Performance\" tab. The \"is it in editor?\" block allows to check if the project is running in the editor.",
4
+
"info": [
5
+
{
6
+
"type": "notice",
7
+
"text": "Debug blocks only work for Scratch Addons users with this enabled. The \"is in editor?\" block cannot therefore it cannot be used as an anti-cheat method.",
8
+
"id": "debuggerBlocks"
9
+
}
10
+
],
4
11
"credits": [
5
12
{
6
13
"name": "Tacodiva",
@@ -17,6 +24,10 @@
17
24
},
18
25
{
19
26
"name": "retronbv"
27
+
},
28
+
{
29
+
"name": "Valmontechno",
30
+
"link": "https://github.com/Valmontechno"
20
31
}
21
32
],
22
33
"userscripts": [
@@ -84,9 +95,9 @@
84
95
"tags": ["editor", "codeEditor", "featured"],
85
96
"versionAdded": "1.16.0",
86
97
"latestUpdate": {
87
-
"version": "1.33.0",
88
-
"temporaryNotice": "Graph animation is now disabled by default to increase performance. You can re-enable it if you want.",
89
-
"newSettings": ["fancy_graphs"]
98
+
"version": "1.43.0",
99
+
"temporaryNotice": "New available block: \"is in editor?\"",
0 commit comments