Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-12-14 | Handle motion fluctuation (fix #5000) | Anton Tananaev | |
2022-10-26 | Update MaintenanceEventHandler.java | jcardus | |
trailing spaces | |||
2022-10-26 | 2 Bugs on maintenance | jcardus | |
According to the documentation: "Traccar can help control maintenance intervals of devices. There are two attributes to configure: maintenance.start and maintenance.interval. They can be set in device, group or server attributes. Traccar generates event every time totalDistance attribute gets over maintenance.start + maintenance.interval * N value where N is a natural number. Example: maintenance.start=6000000, maintenance.interval=8000000 Events will be generated when totalDistance goes over 6000 km, 14000 km, 22000 km and so on." In this example, the event won't be fired when it goes over 6000 km. If maintenance.interval < maintenance.start and maintenance.start is multiple of maintenance.interval then the event will be fired before maintenance.start because the comparison will be on negative numbers. Another solution would be to use absolute numbers on the comparison. Example: maintenance.start = 10 000 000 maintenance.interval = 2 000 000 the event will be fired when it goes over 2 000 000 the event wont' be fired when it goes over 10 000 000 | |||
2022-10-15 | Fix MS SQL limit (fix #4958) | Anton Tananaev | |
2022-10-13 | Refactor database code (fix #4961) | Anton Tananaev | |
2022-10-02 | Use singletons where possible | Anton Tananaev | |
2022-09-25 | Persist device state | Anton Tananaev | |
2022-09-21 | Refactor motion handling | Anton Tananaev | |
2022-09-19 | Refactor overspeed handling | Anton Tananaev | |
2022-08-03 | Implement refuel events | Anton Tananaev | |
2022-08-03 | Rename fuel event handler | Anton Tananaev | |
2022-07-18 | Add media events (fix #3863) | Anton Tananaev | |
2022-07-14 | Filter for old data (fix #3800) | Anton Tananaev | |
2022-07-14 | Add LBS location caching (fix #3790) | Anton Tananaev | |
2022-07-13 | Simplify attribute check | Anton Tananaev | |
2022-07-12 | Persist device status (fix #4890, fix #4891) | Anton Tananaev | |
2022-06-30 | Check for attribute | Anton Tananaev | |
2022-06-25 | Fix connection users issue | Anton Tananaev | |
2022-06-18 | Remove data manager | Anton Tananaev | |
2022-06-18 | Move device status | Anton Tananaev | |
2022-06-18 | Remove identity manager | Anton Tananaev | |
2022-06-18 | Remove positions from manager | Anton Tananaev | |
2022-06-18 | Refactor attribute lookup | Anton Tananaev | |
2022-06-18 | Refactor attribute lookup | Anton Tananaev | |
2022-06-16 | Refactor geofence classes | Anton Tananaev | |
2022-06-15 | Convert some config usages | Anton Tananaev | |
2022-06-14 | Refactor notification manager | Anton Tananaev | |
2022-06-10 | Inject report utils | Anton Tananaev | |
2022-06-09 | Remove geofence manager | Anton Tananaev | |
2022-06-08 | Improve cache invalidation | Anton Tananaev | |
2022-06-07 | Remove calendar manager | Anton Tananaev | |
2022-06-04 | Move common report classes | Anton Tananaev | |
2022-06-04 | Remove maintenance manager | Anton Tananaev | |
2022-06-03 | Remove attributes manager | Anton Tananaev | |
2022-05-30 | Combine session related classes | Anton Tananaev | |
2022-05-30 | Improve dependency injection | Anton Tananaev | |
2022-05-02 | Log transport layer protocol | Anton Tananaev | |
2022-02-13 | New storage implementation | Anton Tananaev | |
2022-02-01 | add skiplimit and skipAttributes checks for Duplicate filter again | jafarhabibi | |
2022-01-14 | Extract connector interface | Anton Tananaev | |
2021-12-27 | Merge pull request #4740 from soshial/relative_filtering | Anton Tananaev | |
Add support for relative filtering | |||
2021-12-27 | filtering logic: fix static | soshial | |
2021-12-27 | revert to the original filtering logic | soshial | |
2021-09-28 | shorten IF clause | soshial | |
2021-09-18 | improve SQL query | soshial | |
2021-09-15 | Update when geofences change | Anton Tananaev | |
2021-09-13 | remove comments | soshial | |
2021-09-12 | improve naming and comments | soshial | |
2021-09-12 | filtering optimizations | soshial | |
2021-09-10 | add support for relative filtering | soshial | |