Releases: mendhak/gpslogger
v120 RC1 : OSM prompt. Charging Status. Persistent notification?
See PR: #937
OSM prompt if autosend enabled.
Charging status in CSV and Custom URL.
Potential fix for persistent notification? I've been unable to recreate this so doing guesswork.
v119 - Timezone Offset, Custom URL Auto-Sender, advanced CSV settings
Times with timezone offset, #911
New option added under Logging details, under advanced settings. You can write times with timezone offset where possible (GPX, KML, GeoJSON). It will write the datetime in ISO8601 format with timezone offset. eg 2016-03-05T21:24:29.949+02:00
Custom URL gets a %TIMEOFFSET
parameter.
CSV gets a new field time_offset
.
CSV Logger changes
CSV logger gets additional fields: timestamp, time with offset, distance travelled, start timestamp, current profile name
CSV logging gets two new options. Under logging details, under the advanced section. #921
CSV field delimiter - You can specify a custom delimiter (Instead of ,
you can specify ;
, |
etc).
Decimal separator - You can choose whether to use a comma as a decimal separator.
Custom URL Sender #918 #923
Custom URL can now be used as an auto sender, such as every 60 minutes or when stop is pressed.
It works by storing the values in the CSV file, so as a result the CSV file has gotten a bunch of new fields added.
You can also 'upload' the CSV file to the Custom URL sender, and the values will be read and converted to URLs and sent to the server. This should serve as a way to mitigate any lost Custom URLs or do away with offline queueing problems.
You will need to ensure that the Custom URL server can receive the same log lines multiple times.
Misc
- Use ELAPSED_REALTIME_WAKEUP alarm as it's resistant to device timezone changes. PR #763
- The log view will now show lat long in the user preferred format, and also altitude and accuracy if available.
- The log view checkbox should reflect if logging was stopped or started.
- If recovering from a crash, start logging if the app was previously logging.
- Fix for logging stopping when using Hungarian locale. #885
v119-rc1 - Timezone Offset, Custom URL Auto-Sender, advanced CSV settings
See: #917
v118 - Move to AndroidX, Remove MaterialDialogs, Add Dark Theme
See pull request
Underlying framework changes. accionvegana to AndroidX, and removed Material Dialogs. Replaced with SimpleDialogFragments. Removed JCenter references.
Added Dark Theme. By default it will follow the system mode (if the system is in dark mode, or battery saver, the app will get dark theme). It's also possible to manually set dark theme via the General Settings screen.
Reworked preferences screen. The preferences, most of them, will now show the value that the user has selected. The 'summary' moves into the dialogs where there are edit text preferences.
v118-rc2 Dark Mode, reworked Preferences screens
v118-rc1 Dark Mode, reworked Preferences screens
For #913
v117 - File/Folder Picker. Modern SSH library
A file and folder picker. Finally. #898
The picker is from my fork of the original library because I had to add some fixes and updates for Android 11.
Modern SSH algorithms. Added an updated library called mwiede/jsch along with Bouncy Castle so that we can use modern SSH algorithms. #902
v117-rc1 - Modern SSH algos, and a File/Folder Picker
-
Modern SSH algorithms. Added a new version of jsch along with Bouncy Castle so that we can use modern SSH algorithms.
-
A file and folder picker. Finally.
v116 - Android 11 File Permissions
File permission fix for Android 11+
On Android 11, the app should now support custom folder paths for writing files. #904
This is done via the MANAGE_EXTERNAL_STORAGE
- this was the easiest way to support Android 11 restrictions without rewriting huge parts of the file writing mechanisms in the application.