Skip to content

Commit 89896e6

Browse files
authored
Merge pull request #29 from bxparks/v11fixes
merge v1.1.1 into master
2 parents 6d0a158 + 5ce1aed commit 89896e6

32 files changed

+92
-45
lines changed

CHANGELOG.md

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

33
- Unreleased
4+
- 1.1.1 (2025-11-14)
5+
- **Bug Fix**: Fix regression of `Y^X`, `XROOTY`, and `2^X` functions when
6+
`CRES` is active *and* `X` is Real (not Complex).
7+
- **Bug Fix**: Fix regression of `STO {op} nn` when storing Complex numbers
8+
or record objects.
49
- 1.1.0 (2025-10-07)
510
- DATE (**Major UI Change**)
611
- Support additional method of entry of Duration objects:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ Missing features (partial list):
124124
- vectors and matrices
125125
- keystroke programming
126126

127-
**Version**: 1.1.0 (2025-10-07) \
127+
**Version**: 1.1.1 (2025-11-14) \
128128
**Project Home**: https://github.com/bxparks/rpn83p \
129129
**User Guide**: [USER_GUIDE.md](docs/USER_GUIDE.md) \
130130
**Changelog**: [CHANGELOG.md](CHANGELOG.md)

docs/DEVELOPER.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Notes for the developers of the RPN83P app, likely myself in 6 months when I
44
cannot remember how the code works.
55

6-
**Version**: 1.1.0 (2025-10-07) \
6+
**Version**: 1.1.1 (2025-11-14) \
77
**Project Home**: https://github.com/bxparks/rpn83p
88

99
## Table of Contents
@@ -53,6 +53,7 @@ table in `rpn83p.asm`, and all of them start with the prefix `_Debug`:
5353
- `_DebugPString`
5454
- `_DebugClear`
5555
- `_DebugOP1`
56+
- `_DebugCP1`
5657
- `_DebugEEPos`
5758
- `_DebugUnsignedA`
5859
- `_DebugSignedA`

docs/DEVELOPER_TVM.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Equations, algorithms, and other tricks used to calculate the Time Value of
44
Money (TVM) variables in the RPN83P calculator app.
55

6-
**Version**: 1.1.0 (2025-10-07)\
6+
**Version**: 1.1.1 (2025-11-14)\
77
**Project Home**: https://github.com/bxparks/rpn83p
88

99
## Table of Contents

docs/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**: 1.1.0 (2025-10-07)\
5+
**Version**: 1.1.1 (2025-11-14)\
66
**Project Home**: https://github.com/bxparks/rpn83p
77

88
## Introduction

docs/USER_GUIDE_BASE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ allow numbers to be converted between 4 different bases (DEC, HEX, OCT, and
55
BIN), and they support various arithmetic and bitwise operations similar to the
66
HP-16C.
77

8-
**Version**: 1.1.0 (2025-10-07)\
8+
**Version**: 1.1.1 (2025-11-14)\
99
**Project Home**: https://github.com/bxparks/rpn83p \
1010
**Parent Document**: [USER_GUIDE.md](USER_GUIDE.md)
1111

docs/USER_GUIDE_BASIC.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ emulator for the HP-42S (available for Android, iOS, Windows, MacOS, and Linux)
1515
and then download the [HP-42S Owner's
1616
Manual](https://literature.hpcalc.org/items/929).
1717

18-
**Version**: 1.1.0 (2025-10-07)\
18+
**Version**: 1.1.1 (2025-11-14)\
1919
**Project Home**: https://github.com/bxparks/rpn83p \
2020
**Parent Document**: [USER_GUIDE.md](USER_GUIDE.md)
2121

docs/USER_GUIDE_CATALOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
This chapter contains a catalog of all functions implemented by the RPN83P app,
44
accessed directly through buttons or through the menu system.
55

6-
**Version**: 1.1.0 (2025-10-07)\
6+
**Version**: 1.1.1 (2025-11-14)\
77
**Project Home**: https://github.com/bxparks/rpn83p \
88
**Parent Document**: [USER_GUIDE.md](USER_GUIDE.md)
99

docs/USER_GUIDE_CLR.md

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

33
This document describes the menu functions under the `CLR` menu in RPN83P.
44

5-
**Version**: 1.1.0 (2025-10-07)\
5+
**Version**: 1.1.1 (2025-11-14)\
66
**Project Home**: https://github.com/bxparks/rpn83p \
77
**Parent Document**: [USER_GUIDE.md](USER_GUIDE.md)
88

docs/USER_GUIDE_COMPLEX.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ independent of each other. For example, a complex number can be entered in
99
rectangular form, even if the current display mode is polar form. Internally,
1010
complex numbers are *always* stored in rectangular format.
1111

12-
**Version**: 1.1.0 (2025-10-07)\
12+
**Version**: 1.1.1 (2025-11-14)\
1313
**Project Home**: https://github.com/bxparks/rpn83p \
1414
**Parent Document**: [USER_GUIDE.md](USER_GUIDE.md)
1515

0 commit comments

Comments
 (0)