Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
f17d8ac
first commit
Adittya420 Nov 16, 2023
cd3b35e
Styling Done
Bruhbytes Nov 16, 2023
efe6943
Update index.html
Prathamesh-28 Nov 17, 2023
c44b4af
Update BlocklyComponent.jsx
Prathamesh-28 Nov 17, 2023
b6876b7
Zoom bug fixed and timeline removed
Bruhbytes Nov 17, 2023
ab0f808
Final Task2 commit
Bruhbytes Nov 17, 2023
b40b5d8
Merge branch 'wavesurfer'
Bruhbytes Nov 17, 2023
e67fcd9
package jsn modified
VedantGandhi04 Nov 17, 2023
4e74d36
copypasteatanygivenpoint
VedantGandhi04 Nov 21, 2023
80a6bb1
Styling of Waveform
Bruhbytes Nov 22, 2023
ebbf540
Merge branch 'wavesurfer'
Bruhbytes Nov 22, 2023
60c42ba
Merge remote-tracking branch 'techligence/main' into wavesurfer
Bruhbytes Nov 22, 2023
fcb79b7
package.json file modified
Bruhbytes Nov 22, 2023
09fe03c
Merge remote-tracking branch 'techligence/feature/soundtab' into wave…
Bruhbytes Nov 22, 2023
7372697
Merge branch 'wavesurfer'
Bruhbytes Nov 22, 2023
5234499
Sound Blocks added
Adittya420 Nov 22, 2023
52ddddf
deleteButton_added
mok890 Nov 22, 2023
c564e81
Merge branch 'main' of https://github.com/Adittya420/LogicBlocks_Team…
mok890 Nov 22, 2023
80450ed
Added Motion and Control blocks
AynSiddiqui Nov 23, 2023
89f80d1
Added all sound blocks
Adittya420 Nov 24, 2023
76a0482
Added motion,control blocks functionality
AynSiddiqui Dec 5, 2023
47f0544
Default sound added
Bruhbytes Jan 5, 2024
039e7f2
Sound tab state management bug fixed
Bruhbytes Jan 7, 2024
9cdb248
Updated a few more Motion Control blocks, code to be displayed
AynSiddiqui Jan 8, 2024
7c528d5
Midway of completing Blocks functionality
Bruhbytes Jan 8, 2024
7ed904f
Integrated Sound Blocks functionality
Bruhbytes Jan 9, 2024
f378b3c
change by effect and audio player
Adittya420 Jan 10, 2024
c8f918b
Integration of Edited Sound into Workspace
Bruhbytes Jan 10, 2024
53910e1
Merge branch 'main' of https://github.com/Adittya420/LogicBlocks_TeamC
Bruhbytes Jan 11, 2024
259ae90
recording button added
VedantGandhi04 Jan 12, 2024
11e7cc3
Merge branch 'feature/soundtab' into main
VedantGandhi04 Jan 12, 2024
52c2086
Side Panel functionality implemented
Bruhbytes Jan 12, 2024
8e1cc41
SidePanel and Recording audio combined
Bruhbytes Jan 12, 2024
68a382e
Fixed a minor bug
Bruhbytes Jan 12, 2024
a5328b3
Buttons placed in sidebar
mok890 Jan 12, 2024
48fcc36
UI changes
Adittya420 Jan 12, 2024
aa2c5a7
button changes
Adittya420 Jan 12, 2024
c23a234
Filename issue fixed
Bruhbytes Jan 15, 2024
69f24c4
Merge remote-tracking branch 'techligence/feature/motion_control' int…
Bruhbytes Jan 15, 2024
54d8a88
regions issue resolved
mok890 Jan 15, 2024
53d8796
Merge branch 'main' of https://github.com/Adittya420/LogicBlocks_TeamC
mok890 Jan 15, 2024
2c2312e
camera feature added
VedantGandhi04 Feb 8, 2024
e7f6a59
Object Detection added
Adittya420 Feb 16, 2024
29dca60
send obj to blocks
Adittya420 Feb 16, 2024
b4e888c
Changed soundBlock input to dropdown
Bruhbytes Feb 21, 2024
8159b4c
Merge remote-tracking branch 'techligence/main'
Bruhbytes Feb 23, 2024
c735188
SoundBlocks done.
Bruhbytes Feb 23, 2024
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
36 changes: 25 additions & 11 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,14 +1,28 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="./logo.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Logicblocks</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
<script src="path/to/msg/en.js"></script>
</body>

<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="./logo.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />

<!-- Material Icons link -->
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons" />


<title>Logicblocks</title>
</head>

<body>
<div id="root"></div>

<!-- Include Blockly language file (English) -->
<script src="path/to/msg/en.js"></script>

<script type="module" src="/src/main.jsx"></script>
<!-- Include Blockly language file (English) -->
<script src="path/to/msg/en.js"></script>
<script src="https://kit.fontawesome.com/5e342169f3.js" crossorigin="anonymous"></script>
</body>

</html>
Loading