Skip to content

Commit 2606ebe

Browse files
Add tags and hide old format numbers (#494)
* add tags and hide old format numbers * Update extensions.js --------- Co-authored-by: JeremyGamer13 <69337718+JeremyGamer13@users.noreply.github.com>
1 parent 7941c69 commit 2606ebe

2 files changed

Lines changed: 12 additions & 2 deletions

File tree

src/lib/extensions.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -220,6 +220,7 @@ export default [
220220
creator: "qxsck",
221221
isGitHub: true,
222222
},
223+
/* Use the TurboWarp version. This one is outdated and broken.
223224
{
224225
name: "Format Numbers",
225226
description: "Format large numbers into AD standard, fixed decimal, comma separated, or scientific notation.",
@@ -229,6 +230,7 @@ export default [
229230
isGitHub: true,
230231
notes: "Gallery banner by Dillon",
231232
},
233+
*/
232234
{
233235
name: "Date Format",
234236
description: "Manage, format and compare dates.",
@@ -253,6 +255,7 @@ export default [
253255
banner: "DogeisCut/YetAnotherStringExtension.svg",
254256
creator: "DogeisCut",
255257
isGitHub: true,
258+
tags: ["strings", "builder", "small", "text", "utility"]
256259
},
257260
{
258261
name: "Regular Expressions",
@@ -261,6 +264,7 @@ export default [
261264
banner: "DogeisCut/dogeiscutRegularExpressions.svg",
262265
creator: "DogeisCut",
263266
isGitHub: true,
267+
tags: ["customtype", "strings", "regex", "text", "utility"]
264268
},
265269
{
266270
name: "Sets",
@@ -269,6 +273,7 @@ export default [
269273
banner: "DogeisCut/dogeiscutSet.svg",
270274
creator: "DogeisCut",
271275
isGitHub: true,
276+
tags: ["customtype", "sets", "data", "utility"]
272277
},
273278
{
274279
name: "Blobs",
@@ -384,6 +389,7 @@ export default [
384389
banner: "DogeisCut/BeepBoxPlayer.svg",
385390
creator: "DogeisCut",
386391
isGitHub: true,
392+
tags: ["api", "music", "sounds", "ultrabox", "jummbox", "beepbox"]
387393
},
388394
{
389395
name: "Update File (Direct Access)",
@@ -543,6 +549,7 @@ export default [
543549
isGitHub: true,
544550
documentation: "Resolution",
545551
notes: "Gallery banner by Dillon",
552+
tags: ["graphics", "utility"]
546553
},
547554
{
548555
name: "Device Motion",

static/extensions/DogeisCut/FormatNumbers.js

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
1-
// Name: Format Numbers
1+
// Name: Format Numbers (OUTDATED)
22
// ID: dogeiscutformatnumbers
33
// Description: Format large numbers into AD standard, fixed decimal, comma separated, or scientific notation.
44
// By: DogeisCut <https://scratch.mit.edu/users/dogeiscut/>
55
// License: MIT
66

7+
// This version of format numbers will no longer be maintained in favor of just using the TurboWarp version.
8+
// Thus, it has been hidden.
9+
710
// Version V.2.0.2
811

912
// TODO:
@@ -175,7 +178,7 @@
175178
getInfo() {
176179
return {
177180
id: "formatNumbers",
178-
name: Scratch.translate("Format Numbers"),
181+
name: Scratch.translate("Format Numbers (OUTDATED)"),
179182
color1: "#419873",
180183
color2: "#4CA981",
181184
blocks: [

0 commit comments

Comments
 (0)