This repository has been archived by the owner on Dec 23, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
release note modification and removed svgs from readme
- Loading branch information
Showing
2 changed files
with
28 additions
and
80 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,67 +1,28 @@ | ||
// TODO: find a better way of loading html into a string | ||
export const LATEST_RELEASE_NOTE = `<h1>Device Simulator Express Release Notes 👩🏾💻 👨🏾💻 (Feb. 27, 2020)</h1> | ||
<p> | ||
Welcome to the first update to the Device Simulator Express! <u>Please feel free to enable our feature flag in | ||
Settings | ||
(under the setting titled “<b>deviceSimulatorExpress.previewMode</b>” in the User settings)</u>. | ||
</p> | ||
<h2>Changes</h2> | ||
<p> | ||
<h3>Fixes (enabled by default):</h3> | ||
<ul> | ||
<li>Enabled support for “from adafruit_circuitplayground import cp” as an import statement for the CPX and | ||
changed | ||
“New File” template to use this format.</li> | ||
<ul> | ||
<li>Aligns better with newer online tutorials. Best practice for adafruit_circuitplayground library imports | ||
changed with <a href="https://github.com/adafruit/Adafruit_CircuitPython_CircuitPlayground/pull/79">this | ||
PR | ||
in Adafruit’s official repo</a>.</li> | ||
</ul> | ||
<li>State for sensor selection persists.</li> | ||
<li>More reliable dependency installation and more informative setup fail information.</li> | ||
<li>Fixes to Serial Monitor for CPX device deployment.</li> | ||
<li>More robust debugger functionality.</li> | ||
<li>Fixed spelling and clarity errors in documentation and pop-up messages.</li> | ||
</ul> | ||
<h3>New features (only available with feature flag enabled):</h3> | ||
<ul> | ||
<li><u>BBC micro:bit simulator and debugger – <i>open up a new micro:bit file, write code for the micro:bit and | ||
test it out!</u></i> | ||
<ul> | ||
<li>Ability to interact with LEDs, buttons, and sensors.</li> | ||
<li>Includes autocompletion and error flagging.</li> | ||
<li>Supports the following:</li> | ||
<ul> | ||
<li>Classes: | ||
<ul> | ||
<li>display</li> | ||
<li>image</li> | ||
<li>accelerometer</li> | ||
<li>button</li> | ||
</ul> | ||
</ul> | ||
<ul> | ||
<li>Global static functions:</li> | ||
<ul> | ||
<li>sleep()</li> | ||
<li>running_time()</li> | ||
<li>temperature()</li> | ||
</ul> | ||
</ul> | ||
</ul> | ||
<ul> | ||
<li>Includes accessibility considerations for simulation.</li> | ||
<ul> | ||
<li>Has ability to use keyboard for button presses and navigation.</li> | ||
</ul> | ||
</ul> | ||
</ul> | ||
</p> | ||
<h2>Upcoming Improvements</h2> | ||
<ul> | ||
<li>Deploying to device on the micro:bit with serial monitor interaction.</li> | ||
</ul> | ||
<br> | ||
<p><b>Happy Hacking! ✨✨🐍🐍🍰</b><br> | ||
      <b><i>- The Device Simulator Express Team</i></b></p>`; | ||
// TODO: find a better way of loading html into a string | ||
export const LATEST_RELEASE_NOTE = `<h1>Device Simulator Express Release Notes 🐍📝 (Mar. 10, 2020)</h1> | ||
<p> | ||
Thanks for using our extension! We're back with some small updates. <u>Again, please feel free to enable our feature | ||
flag in | ||
Settings | ||
(under the setting titled “<b>deviceSimulatorExpress.previewMode</b>” in the User settings)</u>. | ||
</p> | ||
<h2>Changes</h2> | ||
<p> | ||
<h3>Fixes (enabled by default):</h3> | ||
<ul> | ||
<li>Playing sounds on the CPX simulation now works on MacOS! | ||
<ul> | ||
<li>Try it out by using <i>cp.play_file(PATH_TO_FILE)</i>.</li> | ||
</ul> | ||
</li> | ||
<li>Previously, the play button on the simulations would sometimes require two clicks. This was fixed.</li> | ||
<li>The editor can now support unicode characters (such as Japanese).</li> | ||
</ul> | ||
<h3>New features (only available with feature flag enabled):</h3> | ||
<ul> | ||
<li>BBC micro:bit deploy to device and accompanying serial monitor support.</li> | ||
</ul> | ||
</p> | ||
<br> | ||
<p><b>Keep being a programming pro 😎🔋,</b><br> | ||
      <b><i>- The Device Simulator Express Team</i></b></p>`; |