Skip to content

Commit f3b5656

Browse files
author
github-actions-bot
committed
Updates
1 parent 02d0b3a commit f3b5656

1,031 files changed

Lines changed: 26119 additions & 150811 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ To test locally with a beta version of Blockly, go to the root of blockly-sample
1919

2020
### One-click
2121

22-
Run the [Update GitHub Pages Action](https://github.com/google/blockly-samples/actions/workflows/update_gh_pages.yml) from either the `google/blockly-samples` repo or your fork to deploy to that location automatically. Click the "Run workflow" button to start it. After this workflow finishes, GitHub's built-in "build and deploy" action will automatically start. When that finishes, the updated site will be live.
22+
Run the [Update GitHub Pages Action](https://github.com/RaspberryPiFoundation/blockly-samples/actions/workflows/update_gh_pages.yml) from either the `RaspberryPiFoundation/blockly-samples` repo or your fork to deploy to that location automatically. Click the "Run workflow" button to start it. After this workflow finishes, GitHub's built-in "build and deploy" action will automatically start. When that finishes, the updated site will be live.
2323

2424
Note: Updating GitHub Pages is done automatically when publishing plugins through the Publish action.
2525

@@ -50,4 +50,4 @@ Note: Updating GitHub Pages is done automatically when publishing plugins throug
5050
npm run deploy:upstream
5151
```
5252
53-
Test at https://google.github.io/blockly-samples/
53+
Test at https://raspberrypifoundation.github.io/blockly-samples/

_index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ <h3 id="workspace">
191191
Workspace
192192
</h3>
193193
<p>
194-
These plugins add new features and functionality to the Blockly workspace.
194+
These plugins add new features and functionality to the Blockly workspace. Learn more about <a href="https://developers.google.com/blockly/guides/configure/web/configuration_struct">creating a workspace</a>.
195195
</p>
196196
<div class="grid">
197197
<a class="card" href="plugins/workspace-backpack/test/index.html">
@@ -361,7 +361,7 @@ <h3 id="toolbox">
361361
Toolbox
362362
</h3>
363363
<p>
364-
These plugins add new features and functionality to the Blockly toolbox. Learn more about <a href="https://developers.google.com/blockly/guides/configure/web/toolbox">customizing the toolbox</a>.
364+
These plugins add new features and functionality to the Blockly toolbox. Learn more about <a href="https://developers.google.com/blockly/guides/configure/web/toolboxes/toolbox">customizing the toolbox</a>.
365365
</p>
366366
<div class="grid">
367367
<a class="card" href="plugins/typed-variable-modal/test/index.html">
@@ -417,7 +417,7 @@ <h3 id="themes">
417417
Themes
418418
</h3>
419419
<p>
420-
Themes let you customize the visual appearance of Blockly. Learn more about <a href="https://developers.google.com/blockly/guides/configure/web/appearance/overview">creating custom themes</a>.
420+
Themes let you customize the visual appearance of Blockly. Learn more about <a href="https://developers.google.com/blockly/guides/configure/web/appearance/themes">creating custom themes</a>.
421421
</p>
422422
<div class="grid">
423423
<a class="card vertical" href="plugins/theme-dark/test/index.html">

examples/backpack-demo/index.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111
<!-- END INJECTED HEADER -->
1212
<meta charset="utf-8" />
1313
<title>Blockly Backpack</title>
14-
<script src="./node_modules/blockly/blockly_compressed.js"></script>
15-
<script src="./node_modules/blockly/blocks_compressed.js"></script>
16-
<script src="./node_modules/blockly/msg/en.js"></script>
17-
<script src="./node_modules/@blockly/workspace-backpack/dist/index.js"></script>
14+
<script src="../lib/blockly/blockly_compressed.js"></script>
15+
<script src="../lib/blockly/blocks_compressed.js"></script>
16+
<script src="../lib/blockly/msg/en.js"></script>
17+
<script src="../lib/@blockly/workspace-backpack/dist/index.js"></script>
1818
<script src="./notification_backpack.js"></script>
1919
<script src="./index.js"></script>
2020
<style>
@@ -43,7 +43,7 @@
4343
<div class="subtitle">Two Blockly instances with a shared backpack.</div>
4444
</div>
4545

46-
<a href="https://github.com/google/blockly-samples/blob/master/examples/backpack-demo" class="button" target="_blank">View code</a>
46+
<a href="https://github.com/raspberrypifoundation/blockly-samples/blob/main/examples/backpack-demo" class="button" target="_blank">View code</a>
4747
</nav>
4848
<!-- END NAV BAR -->
4949
<main id="main" class="has-tabs">
@@ -75,15 +75,15 @@
7575
<ul>
7676
<li><a target="_blank" href="https://developers.google.com/blockly/guides/overview/">Developer Docs</a></li>
7777
<li><a target="_blank" href="https://blocklycodelabs.dev/">Codelabs</a></li>
78-
<li><a target="_blank" href="https://google.github.io/blockly-samples/developer-tools/index.html">Developer
78+
<li><a target="_blank" href="https://raspberrypifoundation.github.io/blockly-samples/developer-tools/index.html">Developer
7979
Tools</a></li>
8080
</ul>
8181
</div>
8282
<div class="link-list">
8383
<label>Github</label>
8484
<ul>
85-
<li><a target="_blank" href="https://github.com/google/blockly/">Blockly Sources</a></li>
86-
<li><a target="_blank" href="https://github.com/google/blockly-samples/">Blockly Samples</a></li>
85+
<li><a target="_blank" href="https://github.com/raspberrypifoundation/blockly/">Blockly Sources</a></li>
86+
<li><a target="_blank" href="https://github.com/raspberrypifoundation/blockly-samples/">Blockly Samples</a></li>
8787
</ul>
8888
</div>
8989
<div class="link-list">

examples/backpack-demo/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,13 +188,13 @@ const toolbox = {
188188
function init() {
189189
// Inject primary workspace.
190190
const primaryWorkspace = Blockly.inject('primaryDiv', {
191-
media: './node_modules/blockly/media/',
191+
media: '../lib/blockly/media/',
192192
toolbox: toolbox,
193193
trashcan: true,
194194
});
195195
// Inject secondary workspace.
196196
const secondaryWorkspace = Blockly.inject('secondaryDiv', {
197-
media: './node_modules/blockly/media/',
197+
media: '../lib/blockly/media/',
198198
toolbox: toolbox,
199199
trashcan: true,
200200
});

examples/backpack-demo/node_modules/@blockly/workspace-backpack/dist/index.js

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)