Skip to content

Commit

Permalink
Merge pull request #86 from deltacv/dev
Browse files Browse the repository at this point in the history
Merge dev into main for 3.4.2
  • Loading branch information
serivesmejia authored Oct 12, 2022
2 parents 2c7cb01 + 623e29a commit d697821
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ class CrashReport(causedByException: Throwable, isDummy: Boolean = false) {

fun saveCrashReport(filename: String) {
val workingDir = File(System.getProperty("user.dir"))
val crashLogFile = workingDir + "/$filename.log"
val crashLogFile = workingDir + File.separator + "$filename.log"

saveCrashReport(crashLogFile)
}
Expand Down
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,15 @@ For bug reporting or feature requesting, use the [issues tab](https://github.com

### Formerly, EOCV-Sim was hosted on a [personal account repo](https://github.com/serivesmejia/EOCV-Sim/). Released prior to 3.0.0 can be found there for historic purposes.

### [v3.4.2 - AprilTags fixes & Mac support](https://github.com/deltacv/EOCV-Sim/releases/tag/v3.4.2)

- This is the 16th release for EOCV-Sim

- Changelog:
- Bumps apriltags to 1.2.0, providing Mac support and removing OpenCV dependency on native code to hopefully remove crashes
- Bug fixes:
- Fixes path of crash reports to use corresponding separator

### [v3.4.1 - Custom OpenCV native support](https://github.com/deltacv/EOCV-Sim/releases/tag/v3.4.1)

- This is the 15th release for EOCV-Sim
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ buildscript {
slf4j_version = "1.7.32"
log4j_version = "2.17.1"
opencv_version = "4.5.1-2"
apriltag_plugin_version = "1.1.1"
apriltag_plugin_version = "1.2.0"

classgraph_version = "4.8.108"
opencsv_version = "5.5.2"
Expand Down

0 comments on commit d697821

Please sign in to comment.