summaryrefslogtreecommitdiff
path: root/lib/Travelynx.pm
AgeCommit message (Collapse)AuthorLines
2021-03-08also show wagon order when sections are unknownDaniel Friesel-1/+0
2021-02-08Do not warn on HAFAS "extra content at the end" (that's just an in-band 404)Daniel Friesel-1/+3
2021-02-06fall back to apps-bahn if ist-wr does not know about a train1.19.5Daniel Friesel-1/+2
2021-01-29Switch to AGPL3+Daniel Friesel-1/+1
2020-12-17remove superfluous ->app callDaniel Friesel-1/+1
2020-12-07warn if a connecting train may not be reachedDaniel Friesel-1/+29
2020-11-28move statistics cache to a separate model classDaniel Friesel-194/+16
2020-11-27Add a bunch of licensing dataDaniel Friesel-0/+4
2020-11-09another log level adjustmentDaniel Friesel-1/+7
2020-11-08add_route_timestamps: adjust log severity1.18.8Daniel Friesel-1/+6
we can't do anything about "trainlink not found", so it really shouldn't be a warning.
2020-10-11Move remaining journeys queries to journeys model classDaniel Friesel-107/+21
2020-10-11move in_transit queries to an InTransit model classDaniel Friesel-269/+148
2020-10-11calculate tripid from trainsearch.exe.Daniel Friesel-26/+34
Removes the need for an additional transport.rest request.
2020-10-08make unknown stations warning more helpfulDaniel Friesel-2/+9
2020-10-06Stats: Fix handling of negative cumulative arrival/departure delays1.18.1Daniel Friesel-1/+16
2020-10-04also allow regionalExpress, just to be safe1.18.0Daniel Friesel-2/+1
2020-10-04HAFAS "national" trips are also trainsDaniel Friesel-3/+5
2020-09-30Allow linking a Träwelling account, auto-sync Träwelling→travelynxDaniel Friesel-23/+228
travelynx→Träwelling is still work-in-progress Squashed commit of the following: commit 97faa6e2e6c8d20fba30f2d0f6e78187ceeb72e6 Author: Daniel Friesel <derf@finalrewind.org> Date: Wed Sep 30 18:50:05 2020 +0200 improve traewelling log and tx handling commit 487d7dd728b9d45b731bdc7098cf3358ea2e206e Author: Daniel Friesel <derf@finalrewind.org> Date: Wed Sep 30 18:02:41 2020 +0200 add missing traewelling template commit 0148da2f48d9a52dcddc0ab81f83d8f8ac3062ab Author: Daniel Friesel <derf@finalrewind.org> Date: Wed Sep 30 18:02:35 2020 +0200 improve traewelling pull sync commit 4861a9750f9f2d7621043361d0af6b0a8869a0df Author: Daniel Friesel <derf@finalrewind.org> Date: Tue Sep 29 22:14:24 2020 +0200 wip checkin from traewelling commit f6aeb6f06998a2a7a80f63a7b1b688b1a26b66bd Author: Daniel Friesel <derf@finalrewind.org> Date: Tue Sep 29 18:37:53 2020 +0200 refactor traewelling integration. login and logout are less of a hack now. checkin and checkout are not supported at the moment.
2020-09-20add explicit empty return statements to promise handlers1.17.3Daniel Friesel-0/+7
2020-09-10handle rejected promises; do not accidentally duplicate rejectionsDaniel Friesel-0/+27
2020-09-06add DBDB helper for wagonorder and stationinfoDaniel Friesel-119/+22
2020-09-03add public profile page and public journey detailsDaniel Friesel-0/+2
2020-08-16Move most journey code to newly introduced Journey modelDaniel Friesel-678/+25
2020-08-15Remove now-useless includeDaniel Friesel-1/+0
2020-08-06Move get_departures to a separate IRIS helperDaniel Friesel-60/+35
2020-07-28Move HAFAS helpers to a separate Helper moduleDaniel Friesel-297/+39
2020-07-27Move user model to a separate moduleDaniel Friesel-402/+11
2020-04-19Add CSV ExportDaniel Friesel-0/+2
2020-04-19improve commute station heuristicDaniel Friesel-34/+0
Select top station on work days (Mo .. Fr) with arrival < 13:00 or departure >= 13:00.
2020-04-19use german locale in epoch_to_dt helperDaniel Friesel-1/+2
2020-04-19get_top_destinations: order by count descDaniel Friesel-1/+1
order is ascending by default, resulting in flop instead of top destinations.
2020-04-19add commute stats. not linked from nav yet.Daniel Friesel-0/+35
2020-04-16Fix occasionally incorrect TripIDs (and thus incorrect polylines)1.15.12Daniel Friesel-14/+32
Until now, tripIDs were cached based on station and departure timestamp. These are identical for any two trains departing at the same time at the same station, leading to one of those getting being assigned a wrong tripID. From now on, only the JSON reported by transport.rest is cached -- tripIDs are always recomputed based on it.
2020-04-16log train number when encountering a timestamp error1.15.11Daniel Friesel-1/+2
2020-04-16ignore missing timestamps when performing a force checkoutDaniel Friesel-5/+4
2020-04-14use polyline when computing monthly/yearly distance travelled1.15.10Daniel Friesel-5/+6
Closes #40
2020-04-14show select past departures in checkin suggestion listDaniel Friesel-5/+14
Previously, for each destination, up to two departures between now and now + 40 minutes were shown. When performing a fresh checkin (i.e., the has not logged a journey in the past few minutes and is not currently checked in), the departure list now additionally contains all departures between now - 5 minutes and now. When checking in from a train (i.e., the user has recently checked out at the station or is still checked in), it additionally contains all departures between arrival time and now. Closes #33
2020-03-03show QoS pictograms in connection list1.15.5Daniel Friesel-0/+7
2020-02-25polyline sanity check: Handle border stations and incomplete IRIS routes1.15.3Daniel Friesel-4/+13
2020-02-25Ignore polylines which do not agree with IRIS route1.15.2Daniel Friesel-1/+17
2020-02-23journey details: show route on map if available1.15.1Daniel Friesel-11/+14
2020-02-23Move map data generation to a global helper functionDaniel Friesel-1/+202
2020-02-21calculate journey distance using polyline, if availableDaniel Friesel-10/+34
2020-02-17handle departure cancellation after checkinDaniel Friesel-0/+41
2020-02-14add privacy setting for showing history and latest arrival timestampDaniel Friesel-0/+3
2020-02-12Handle cancelled arrival at checkout when departure at checkin is not cancelledDaniel Friesel-1/+33
2020-02-12Add another fix for invalid HAFAS XMLDaniel Friesel-0/+3
2020-02-01allow checkin and checkout station to be editedDaniel Friesel-3/+46
2020-02-01Fix cancellation line in journey view.1.14.3Daniel Friesel-1/+1
Broken by 993f6be6c9524031d878f2c83dcba1fdde11d060
2020-02-01fix uninitialized value warning when handling odd trains (trains without type)Daniel Friesel-2/+5