Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
5c77964
Start progress on extra timers ext
Steve0Greatness Apr 11, 2025
2c7d429
Add blocks
Steve0Greatness Apr 11, 2025
8743a1f
Add Extra Timers v1
Steve0Greatness Apr 23, 2025
dc90dce
Add extension metadata
Steve0Greatness Apr 23, 2025
ce0f54c
Make background non transparent
Steve0Greatness Apr 23, 2025
140bb6c
Fix comment
Steve0Greatness Apr 23, 2025
c8ce462
Correction: TurboWarp incompatible.
Steve0Greatness Apr 26, 2025
1ffef10
Hide blocks if no timers
Steve0Greatness Apr 28, 2025
5873d01
Refresh timers when updated
Steve0Greatness Apr 28, 2025
2386db4
???
Steve0Greatness Apr 28, 2025
a750872
Remove "name" field from Timer constructor
Steve0Greatness Apr 28, 2025
3c56e02
Major refactor around variables
Steve0Greatness Apr 29, 2025
3681701
Bug Fixes
Steve0Greatness Apr 29, 2025
5b67fcb
Improvement on the old timers image
Steve0Greatness Apr 29, 2025
b5a096e
Fix scoping timers.
Steve0Greatness Apr 30, 2025
3daff9e
Dull colors a bit
Steve0Greatness Apr 30, 2025
fce0275
Remove the log logging the variable being processed.
Steve0Greatness Apr 30, 2025
b27be8f
Recenter uid clone around cryptographic numbers
Steve0Greatness Apr 30, 2025
c37affa
Fixes and toggle block
Steve0Greatness Apr 30, 2025
9d48a7d
Add color for blocks
Steve0Greatness May 2, 2025
f7df9fc
Add menu icon
Steve0Greatness May 2, 2025
a45badb
Set monitor value color
Steve0Greatness May 3, 2025
7a9db49
Add contrast to timers ext image and rename menus
Steve0Greatness May 6, 2025
efda422
Update extra timers thumbnail based on critique
Steve0Greatness May 6, 2025
e2792dd
Merge branch 'main' into timers
Steve0Greatness May 6, 2025
87604dd
Use nicer reduction strategy.
Steve0Greatness May 6, 2025
553a6c7
Bugfix: Timers would add time if paused more than once.
Steve0Greatness May 9, 2025
a16071a
Grammar: Timers for this sprite
Steve0Greatness May 9, 2025
5250a22
Bugfix: Copy more from XML-escape util
Steve0Greatness May 9, 2025
809239d
Merge branch 'main' into timers
Steve0Greatness May 18, 2025
adcc22a
Add switches and improve for the new PM update
Steve0Greatness May 30, 2025
eddaf88
Merge branch 'timers' of https://github.com/Steve0Greatness/pmexts in…
Steve0Greatness May 30, 2025
fd78d7b
Update extra timers to newest commit IG
Steve0Greatness Jun 7, 2025
2c909d8
Fix the undefined
Steve0Greatness Jun 7, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 28 additions & 20 deletions src/lib/extensions.js
Original file line number Diff line number Diff line change
Expand Up @@ -571,24 +571,32 @@ export default [
notes: "Gallery banner by Dillon",
},
{
name: "Project Interfaces",
description: "Effortlessly create intuitive graphical user interfaces in your projects.",
code: "LordCat0/ProjectInterfaces.js",
banner: "LordCat0/ProjectInterfaces.png",
creator: "LordCat0",
creatorAlias: "Lord cat",
notes: "Gallery banner by Dillon",
isGitHub: true,
},
{
name: "Block AI",
description: "An AI powered chat bot to help you code in your projects.",
code: "TheShovel/blockAI.js",
banner: "TheShovel/thumbnail-blockAI.png",
creator: "TheShovel",
creatorAlias: "TheShovel",
isGitHub: true,
unstable: true,
unstableReason: "The AI model can generate inaccurate output and broken syntax!",
},
name: "Project Interfaces",
description: "Effortlessly create intuitive graphical user interfaces in your projects.",
code: "LordCat0/ProjectInterfaces.js",
banner: "LordCat0/ProjectInterfaces.png",
creator: "LordCat0",
creatorAlias: "Lord cat",
notes: "Gallery banner by Dillon",
isGitHub: true,
},
{
name: "Block AI",
description: "An AI powered chat bot to help you code in your projects.",
code: "TheShovel/blockAI.js",
banner: "TheShovel/thumbnail-blockAI.png",
creator: "TheShovel",
creatorAlias: "TheShovel",
isGitHub: true,
unstable: true,
unstableReason: "The AI model can generate inaccurate output and broken syntax!",
},
{
name: "Extra Timers",
description: "Allows for the creation and management of additional timer blocks.",
code: "steve0greatness/timers.js",
banner: "steve0greatness/timers.svg",
creator: "Steve0Greatness",
isGitHub: true,
},
];
Loading