Skip to content

Commit 9a33a7c

Browse files
committed
Update android change log
1 parent be0a4e3 commit 9a33a7c

File tree

3 files changed

+37
-1
lines changed

3 files changed

+37
-1
lines changed

_build/pages/android_changelog.markdown

+19
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,25 @@ Android Changelog
55
[Home](/) > [Articles](/pages/articles.html)
66
:::
77

8+
**12.28 (22 March 2025)**
9+
10+
- Fix regressions with web-ui and GPS api handling.
11+
- Fix issues with PLAY command.
12+
- Fix web UI regression
13+
- New App icon
14+
- Implemented USB support for CDC/Serial communications
15+
16+
```
17+
import android
18+
usb = android.openUsbSerial(0x16C0)
19+
while 1
20+
input k
21+
n = usb.send(k);
22+
print "sent "; n
23+
print usb.receive()
24+
wend
25+
```
26+
827
**12.27 (25 April 2024)**
928

1029
- Add new function android.request

pages/android_changelog.html

+16
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,22 @@ <h1 id="android-changelog">Android Changelog</h1>
4242
<p><a href="/">Home</a> &gt; <a
4343
href="/pages/articles.html">Articles</a></p>
4444
</div>
45+
<p><strong>12.28 (22 March 2025)</strong></p>
46+
<ul>
47+
<li>Fix regressions with web-ui and GPS api handling.</li>
48+
<li>Fix issues with PLAY command.</li>
49+
<li>Fix web UI regression</li>
50+
<li>New App icon</li>
51+
<li>Implemented USB support for CDC/Serial communications</li>
52+
</ul>
53+
<pre><code>import android
54+
usb = android.openUsbSerial(0x16C0)
55+
while 1
56+
input k
57+
n = usb.send(k);
58+
print &quot;sent &quot;; n
59+
print usb.receive()
60+
wend</code></pre>
4561
<p><strong>12.27 (25 April 2024)</strong></p>
4662
<ul>
4763
<li>Add new function android.request</li>

reference/sbref.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
SmallBASIC Language reference [13/03/2025]
1+
SmallBASIC Language reference [22/03/2025]
2+
23

34
░██████╗███╗░░░███╗░█████╗░██╗░░░░░██╗░░░░░██████╗░░█████╗░░██████╗██╗░█████╗░
45
██╔════╝████╗░████║██╔══██╗██║░░░░░██║░░░░░██╔══██╗██╔══██╗██╔════╝██║██╔══██╗

0 commit comments

Comments
 (0)