mirror of
https://github.com/wakatime/sublime-wakatime.git
synced 2023-08-10 21:13:02 +03:00
Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
729a4360ba | |||
8f45de85ec | |||
4672f70c87 |
@ -3,6 +3,14 @@ History
|
||||
-------
|
||||
|
||||
|
||||
7.0.26 (2017-11-07)
|
||||
++++++++++++++++++
|
||||
|
||||
- Upgrade wakatime-cli to v9.0.1.
|
||||
- Fix bug causing 401 response when hidefilenames is enabled.
|
||||
`#wakatime/106 <https://github.com/wakatime/wakatime/issues/106>`_
|
||||
|
||||
|
||||
7.0.25 (2017-11-05)
|
||||
++++++++++++++++++
|
||||
|
||||
|
@ -7,7 +7,7 @@ Website: https://wakatime.com/
|
||||
==========================================================="""
|
||||
|
||||
|
||||
__version__ = '7.0.25'
|
||||
__version__ = '7.0.26'
|
||||
|
||||
|
||||
import sublime
|
||||
|
@ -1,7 +1,7 @@
|
||||
__title__ = 'wakatime'
|
||||
__description__ = 'Common interface to the WakaTime api.'
|
||||
__url__ = 'https://github.com/wakatime/wakatime'
|
||||
__version_info__ = ('9', '0', '0')
|
||||
__version_info__ = ('9', '0', '1')
|
||||
__version__ = '.'.join(__version_info__)
|
||||
__author__ = 'Alan Hamlett'
|
||||
__author_email__ = 'alan@wakatime.com'
|
||||
|
@ -107,9 +107,9 @@ def send_heartbeat(project=None, branch=None, hostname=None, stats={}, key=None,
|
||||
|
||||
# also delete any sensitive info when hiding file names
|
||||
sensitive = ['dependencies', 'lines', 'lineno', 'cursorpos', 'branch']
|
||||
for key in sensitive:
|
||||
if key in data:
|
||||
del data[key]
|
||||
for sensitiveKey in sensitive:
|
||||
if sensitiveKey in data:
|
||||
del data[sensitiveKey]
|
||||
|
||||
break
|
||||
except re.error as ex:
|
||||
|
Reference in New Issue
Block a user