Skip to content

Commit

Permalink
Update for Symphony 2.3 compatibility. Closes #5
Browse files Browse the repository at this point in the history
  • Loading branch information
tachyondecay committed May 9, 2012
1 parent 371e352 commit 39ff0a8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 16 deletions.
7 changes: 4 additions & 3 deletions README.md
@@ -1,9 +1,9 @@
# Number Field

- Version: 1.4.1
- Version: 1.5
- Author: Symphony Team (team@symphony-cms.com)
- Release Date: 11th May 2011
- Requirements: Symphony 2
- Release Date: 8th May 2012
- Requirements: Symphony 2.3

## Overview

Expand All @@ -17,6 +17,7 @@ Input field that provides built-in number validation and numeric sorting.

## Changelog

- **1.5** Updates for Symphony 2.3.
- **1.4.1** Slight cleanup for Symphony 2.2
- **1.4** In the publish area, will no longer get errors when leaving a non-required number field empty.
- **1.3** Filtering supports ranges via the use of MySQL expressions. To filter by ranges, add `mysql:` to the beginning of the filter input. Use `value` for field name. E.G. `mysql: value >= 1.01 AND value <= {$price}`
13 changes: 0 additions & 13 deletions extension.driver.php
Expand Up @@ -2,19 +2,6 @@

Class extension_numberfield extends Extension {

public function about() {
return array(
'name' => 'Field: Number',
'version' => '1.5',
'release-date' => '2011-12-17',
'author' => array(
'name' => 'Symphony Team',
'website' => 'http://www.symphony-cms.com',
'email' => 'team@symphony-cms.com'
)
);
}

public function uninstall() {
Symphony::Database()->query("DROP TABLE `tbl_fields_number`");
}
Expand Down
3 changes: 3 additions & 0 deletions extension.meta.xml
Expand Up @@ -14,6 +14,9 @@
</author>
</authors>
<releases>
<release version="1.6" date="2012-05-08" min="2.3">
- Update for Symphony 2.3 compatibility
</release>
<release version="1.5" date="2011-12-17" min="2.1.0" max="2.2.x">
- New filtering support which is safer and more powerful. `X to B`,
`equal to or less than X`, `less than X` and their `greater than` variants
Expand Down

0 comments on commit 39ff0a8

Please sign in to comment.