|
1 |
| -// TODO: find a better way of loading html into a string |
2 |
| -export const LATEST_RELEASE_NOTE = `<h1>Device Simulator Express Release Notes 👩🏾💻 👨🏾💻 (Feb. 27, 2020)</h1> |
3 |
| -<p> |
4 |
| - Welcome to the first update to the Device Simulator Express! <u>Please feel free to enable our feature flag in |
5 |
| - Settings |
6 |
| - (under the setting titled “<b>deviceSimulatorExpress.previewMode</b>” in the User settings)</u>. |
7 |
| -</p> |
8 |
| -<h2>Changes</h2> |
9 |
| -<p> |
10 |
| - <h3>Fixes (enabled by default):</h3> |
11 |
| - <ul> |
12 |
| - <li>Enabled support for “from adafruit_circuitplayground import cp” as an import statement for the CPX and |
13 |
| - changed |
14 |
| - “New File” template to use this format.</li> |
15 |
| - <ul> |
16 |
| - <li>Aligns better with newer online tutorials. Best practice for adafruit_circuitplayground library imports |
17 |
| - changed with <a href="https://github.com/adafruit/Adafruit_CircuitPython_CircuitPlayground/pull/79">this |
18 |
| - PR |
19 |
| - in Adafruit’s official repo</a>.</li> |
20 |
| - </ul> |
21 |
| - <li>State for sensor selection persists.</li> |
22 |
| - <li>More reliable dependency installation and more informative setup fail information.</li> |
23 |
| - <li>Fixes to Serial Monitor for CPX device deployment.</li> |
24 |
| - <li>More robust debugger functionality.</li> |
25 |
| - <li>Fixed spelling and clarity errors in documentation and pop-up messages.</li> |
26 |
| - </ul> |
27 |
| - <h3>New features (only available with feature flag enabled):</h3> |
28 |
| - <ul> |
29 |
| - <li><u>BBC micro:bit simulator and debugger – <i>open up a new micro:bit file, write code for the micro:bit and |
30 |
| - test it out!</u></i> |
31 |
| - <ul> |
32 |
| - <li>Ability to interact with LEDs, buttons, and sensors.</li> |
33 |
| - <li>Includes autocompletion and error flagging.</li> |
34 |
| - <li>Supports the following:</li> |
35 |
| - <ul> |
36 |
| - <li>Classes: |
37 |
| - <ul> |
38 |
| - <li>display</li> |
39 |
| - <li>image</li> |
40 |
| - <li>accelerometer</li> |
41 |
| - <li>button</li> |
42 |
| - </ul> |
43 |
| - </ul> |
44 |
| - <ul> |
45 |
| - <li>Global static functions:</li> |
46 |
| - <ul> |
47 |
| - <li>sleep()</li> |
48 |
| - <li>running_time()</li> |
49 |
| - <li>temperature()</li> |
50 |
| - </ul> |
51 |
| - </ul> |
52 |
| - </ul> |
53 |
| - <ul> |
54 |
| - <li>Includes accessibility considerations for simulation.</li> |
55 |
| - <ul> |
56 |
| - <li>Has ability to use keyboard for button presses and navigation.</li> |
57 |
| - </ul> |
58 |
| - </ul> |
59 |
| - </ul> |
60 |
| -</p> |
61 |
| -<h2>Upcoming Improvements</h2> |
62 |
| -<ul> |
63 |
| - <li>Deploying to device on the micro:bit with serial monitor interaction.</li> |
64 |
| -</ul> |
65 |
| -<br> |
66 |
| -<p><b>Happy Hacking! ✨✨🐍🐍🍰</b><br> |
67 |
| -       <b><i>- The Device Simulator Express Team</i></b></p>`; |
| 1 | +// TODO: find a better way of loading html into a string |
| 2 | +export const LATEST_RELEASE_NOTE = `<h1>Device Simulator Express Release Notes 🐍📝 (Mar. 10, 2020)</h1> |
| 3 | +<p> |
| 4 | + Thanks for using our extension! We're back with some small updates. <u>Again, please feel free to enable our feature |
| 5 | + flag in |
| 6 | + Settings |
| 7 | + (under the setting titled “<b>deviceSimulatorExpress.previewMode</b>” in the User settings)</u>. |
| 8 | +</p> |
| 9 | +<h2>Changes</h2> |
| 10 | +<p> |
| 11 | + <h3>Fixes (enabled by default):</h3> |
| 12 | + <ul> |
| 13 | + <li>Playing sounds on the CPX simulation now works on MacOS! |
| 14 | + <ul> |
| 15 | + <li>Try it out by using <i>cp.play_file(PATH_TO_FILE)</i>.</li> |
| 16 | + </ul> |
| 17 | + </li> |
| 18 | + <li>Previously, the play button on the simulations would sometimes require two clicks. This was fixed.</li> |
| 19 | + <li>The editor can now support unicode characters (such as Japanese).</li> |
| 20 | + </ul> |
| 21 | + <h3>New features (only available with feature flag enabled):</h3> |
| 22 | + <ul> |
| 23 | + <li>BBC micro:bit deploy to device and accompanying serial monitor support.</li> |
| 24 | + </ul> |
| 25 | +</p> |
| 26 | +<br> |
| 27 | +<p><b>Keep being a programming pro 😎🔋,</b><br> |
| 28 | +       <b><i>- The Device Simulator Express Team</i></b></p>`; |
0 commit comments