Oleksii Serdiuk

Results 51 comments of Oleksii Serdiuk

What version of Fahrplan do you have? bahn.de was fixed in 2.0.31. If you use AppList, then check for updates. I've uploaded a new version there this morning.

Ah, I see. @mzanetti and @krnekhelesh were maintaining Ubuntu Touch version, if I'm not mistaken. Guys, can you upload a new release there?

Duplicate of #262, but keep open until Ubuntu Touch version is released.

It looks like we were leaking memory after each search before, and will be leaking even more with this change. At the end everything gets parented to `lastJourneyResultList`, however, we...

Not completely true. `QObject` deletes all its children when it's deleted, and you do parent all `JourneyResultItem` instances to lastJourneyResultList and all `JourneyDetailResultItem` instances to corresponding `JourneyResultItem` instances. So, deleting...

Not sure. All of the classes in the created object tree inherit from `QObject`. As they don't have a destructor, `QObject`'s destructor (which is virtual) will be called for all...

Regarding "via" support for bahn.de - I've seen that it's possible to set "via" station on mobile.bahn.de website when I was porting Fahrplan to Symbian. It looked pretty easy to...

I think, best solution would be to make transportation name inside a trip section clickable (or add a button there).

> I would, of course, be up for doing most of this myself, but for now I don't really know where to begin! If you know C++, you can create...

I see that the API you mentioned supports JSON and XML. Parsing XML is a pain, so I'd suggest using JSON here. You can take a look at `ParserNinetwo` implementation,...