-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #156 from BrenekH/release-2024.1.1
Release 2024.1.1
- Loading branch information
Showing
21 changed files
with
654 additions
and
515 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
# Kotlin for FRC Changelog | ||
|
||
## [2023.5.1](https://github.com/BrenekH/kotlin-for-frc/releases/2023.5.1) | ||
## [2024.1.1](https://github.com/BrenekH/kotlin-for-frc/releases/2024.1.1) | ||
|
||
**Fixed Bugs:** | ||
**Enhancements:** | ||
|
||
- Fix simulate command on Windows ([#145](https://github.com/BrenekH/kotlin-for-frc/issues/145) | ||
- Update templates for 2024 | ||
- Add Command Based Skeleton template and remove Robot Base template | ||
- Report projects as Kotlin instead of Java ([#151](https://github.com/BrenekH/kotlin-for-frc/issues/151)) |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
export const SIMULATE_CODE_TASK_NAME = "Simulate FRC Code" | ||
export const TARGET_GRADLE_RIO_YEAR = "2023" | ||
export const TARGET_GRADLE_RIO_VER = "2023.1.1" | ||
export const TARGET_GRADLE_RIO_YEAR = "2024" | ||
export const TARGET_GRADLE_RIO_VER = "2024.1.1" | ||
|
||
export const ROMI_CMD_VARIANT_SEARCH_TERM = `wpi.sim.envVar("HALSIMWS_HOST"` | ||
export const ROMI_TIMED_VARIANT_SEARCH_TERM = "new RomiDrivetrain()" | ||
export const CMD_ROBOT_SEARCH_TERM = "edu.wpi.first.wpilibj2.command.Command" | ||
export const CMD_ROBOT_NON_SKELE_SEARCH_TERM = "The VM is configured" | ||
export const TIMED_ROBOT_USED_SEARCH_TERM = "edu.wpi.first.wpilibj.TimedRobot" | ||
export const TIMED_ROBOT_SEARCH_TERM = "edu.wpi.first.wpilibj.smartdashboard.SendableChooser" | ||
export const ROBOT_BASE_SKELE_SEARCH_TERM = "edu.wpi.first.hal.HAL" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.