Skip to content

Commit b57ae57

Browse files
committed
2 parents d09bc24 + 7eec562 commit b57ae57

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

metadata.txt

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,19 @@
11
[general]
22
name=TimeManager
33
description=TimeManager adds time controls to QGIS. Using these time controls, you can animate vector features based on a time attribute. There is also an experimental raster layer support. You can create animations directly in the map window and export image series.
4-
version=1.3
4+
version=1.4
55
qgisMinimumVersion=2.3
6-
author=Anita Graser
6+
author=Anita Graser, Carolinux
77
email=anitagraser@gmx.at
8-
changelog=1.3
9-
- fixed #71 Shapefile Date 'D' Fields Fail OGR Query, thanks to https://github.com/riggsd
10-
- code support for tweaking the onscreen time stamp, thanks to https://github.com/riggsd
8+
changelog=1.4
9+
numerous fixes by https://github.com/carolinux:
10+
- fixed #64 Export Video error: no attribute 'animationFrameCounter'
11+
- fixed #26 mktime out of range
12+
- fixed #81 error message for export video errors on Mac
13+
- fixed #28 argument 1 has unexpected type 'float'
14+
- fixed #85 locale support
15+
- fixed #83 support for YYYY-MM-DDTHH:MM:SS timestamp format
16+
- fixed #79 support delimited text files
1117
tags=spatio-temporal,time,animation
1218
icon=icon.png
1319
experimental=True

timemanagercontrol.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def __init__(self,iface):
3737
self.iface.newProjectCreated.connect(self.disableAnimationExport)
3838

3939
# this signal is responsible for keeping the animation running
40-
self.iface.mapCanvas().renderComplete.connect(self.waitAfterRenderComplete)
40+
self.iface.mapCanvas().mapCanvasRefreshed.connect(self.waitAfterRenderComplete)
4141

4242
# establish connections to QgsMapLayerRegistry
4343
QgsMapLayerRegistry.instance().layerWillBeRemoved.connect(self.timeLayerManager.removeTimeLayer)

0 commit comments

Comments
 (0)