The main difference though is that you can see multiple feeds (I call them "lines") at once. The whole project arose from a personal tendency to have multiple steemit.com tabs in my browser, e.g. one for new #steemdev posts, one for new #programming posts and one for my own feed... and then I look at my own profile/blog page and incoming replies from time to time. Oh... and I often visit steemstats.com to see my current voting power, which unfortunately is not totally accurate because steemstats just shows your voting power at the moment you last voted on something.
Anyway... SteemLine is the result of my personal steemit.com usage behaviour.
And for the most part it is a trial-and-error development project to learn "how to walk" as a developer in the steem ecosystem (and VueJS). Following my steemit widgets I wanted to build something that also supports login and interaction.
It took some time (basically because I've been lazy in the last days) but I have something working now... kind of.
This is really a work-in-progress project which still has bugs and missing features. Everything should work basically but there's a lot to do.
I cannot guarantee that any of these will ever be fixed...
updateAccount is called (10 sec interval).Again I cannot guarantee that any of these will ever be implemented...
Steemconnect provides the authentication layer for steemline and also easy to use methods for commenting and voting. However, unfortunately while they are currently switching to v2 the documentation for v1 (which I am using) is gone. If you know where to find it let me know. But migrating to v2 would be the better solution anyway... as soon as it is stable and well documented.
I am very grateful that @oroger helped me a little bit with fetching data.
He provides two endpoints, one for votes and one for mentions.
Do get all the posts that mention a specific user use:
http://api.comprendre-steem.fr/getMentions?username=<username>
By default it just returns mentions in posts (not comments) from other users. To include comments add comments=Y
http://api.comprendre-steem.fr/getMentions?username=<username>&comments=Y
For development purposes you can even get mentions you made yourself.
http://api.comprendre-steem.fr/getMentions?username=<username>&comments=Y&own_comments=Y
To get incoming votes for a specific user use:
http://api.comprendre-steem.fr/getIncomingVotes?username=<username>&offset=0&limit=30
Here you can use offset and limit parameters for use with paging.
Thank you very much @oroger! :)
This is the only thing still missing although I really wanted it to be included in this version. Maybe @oroger could help me here again but as it is uncertain on top of which data source further development will take place, I decided to pause development now as long as the APIs and database services reached a stable state. Mostly I am waiting for SBDS (MySQL access to the steem blockchain) and steemconnect v2.
Although SteemLine is currently pure javascript, it is served by a Symfony backend (PHP) because I am interested in developing a Symfony bundle for steem.
Also to support features like scheduled posts some server side scripts would be needed.
Check out SteemLine on you smartphone too. I think it is a really smooth and intuitive experience.
The current sub-domain steemline.markus-kottlaender.de might be replaced with a dedicated domain like steemline.com or whatever is available.
I am really very very moody in terms of software projects... :D So I cannot assure any further development or bug fixes in the near future if at all.
This is why I would highly appreciate any contributions from the steemit developer community. See the issues on GitHub and If you have some spare time left over somehow, please feel free to have a look at the code.
Especially if you are familiar with VueJS, I would love to see some suggestions or improvements. I know that I don't utilize this framework to it's full potential.