Skip to content

Commit 5950fa5

Browse files
authored
Merge branch 'main' into extension-dogeiscutObject
2 parents 2a7c4e7 + 1c98b84 commit 5950fa5

6 files changed

Lines changed: 106 additions & 50 deletions

File tree

src/lib/Extension/Component.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@
348348
display: flex;
349349
flex-direction: column;
350350
justify-content: space-between;
351-
351+
352352
border-radius: 6px;
353353
}
354354
:global(body.dark-mode) .block {

src/lib/extension-tags.js

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,16 +29,21 @@ export const Tags = [
2929
alias: "Extension Collections",
3030
group: "extensiontypes",
3131
},
32-
33-
// any other misc ones that just need aliases
3432
{
3533
name: "customtype",
3634
alias: "New Block Type",
35+
group: "extensiontypes",
3736
},
37+
38+
// any other misc ones that just need aliases
3839
{
3940
name: "genai",
4041
alias: "Generative AI",
4142
},
43+
{
44+
name: "api",
45+
alias: "API / Other websites",
46+
},
4247
{
4348
name: "ai",
4449
alias: "Algorithms and AI",

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",

src/routes/+page.svelte

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -523,6 +523,8 @@
523523
display: flex;
524524
flex-direction: row;
525525
flex-wrap: wrap;
526+
align-items: stretch;
527+
align-content: flex-start;
526528
justify-content: center;
527529
}
528530
.extension-list[data-filteropen="true"] {

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: [

static/extensions/ObviousAlexC/PenPlus.js

Lines changed: 84 additions & 45 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)