Skip to content

Commit 11e80a9

Browse files
committed
Updated android change log
1 parent e3ae298 commit 11e80a9

File tree

3 files changed

+21
-5
lines changed

3 files changed

+21
-5
lines changed

_build/pages/android_changelog.markdown

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ Android Changelog
55
[Home](/) > [Articles](/pages/articles.html)
66
:::
77

8+
**12.28 (26 June 2025)**
9+
10+
- Implemented experimental Bluetooth support
11+
- Updated SOUND to avoid clicks
12+
- Updated USB API to allow setting baud rate and timeout
13+
- Updated android.speak() to take additional non-string args
14+
- Update PEN(3) handling
15+
816
**12.28 (22 March 2025)**
917

1018
- Fix regressions with web-ui and GPS api handling.

pages/android_changelog.html

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,14 @@ <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 (26 June 2025)</strong></p>
46+
<ul>
47+
<li>Implemented experimental Bluetooth support</li>
48+
<li>Updated SOUND to avoid clicks</li>
49+
<li>Updated USB API to allow setting baud rate and timeout</li>
50+
<li>Updated android.speak() to take additional non-string args</li>
51+
<li>Update PEN(3) handling</li>
52+
</ul>
4553
<p><strong>12.28 (22 March 2025)</strong></p>
4654
<ul>
4755
<li>Fix regressions with web-ui and GPS api handling.</li>

pages/guide.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -119,15 +119,15 @@ <h1 id="smallbasic-user-guide">SmallBASIC User Guide</h1>
119119
<li><a href="#Parameters">Parameters</a></li>
120120
<li><a href="#ExitAFunctionOrSubroutine">Exit a function or
121121
subroutine</a></li>
122-
<li><a href="#SingleLineFunctions">Single-line Functions</a></li>
122+
<li><a href="#SingleLineFunctions">Single-Line Functions</a></li>
123123
<li><a href="#UsingLocalVariables">Using Local Variables</a></li>
124124
<li><a href="#NestedRoutines">Nested Routines</a></li>
125125
<li><a href="#DeclarationsInPalmOS">Declarations in PalmOS</a></li>
126126
</ul></li>
127127
<li><a href="#Conditions">Conditions</a>
128128
<ul>
129129
<li><a href="#IfThenElseifEndif">IF-THEN-ELSIF-ELSE</a></li>
130-
<li><a href="#SingleLineIfThenElse">Single-line IF-THEN-ELSE</a></li>
130+
<li><a href="#SingleLineIfThenElse">Single-Line IF-THEN-ELSE</a></li>
131131
<li><a href="#InlineVersionOfIf">Inline Version of IF</a></li>
132132
<li><a href="#SelectCase">SELECT CASE</a></li>
133133
</ul></li>
@@ -1205,7 +1205,7 @@ <h3 id="ExitAFunctionOrSubroutine">Exit a Function or Subroutine</h3>
12051205
executed.</p>
12061206
<p>Subroutines can be exited using the keywords <code>EXIT SUB</code>.
12071207
All commands following <code>EXIT SUB</code> will not be executed.</p>
1208-
<h3 id="SingleLineFunctions">Single-line Functions</h3>
1208+
<h3 id="SingleLineFunctions">Single-Line Functions</h3>
12091209
<pre><code>FUNC name(par1, ..., parN) = expression
12101210
DEF name(par1, ..., parN) = expression</code></pre>
12111211
<p><code>FUNC</code> and <code>DEF</code> can be used to declare
@@ -1411,7 +1411,7 @@ <h3 id="IfThenElseifEndif">IF-THEN-ELSIF-ELSE</h3>
14111411
<code>ELIF</code> and <code>FI</code> can be used. Instead of
14121412
<code>THEN</code>, <code>DO</code> can be used, but this is not
14131413
suggested.</p>
1414-
<h3 id="SingleLineIfThenElse">Single-line IF-THEN-ELSE</h3>
1414+
<h3 id="SingleLineIfThenElse">Single-Line IF-THEN-ELSE</h3>
14151415
<div class="sourceCode" id="cb71"><pre
14161416
class="sourceCode smallbasic"><code class="sourceCode smallbasic"><span id="cb71-1"><a href="#cb71-1" aria-hidden="true" tabindex="-1"></a><span class="kw">IF </span>expression <span class="kw">THEN co</span>mmand1 <span class="kw">ELSE</span> command2</span></code></pre></div>
14171417
<p>Single-line IF-THEN-ELSE causes SmallBASIC to make a decision based
@@ -1909,7 +1909,7 @@ <h2 id="ExceptionHandling">Exception Handling</h2>
19091909
href="https://smallbasic.github.io/reference/1425.html">TRY</a>.</p>
19101910
</div>
19111911
<div class="pagefooter">
1912-
This page was last edited on Thu, 8 May 2025 22:57:28 +0200
1912+
This page was last edited on Mon, 9 Jun 2025 22:04:26 +0200
19131913
|
19141914
<a href="https://en.wikipedia.org/wiki/Markdown" target="_blank" rel="nofollow">Markdown</a>
19151915
processed with

0 commit comments

Comments
 (0)