Personal

Inputtie – Version 0.1.5

Just a few small changes in this update:

From the release notes:

Inputtie Version 0.1.5 (17/10/10)

+ Middle mouse input is now caught and transferred between devices
+ More errors are caught in the client
+ Keys are now depressed when a connection is cut, no more lingering Shift, yey!

The new version should automatically download, but if you don’t yet have it go grab it on the download page -> http://www.inputtie.com/download/

My First Chrome Extension – “Post To Tumblr”

Mummy wow! Im a big boy now! I have just published my first Chrome extension.

It was really annoying me that when I found a funny cat or some other silly image I would have to go through a whole ball-ache process to get that image on my Tumblr account.

What I really wanted was some right-click-post action going on and wondered why no one had one it yet. So with an hour or so to spare I whipped this extension up really quick.

It uses the Chrome 6 Context Menu API so you obviously need to have Chrome 6 to be able to use it.

Currently it only posts images as that’s all I needed for now but if enough people want more then ill whip out the other data types.

The source couldn’t be any simpler really, infact this is it here:

  1. chrome.contextMenus.create({"title": "Post Image To Tumblr", "contexts":["image"], "onclick": postImage});
  2.  
  3. function postImage(info, tab)
  4. {
  5. var email = localStorage["tumblr_email"];
  6. var password = localStorage["tumblr_pass"];
  7.  
  8. if(!email || email=="" || !password || password=="")
  9. {
  10. alert("Need to set your Tumblr username and password in the options before posting!");
  11. }
  12. else
  13. {
  14. var o =
  15. {
  16. "email":email,
  17. "password":password,
  18. "type":"photo",
  19. "source":info.srcUrl
  20. };
  21.  
  22. var success = function(data,textStatus,request)
  23. {
  24. if(textStatus=="success"){ alert("Image posted to Tumblr. Image -> "+info.srcUrl); }
  25. else { alert("Bad email or password"); }
  26. }
  27.  
  28. $.post("http://www.tumblr.com/api/write",o, success);
  29. }
  30. }

Simples!

Theres even an option page where you put in your Tumblr details:

Oh, there is one issue.

No matter what I tried I couldn’t manage to get the Tumblr API to return an error. So if you enter your username or password incorrectly it still reports success, not entirely sure why, if someone knows I would love to hear why!

Interested? You can go grab it over on the chrome extensions gallery page -> HERE

Inputtie – Beta Release!

Woooo Hooo! Finally after almost a years worth of toiling we have finally released the beta version of Inputtie.

Now I have only performed a limited amount of testing so im sure there are going to be bugs-a-plenty. If you find something I would love to hear about it. We dont currently have a dedicated email address you can use for this so just use the contact box on the side of the inputtie page to get in touch.

Anyways, here are the release notes for this version:

Inputtie Version 0.1.3 (22/03/10)
+ Beta Release!
+ Fixed an issue that was causing the mouse pointer to not quite reach the edge of the screen
+ Fixed it so that you can now choose not to show the “new device” help tip.
+ New Icons, yey!

Grab the download over on the download page now!

Oh BTW we decided to go with the “e” in a bordered square for our app icon:

1 2 3 4 5 6 7 8 9  Scroll to top