Pages

Showing posts with label spanD. Show all posts
Showing posts with label spanD. Show all posts

April 12, 2014

spanD v1.1

New version of spanD is now with new dev design too!
 

In latest version
  • New dev design
  • New icon
  • Shows result only if it is not NULL (difference between 0 and NULL)
  • Smart focusing: when You focusing on span calculation, the bottom part of date addition is shadowed. And vice versa

March 3, 2014

spanD v1.0

New version of SpanD (old name Span of Datetimes) is available at Google Store!


In latest version
  • Name change: Span of Datetimes -> SpanD
  • Code refactoring according to Google Security Tips
  • Now You can insert date and time into one field
  • Now You it is possible to use d.mm.yyyy format (1.01.2014, not 01.01.2014)




See new posts:
April 12, 2014 spanD v1.1

January 3, 2014

Span Of Datetimes v0.4

New version of Chrome extension Span Of Datetimes v0.4.

In Latest Version:
  * Code refactoring according to uncle Bob's clean code philosophy
  * Small design changes
  * Hot keys:
    - Arrow Down key in the upper block field sets focus on the bottom block
    - Arrow Down key in the bottom section sets focus on the second line
    - Arrow Up key in the bottom block field sets focus on the upper block
    - Arrow Up key in the upper section sets focus on the first line
    - Arrow Right key sets focus on the right field (if there is one)
    - Arrow Left key sets focus on the left field (if there is one)

And now source code is available on GitLab - https://gitlab.com/irina-ivanova-extensions/spanD (finally I understood the value of release history).




See new posts:
March 3, 2014 spanD v1.0
April 12, 2014 spanD v1.1

December 3, 2013

Span Of Datetimes v0.3

New version of Span Of Datetimes:

In new version:
* I did some code refactoring according to uncle Bob's clean code philosophy
* Now work with minutes too
* Addition result is automatically selected and ready for copying
* Addition result is now in more familiar format: for example if time is 5 hours and 1 minute in shows 05:01, not 5:1



See new posts:
January 3, 2014 Span Of Datetimes v0.4
March 3, 2014 spanD v1.0
April 12, 2014 spanD v1.1

November 20, 2013

Span Of Datetimes v0.2

As usually, right after pilot version there is second version on the other day - Span of Datetimes.

In new version:
* Fixed tab indexes:
-- 1 start date
-- 2 end date (because dates are mandatory and time not)
-- 3 start time
-- 4 end time
-- 5 days to add
-- 6 hours to add
-- 7 date for adding
-- 8 time for adding

* New regular expression: now it is possible to enter a date and time without a symbols. For example 10122013 1000.

* Arrow down key in the first section (span) is makes to jump focus down and arrow up key in the second section (adding) sets focus in the first section.



See new posts:
December 3, 2013 Span Of Datetimes v0.3
January 3, 2014 Span Of Datetimes v0.4
March 3, 2014 spanD v1.0
April 12, 2014 spanD v1.1

November 18, 2013

Span Of Datetimes v0.1

I have a lot of situations at work when I have to test the span of dates. For example, software should automatically calculate the date in 160 days from sysdate. Or it should calculate the number of days between two dates. Usually I used different online calculators for that kind of stuff, but at last decided to write a Chrome extension (which is more convenient).

So, here is the pilot version of Span of Datetimes.

As always, the main point is in simplicity and speed: you can use this extension only with keyboard - completely without a mouse!

Useful things that may be interesting for users:
* Regexps for inserting dates and times:
Dates /([0,1,2,3][0-9])[\., \,, \-, \/]([0,1,2][0-9])[\., \,, \-, \/]([1,2][0-9][0-9][0-9])/
Times /([0,1,2][0-9])[:, \., \,. \-]([0,1,2,3,4,5][0-9])/

* Format for date input is european DD.MM.YYYY.
* Works with negative values! For example, add -1 days to 02.10.2013 will be 01.10.2013.

One thing that I really wanted to do, but didn't succeed - masks for input fields. I used a jQuery for writing a mask functions and it worked in usual HTML page, but it didn't work if a opened same page in extension mode. So it some kind of jQuery-extension integration problem. So I hope I'll do masks in next versions.

And useful tip about browser - you can configure hot-keys for extension in the Google Chrome: * open the extensions tab - chrome://extensions/; * Link "Configure commands" at the bottom;
* Choose an extension and type a shortcut.



See new posts:
November 20, 2013 Span Of Datetimes v0.2
December 3, 2013 Span Of Datetimes v0.3
January 3, 2014 Span Of Datetimes v0.4
March 3, 2014 spanD v1.0
April 12, 2014 spanD v1.1