Skip to content

Commit 28d5246

Browse files
authored
Merge pull request #1416 from FIRST-Tech-Challenge/20250121-174034-release-candidate
FtcRobotController v10.2
2 parents ee16f8e + 5f50780 commit 28d5246

File tree

3 files changed

+22
-10
lines changed

3 files changed

+22
-10
lines changed

FtcRobotController/src/main/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
33
xmlns:tools="http://schemas.android.com/tools"
4-
android:versionCode="57"
5-
android:versionName="10.1.1">
4+
android:versionCode="58"
5+
android:versionName="10.2">
66

77
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
88

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,18 @@ The readme.md file located in the [/TeamCode/src/main/java/org/firstinspires/ftc
5959

6060
# Release Information
6161

62+
## Version 10.2 (20250121-174034)
63+
64+
### Enhancements
65+
* Add ability to upload the pipeline for Limelight3A which allows teams to version control their limelight pipelines.
66+
67+
68+
### Bug Fixes
69+
70+
* Fix an internal bug where if the RUN_TO_POSITION run mode was specified before a target position, recovery would require a power cycle. A side effect of this fix is that a stack trace identifying the location of the error is always produced in the log. Fixes issue [1345](https://github.com/FIRST-Tech-Challenge/FtcRobotController/issues/1345).
71+
* Throws a helpful exception if region of interest is set to null when building a PredominantColorProcessor. Also sets the default RoI to the full frame. Addresses issue [1076](FIRST-Tech-Challenge/FtcRobotController#1076)
72+
* Throws a helpful exception if user tries to construct an ImageRegion with malformed boundaries. Addresses issue [1078](FIRST-Tech-Challenge/FtcRobotController#1078)
73+
6274
## Version 10.1.1 (20241102-092223)
6375

6476
### Breaking Changes

build.dependencies.gradle

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ repositories {
44
}
55

66
dependencies {
7-
implementation 'org.firstinspires.ftc:Inspection:10.1.1'
8-
implementation 'org.firstinspires.ftc:Blocks:10.1.1'
9-
implementation 'org.firstinspires.ftc:RobotCore:10.1.1'
10-
implementation 'org.firstinspires.ftc:RobotServer:10.1.1'
11-
implementation 'org.firstinspires.ftc:OnBotJava:10.1.1'
12-
implementation 'org.firstinspires.ftc:Hardware:10.1.1'
13-
implementation 'org.firstinspires.ftc:FtcCommon:10.1.1'
14-
implementation 'org.firstinspires.ftc:Vision:10.1.1'
7+
implementation 'org.firstinspires.ftc:Inspection:10.2.0'
8+
implementation 'org.firstinspires.ftc:Blocks:10.2.0'
9+
implementation 'org.firstinspires.ftc:RobotCore:10.2.0'
10+
implementation 'org.firstinspires.ftc:RobotServer:10.2.0'
11+
implementation 'org.firstinspires.ftc:OnBotJava:10.2.0'
12+
implementation 'org.firstinspires.ftc:Hardware:10.2.0'
13+
implementation 'org.firstinspires.ftc:FtcCommon:10.2.0'
14+
implementation 'org.firstinspires.ftc:Vision:10.2.0'
1515
implementation 'androidx.appcompat:appcompat:1.2.0'
1616
}
1717

0 commit comments

Comments
 (0)