Thursday, December 13, 2012

ShareBoard for N9 (Meego-Harmattan) ....and Symbian
























Just a small functionality I missed in N9 was that I had no option to fast-share a status update or post to both social networks from a single page.

ShareBoard has been made to fill in that gap.
The app loads up quite fast, so that you can start sharing whenever you wish.
You can post one photo along with a status update.
Toggle switches below set which networks update will be shared to.
Have a nice time trying out the app, and give feedbacks and suggestions. Also, you can notice that I'm not a good icon artist :p Any help in that field would be appreciated.

Content is currently available from Nokia Store.
And symbian version is under review and will be available soon.

Now available from nokia store : http://store.ovi.com/content/342672





This app uses the socialConnect QML library from http://projects.developer.nokia.com/socialconnect






Saturday, October 20, 2012

Photo upload coming to Blob

Blogger and WordPress client for Symbian and Meego, Blob will be finally getting the much requested "Photo upload" feature. Thanks to ShwStppr (Abhishek Kumar) for helping me out with the C++ stuff of file handling. Update is possible only because of him :)

The upload mechanism isn't 100% polished and might have small bugs here and there. (Mostly because my 1 year old C7 has been acting weird recently and giving a different result than my beta testers). Anyway, I've submitted the update for Blob paid version in Symbian. Hopefully, which might go live by next weekend. I'm looking forward to feedback and fix bugs (if any) and then update it for MeeGo also.
The update for Symbian free version will also be pushed soon.

Download links :
Blob Paid : http://store.ovi.com/content/266320
Blob Free (MeeGo and Symbian) : http://store.ovi.com/content/266343

Wednesday, October 10, 2012

Custom keyboard for N9 with Swype style long-press chars.

Here's something interesting for those N9ers who, like me are used to the long press functionality of Swype keyboard. But unfortunately the long press choices in stock keyboard aren't much useful.
For that, I present you English (XT) keyboard that has long press chars as in Swype. Actually I made it for my personal use, but decided to share it.



The installation instructions are a little unorthodox since I haven't made any installer. But this techniques are familiar to most N9ers ;)

(Also an easy way : use the MesInput app from Nokia store, and download this keyboard with id : 1064020 . And you are done!! )


Download the xml file from here.
http://db.tt/a3SGeiY1

Put it directly in MyDocs

Enable developer mode in your N9,
Go to terminal and type

$ devel-su (password is rootme)
# cp /home/user/MyDocs/en_ext.xml /usr/share/meegotouch/virtual-keyboard/layouts/


Go to text inputs setting and activate the English(XT) keyboard

Swipe KB to access XT variant.

Enjoy long-pressing :)

Friday, September 7, 2012

MeeGo on Symbian? Almost ;) Meet MeeCal



Meet MeeCal, a simple calculator that is a clone of the default calculator in N9. Only difference is that it runs on symbian :D

The UI and UX has been optimised and designed for maximum match with the MeeGo app. Along with the inherited awesome graphics style.

The most awesome feature being swipe down to close the app. And swipe sideways to minimize. You've to start the swipe from the extreme edge of the screen.

Also the superfast startup time is something to look forward to :)

A paid and free version is submitted to QA and will be available by next weekend.

Hope you enjoy the swiping on your symbian

Monday, July 23, 2012

Welcome Blob v2 !

A little late on the announcement, I was busy perfecting v2 for MeeGo.

The new version for Symbian has already arrived in store few days back. Current version being 2.0.1 along with a bug fix from v2.0.0.

Changelog goes as follows:

• Added support for WordPress (Now its a dual client ).
• Add, edit, delete, read WordPress blogs, and everything you did with Blogger earlier.
• Read "freshly pressed" WordPress blogs
• Read blogs by entering url also in guest mode (apart from wordpress.com sites, some websites like techcrunch.com , gigaom.com seem to work )
• Threaded comments in WordPress (nested)
• Long press to show Link sharing options, including Pocket integration (did I announce it before? :p )


Nothing more I could remember atm, except few UI changes..
Thanks to everyone for their support and interest. It's been a nice experience :)


MeeGo version is on its way too.

Regards,
Anand

Saturday, June 16, 2012

Blob version 2, literally ;)

When I say version 2, I mean it.
Blob will just get twice of everything it had.


A WordPress module will be added with basic posting, editing + reader by Url, "Freshly pressed" reader, etc..

Most interesting feature is gonna be threaded comments, which Blogger APi hasn't let me implement.
But I've done that with wordPress, in style ;)


You might say that we already have cutepress for that, but FYI, Blob is using a diff API, which has a few extra abilities, and few missing functions. I don't want any competition with CutePress, so kindly, don't compare.. It's different things from different aspects


A let down is that self hosted sites aren't supported yet, but WP support tells me that I could soon support them with JetPack.. Hope "soon" means soon..



The update is under development and private beta, drop me a comment if interested in Beta testing.

Stay tuned :)

Regards
AB

Saturday, May 26, 2012

Bug Explanation : Connection Error 400 in Blob

Some people has been complaining that Blob is giving a error in connection problem on trying to publish posts.
The error code 400 is returned when the server doesn't recognize the sent data.
It is a limitation of blogger server that it accepts data in only xml format which is quite strict in rules.
If you miss one slash, or forget to close one html tag, the whole request becomes invalid.
Whereas all other major APIs use json data, blogger keeps using this tedious and tricky method (one of the reason why there aren't many blogger clients)

Due to this problem, if you create a new post with simple html tags, blob will handle it fine, but there might be occasional problems while editing an existing post with complex tags..(more if you mess up the html tags)

I'll be looking into a way to validate the post before requesting, but that'd be complex..
In the meantime, if you get those errors, offline save the thing, then try removing some part of the post and online draft it, to check which part/html code is causing the error.

Sorry for the trouble and inconvenience, but this is Blogger's fault as much as mine.

Regards,
Anand