Compare commits

..

2 Commits
1.3.1 ... 1.3.2

Author SHA1 Message Date
5969830ef6 updated wakatime package 2013-08-25 16:56:13 -07:00
7a2161b7dd v1.3.2 fix bug where LAST_FILE not correct value 2013-08-25 16:54:48 -07:00
2 changed files with 9 additions and 2 deletions

View File

@ -5,7 +5,7 @@ Maintainer: WakaTi.me <support@wakatime.com>
Website: https://www.wakati.me/
==========================================================="""
__version__ = '1.3.0'
__version__ = '1.3.2'
import sublime
import sublime_plugin
@ -135,11 +135,12 @@ class SendActionThread(threading.Thread):
self.force = force
self.debug = SETTINGS.get('debug')
self.api_key = SETTINGS.get('api_key', '')
self.last_file = LAST_FILE
def run(self):
if self.targetFile:
self.timestamp = time.time()
if self.force or self.isWrite or self.targetFile != LAST_FILE or enough_time_passed(self.timestamp):
if self.force or self.isWrite or self.targetFile != self.last_file or enough_time_passed(self.timestamp):
self.send()
def send(self):

View File

@ -2,6 +2,12 @@
History
-------
0.4.1 (2013-08-25)
++++++++++++++++++
- Fix bug causing requests library to omit POST content
0.4.0 (2013-08-15)
++++++++++++++++++