-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[0.5.1] Update metadata for new version
- Loading branch information
1 parent
ea26171
commit 949ee17
Showing
3 changed files
with
14 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,9 +5,9 @@ | |
A QGIS plugin | ||
Automatic attribute updates when creating or modifying vector features | ||
------------------- | ||
begin : 2016-05-22 | ||
begin : 2016-05-22 | ||
copyright : (C) 2016 by Germán Carrillo (GeoTux) | ||
email : [email protected] | ||
email : [email protected] | ||
***************************************************************************/ | ||
/*************************************************************************** | ||
|
@@ -19,14 +19,14 @@ | |
* * | ||
***************************************************************************/ | ||
""" | ||
def name(): | ||
return "AutoFields" | ||
def name(): | ||
return "AutoFields" | ||
|
||
def description(): | ||
return "Automatic vector field updates when modifying or creating features" | ||
|
||
def version(): | ||
return "Version 0.4.0" | ||
def version(): | ||
return "Version 0.5.1" | ||
|
||
def qgisMinimumVersion(): | ||
return "2.12" | ||
|
@@ -37,8 +37,6 @@ def icon(): | |
def authorName(): | ||
return "Germán Carrillo" | ||
|
||
def classFactory( iface ): | ||
def classFactory( iface ): | ||
from AutoFields import AutoFields | ||
return AutoFields( iface ) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,15 @@ | ||
[general] | ||
name=AutoFields | ||
description=Automatic attribute updates when creating or modifying vector features | ||
version=0.5.0 | ||
version=0.5.1 | ||
qgisMinimumVersion=2.12 | ||
category=Vector | ||
author=Germán Carrillo (GeoTux) | ||
[email protected] | ||
changelog= | ||
[0.5.1] (20171021) | ||
- Fix #3 (Unicode issue when exporting). | ||
- New donations section in about tab. | ||
[0.5.0] (20170420) | ||
- New buttons to export and import AutoFields to/from JSON files. | ||
- Context menu in 'List of AutoFields' tab to assing a disabled AutoField to | ||
|