Skip to content

Commit 0d13ce9

Browse files
authored
Merge pull request #3 from bxparks/develop
merge 0.2.1 into master
2 parents 2b7ce54 + 5f210bc commit 0d13ce9

File tree

4 files changed

+22
-16
lines changed

4 files changed

+22
-16
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Changelog
22

33
- Unreleased
4+
- 0.2.1 (2023-08-13)
5+
- Update README.md. Test minor version number with new release.
6+
- No code change.
47
- 0.2 (2023-08-13)
58
- Update downloading and installation instructions.
69
- 0.1 (2023-08-13)

README.md

Lines changed: 17 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
RPN calculator app for the TI-83 Plus and TI-84 Plus inspired by the HP-42S.
44

5-
**Version**: 0.2 (2023-08-13)
5+
**Version**: 0.2.1 (2023-08-13)
66

77
**Changelog**: [CHANGELOG.md](CHANGELOG.md)
88

@@ -11,10 +11,10 @@ RPN calculator app for the TI-83 Plus and TI-84 Plus inspired by the HP-42S.
1111
## Table of Contents
1212

1313
- [Installation](#Installation)
14+
- [Supported Hardware](#SupportedHardware)
1415
- [Quick Examples](#QuickExamples)
1516
- [Example 1](#Example1)
1617
- [Example 2](#Example2)
17-
- [Supported Hardware](#SupportedHardware)
1818
- [User Guide](#UserGuide)
1919
- [Compiling from Source](#Compiling)
2020
- [Tools and Resources](#ToolsResources)
@@ -44,7 +44,20 @@ Guide](USER_GUIDE.md), but here is the quick version:
4444
- Turn off device: `2ND` `OFF`
4545

4646
As a flash app, the RPN83P does not consume precious RAM space, and it is
47-
preserved when the RAM is cleared (either purposefully or accidentally).
47+
preserved when the RAM is cleared.
48+
49+
<a name="SupportedHardware"></a>
50+
### Supported Hardware
51+
52+
This app was designed for TI calculators using the Z80 processor:
53+
54+
- TI-83 Plus
55+
- TI-83 Plus Silver Edition (verified)
56+
- TI-84 Plus
57+
- TI-84 Plus Silver Edition (verified)
58+
59+
I have tested it on the two Z80 TI calculators that I have (both Silver
60+
Edition). It *should* work on the others, but I have not actually tested them.
4861

4962
<a name="QuickExamples"></a>
5063
## Quick Examples
@@ -110,16 +123,6 @@ to go back to the previous menu bar:
110123

111124
> ![ROOT MenuStrip 1](docs/rpn83p-screenshot-menu-root-1.png)
112125
113-
<a name="SupportedHardware"></a>
114-
### Supported Hardware
115-
116-
This app was designed for TI calculators using the Z80 processor:
117-
118-
- TI-83 Plus
119-
- TI-83 Plus Silver Edition (verified)
120-
- TI-84 Plus
121-
- TI-84 Plus Silver Edition (verified)
122-
123126
<a name="UserGuide"></a>
124127
## User Guide
125128

@@ -133,7 +136,7 @@ been verified only on my dev machine.
133136

134137
- Clone this repo:
135138
- `$ git clone [email protected]:bxparks/rpn83p.git`
136-
- `develop` branch contains the active development
139+
- `develop` branch (default) contains the active development
137140
- `master` branch contains the stable release
138141
- Install [spasm-ng](https://github.com/alberthdev/spasm-ng).
139142
- I use the static binary zip file, because the `.deb` file would not

USER_GUIDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
RPN calculator app for the TI-83 Plus and TI-84 Plus inspired by the HP-42S.
44

5-
**Version**: 0.2 (2023-08-13)
5+
**Version**: 0.2.1 (2023-08-13)
66

77
**Project Home**: https://github.com/bxparks/rpn83p
88

src/menuhandlers.asm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ helpPages:
127127

128128
msgHelpPage1:
129129
.db escapeLargeFont, "RPN83P", Lenter
130-
.db escapeSmallFont, "v0.2 (2023", Shyphen, "08", Shyphen, "13)", Senter
130+
.db escapeSmallFont, "v0.2.1 (2023", Shyphen, "08", Shyphen, "13)", Senter
131131
.db "(c) 2023 Brian T. Park", Senter
132132
.db Senter
133133
.db "An RPN calculator for the", Senter

0 commit comments

Comments
 (0)