Skip to content

Commit f4724e7

Browse files
committed
chore: updated Releases.md
1 parent 0e7e6a2 commit f4724e7

2 files changed

Lines changed: 32 additions & 24 deletions

File tree

Releases.md

Lines changed: 29 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,46 @@
1-
# 2.3.0-20260211
1+
# 2.3.0-RC1
22

3-
This is a *development snapshot* of the Rotorflight 2.3.0 Lua Scripts for EdgeTX/OpenTX.
3+
This is the *First Release Candidate* of the *Rotorflight 2.3.0 Lua Scripts for EdgeTX and OpenTX*.
4+
5+
NOTE: The final 2.3.0 version will be released after a few release candidates. Please don't use RCs once the final release is out.
46

57
## Downloads
68

79
The download locations are:
810

9-
- [Rotorflight Configurator](https://github.com/rotorflight/rotorflight-configurator/releases/tag/snapshot/2.3.0-20260208)
10-
- [Rotorflight Blackbox](https://github.com/rotorflight/rotorflight-blackbox/releases/tag/snapshot/2.3.0-20260208)
11-
- [Lua Scripts for EdgeTX and OpenTX](https://github.com/rotorflight/rotorflight-lua-scripts/releases/tag/snapshot/2.3.0-20260211)
12-
- [Lua Scripts for FrSky Ethos](https://github.com/rotorflight/rotorflight-lua-ethos/releases/tag/snapshot/2.3.0-20260208)
13-
- [Lua Suite for FrSky Ethos](https://github.com/rotorflight/rotorflight-lua-ethos-suite/releases/tag/snapshot/2.3.0-20260208)
11+
- [Rotorflight Configurator](https://github.com/rotorflight/rotorflight-configurator/releases/tag/release/2.3.0-RC1)
12+
- [Rotorflight Blackbox](https://github.com/rotorflight/rotorflight-blackbox/releases/tag/release/2.3.0-RC1)
13+
- [Lua Scripts for EdgeTX and OpenTX](https://github.com/rotorflight/rotorflight-lua-scripts/releases/tag/release/2.3.0-RC1)
14+
- [Lua Scripts for FrSky Ethos](https://github.com/rotorflight/rotorflight-lua-ethos/releases/tag/release/2.3.0-RC1)
15+
- [Lua Suite for FrSky Ethos](https://github.com/rotorflight/rotorflight-lua-ethos-suite/releases/tag/release/2.3.0-RC1)
1416

1517
## Notes
1618

17-
This version is intended for beta testing only. It may contain incomplete features or stability issues and is not recommended for end-user use.
18-
19-
For more information, please join the Rotorflight Discord chat.
19+
Rotorflight setup instructions can be found on the Rotorflight website [www.rotorflight.org](https://www.rotorflight.org/).
2020

2121
## Changes Since Version 2.2.1
2222

23-
- Added support for the Radiomaster TX16S MK3
24-
- *Rates* page: added Rotorflight rates
25-
- *Hobbywing V5 ESC* page: better support for setting BEC voltage
23+
- Added Rotorflight Widgets
24+
- *RF Tool*: shows the model name and other info and lets you configure your heli when in full screen mode. *RF Tool* also integrates *rf2bg*, so there's no need to run *rf2bg* using a special function anymore when using this widget.
25+
- *RF Stats*: shows *Total flights* and *Total time* when model statistics are enabled.
2626
- *Model* page
27-
- Added support for per model statistics like *Total flights* and *Total time*
28-
- When *Set name on TX* is used to automatically set the model name on your transmitter, *rf2bg* will revert to the name you specified on the transmitter when no model is connected (instead of '>Rotorflight').
27+
- Added support for per model statistics like *Total flights* and *Total time*.
28+
- When *Set name on TX* is used to automatically set the model name on your transmitter, *rf2bg* will revert to the name you specified on the transmitter when no model is connected (instead of '>Rotorflight')
2929
- *rf2bg* background script
30-
- Custom CRSF telemetry sensors can now be deleted and discovered at any time
31-
- No need to follow a special procedure anymore to get the sensors in the correct order
32-
- Added support for the new Rotorflight governor
33-
- Added partial support for the FlySky PA01
34-
- Updated FLYROTOR ESC parameters
35-
- Improved touch UI support
36-
- Reduced memory usage
37-
- Various minor fixes
30+
- Custom CRSF telemetry sensors can now be deleted and discovered at any time.
31+
- No need to follow a special procedure anymore to get the sensors in the correct order.
32+
- *Battery* page: new page for configuring and specifying your batteries.
33+
- *Governor* page: added support for the new Rotorflight governor.
34+
- *Rates* page: added support for *Rotorflight* rates.
35+
- *Rate Dynamics* page: added support for *Cyclic ring* and *Polar coordinates*.
36+
- *AM32 ESC* page: new page for configuring AM32 ESCs.
37+
- *FLYROTOR ESC* page: updated parameters.
38+
- Added support for configuring *OMP* and *ZTW* ESCs.
39+
- Added support for the *Radiomaster TX16S MK3*.
40+
- Added partial support for the *FlySky PA01*.
41+
- Improved Touch UI with a new sleek *Save* button.
42+
- Reduced memory usage.
43+
- Various minor fixes.
3844

3945

4046

src/SCRIPTS/RF2/pages.lua

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ addPage("showPidController", "PID Controller", "profile_pidcon", true)
1515
addPage("showProfileVarious", "Profile - Various", "profile_various", true)
1616
addPage("showProfileRescue", "Profile - Rescue", "profile_rescue", true)
1717
addPage("showProfileGovernor", "Profile - Governor", "profile_governor", true)
18-
addPage("showBattery", "Battery", "battery", true)
18+
if rf2.apiVersion >= 12.09 then
19+
addPage("showBattery", "Battery", "battery", true)
20+
end
1921
addPage("showServos", "Servos", "servos", true)
2022
addPage("showMixer", "Mixer", "mixer", true)
2123
addPage("showGyroFilters", "Gyro Filters", "filters", true)

0 commit comments

Comments
 (0)