Install

Works with Drupal: 7.x

Using Composer to manage Drupal site dependencies

Downloads

Download tar.gz 31.09 KB
MD5: e22a6b88fbb5430e46234e55754bc967
SHA-1: 40e8d84526f7e4c19de8984a25c1c81c418d1fe9
SHA-256: aea5023f6da444db773884f1a4394741b5d2ee2e4216adf2e474c27e8c7468a4
Download zip 35 KB
MD5: 26d6b097400311409803bebcdb7f25ab
SHA-1: 383953e400d8071513dd9dc9837f84a6881cc068
SHA-256: 8c81a8b0cecd047901cad9cc549153a745c7393fe7c954e54f5473cad138770c

Release notes

This release contains a number of minor bug fixes and enhancements.

Bug fixes

#1353332 - fix to two timezone notices on the widget form
#1353348 - fixed single value field widget labels (these were not showing)

Features

#1342642 - added time increment settings for minutes and seconds
Added standardized widget formatting of minutes and seconds to "00" to "59" (leading zeros)
Added two new year options: BC or BCE only displays. Years after 1BC are not suffixed with AD or CE for these values.
Added range separator option.

Data storage changes

Estimates are now used to pre-populate the corresponding components in the database. This will ensure that views will be able to use the main component columns even when only estimates are specified.

Alpha7 should see the timestamp column changed so that this will truly represent the stored data via the following algorithm.

timestamp = float_from_string(year + (month ? zp(month) : 00) + (day ? zp(day) : 00) + (hour ? zp(hour + 1) : 00) +  (minute ? zp(minute + 1) : 00) +  (second ? zp(second + 1) : 00));

function zp(value) {
  return zero_pad(value, 2)
}

This will allow better sorting of the values. For example: 2011-unknown-29 and 2011-01-29

Currently, the timestamp calculates these to be the same, although these are different. After these changes, the values will be 20110029 and 20110129, so the unknown month values will show before any values with known months.

Note: If it does not prove to hard, a helper module will be released at a latter date to fix entities, but for now, every entity needs to be edited and saved - without changing anything - to ensure that these fields become populated. Wait till alpha7 is released to ensure both changes are carried through.

Note that the timestamp column currently wildly inaccurate.

Note: timezone is used inconsistently and this will hopefully be fixed soon.

Created by: alan d.
Created on: 26 Nov 2011 at 16:18 UTC
Last updated: 17 Dec 2013 at 12:33 UTC
New features
Bug fixes
Unsupported

Other releases