Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
5f13610
Add a tabs component and sample menu and tabs
alan412 May 16, 2025
8ac5391
Add a tabs component and sample menu and tabs
alan412 May 16, 2025
e16a884
Merge branch 'pr_tabs' of github.com:alan412/systemcore-blocks-interf…
alan412 May 19, 2025
0f5ecda
Updated npm packages
alan412 Jun 1, 2025
2e78c29
Add in Logo
alan412 Jun 2, 2025
7b7d5b8
Change to simply say Code
alan412 Jun 2, 2025
df323af
style
alan412 Jun 2, 2025
215efbe
Move Menu to own component
alan412 Jun 6, 2025
034ecbf
remove footer
alan412 Jun 6, 2025
f20f0ce
Adding manage
alan412 Jun 6, 2025
2f7425c
Only search current project
alan412 Jun 6, 2025
90fa6f8
only search current project
alan412 Jun 6, 2025
f2c2fe2
Header now shows project and tabs update correctly
alan412 Jun 6, 2025
3037506
add find module in project
alan412 Jun 6, 2025
de20cd6
Make it so you can change tabs from menu
alan412 Jun 6, 2025
0d57104
add a tab back if it is selected but has been closed
alan412 Jun 6, 2025
d63345b
Major work to add the add tab dialog
alan412 Jun 13, 2025
2c902ef
remove warnings
alan412 Jun 13, 2025
ab5053f
cleanup
alan412 Jun 13, 2025
0b00817
preserve order, force re-rendering when newly shown
alan412 Jun 13, 2025
70b722c
Add button label
alan412 Jun 13, 2025
feb86e2
reformatted
alan412 Jun 13, 2025
09f0bbe
Remove unnecessary from ModuleNameComponent
alan412 Jun 13, 2025
e54b5a4
removed unused
alan412 Jun 13, 2025
7451f04
removed comment no longer needed
alan412 Jun 13, 2025
5785939
rename is functional
alan412 Jun 13, 2025
2c0ab3a
Fix problem with project not updating
alan412 Jun 13, 2025
2a026dc
Copy working
alan412 Jun 13, 2025
4ffc5c5
Fixed problem with delete
alan412 Jun 13, 2025
508e2e0
First pass at manage...
alan412 Jun 13, 2025
5958237
Cleanup
alan412 Jun 13, 2025
850fc68
Separate File and Project management
alan412 Jun 13, 2025
e1494b9
Add Select, cleanup
alan412 Jun 13, 2025
ec074f2
Change to show class name for Project
alan412 Jun 13, 2025
3981d3f
Make it so you can't delete all of them
alan412 Jun 13, 2025
aad9119
get rid of unused files
alan412 Jun 13, 2025
260a6f7
remove some warnings
alan412 Jun 13, 2025
53ad6ad
Asked Copilot to change to follow Google coding guidelines
alan412 Jun 14, 2025
7280962
add disabled option to menu
alan412 Jun 19, 2025
a676054
Fix some loopholes where project wasn't being updated
alan412 Jun 20, 2025
5d8333f
Add about dialog
alan412 Jun 20, 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
19,614 changes: 19,614 additions & 0 deletions oss-attribution/attribution.txt

Large diffs are not rendered by default.

4,646 changes: 4,646 additions & 0 deletions oss-attribution/licenseInfos.json

Large diffs are not rendered by default.

5,546 changes: 2,975 additions & 2,571 deletions package-lock.json

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "systemcore-blockly",
"name": "SystemCore Blocks",
"version": "0.1.0",
"homepage": "/blocks",
"private": true,
Expand Down Expand Up @@ -47,6 +47,7 @@
]
},
"devDependencies": {
"@electrovir/oss-attribution-generator": "^2.0.0",
"@shadcn/ui": "^0.0.4",
"@types/node": "^22.10.0",
"@types/react-syntax-highlighter": "^15.5.13",
Expand All @@ -57,6 +58,7 @@
"tailwindcss": "^3.4.15",
"typescript-strict-plugin": "^2.4.4",
"vite": "^6.0.0",
"vite-plugin-static-copy": "^3.0.2",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^3.0.5",
"vitest-browser-react": "^0.1.0"
Expand Down
Binary file added public/FIRST_HorzRGB_reverse.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/FIRST_Horz_RGB.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 13 additions & 1 deletion public/locales/en/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,17 @@
"project_delete": "Delete Project",
"project_rename": "Rename Project",
"project_copy": "Copy Project",
"fail_list_modules": "Failed to load the list of modules."
"fail_list_modules": "Failed to load the list of modules.",
"mechanism": "Mechanism",
"opmode": "OpMode",
"class_rule_description": "No spaces are allowed in the name. Each word in the name should start with a capital letter.",
"example_mechanism": "For example: GamePieceShooter",
"example_opmode": "For example: AutoParkAndShoot",
"example_project": "For example: WackyWheelerRobot",
"addTabDialog": {
"title": "Add Tab",
"newItemPlaceholder": "Add Module",
"search": "Search..."

}
}
Loading