Skip to content

Commit a32e9e1

Browse files
committed
Plugin should shut down more gracefully.
Code refinements.
1 parent e59d07b commit a32e9e1

File tree

6 files changed

+380
-371
lines changed

6 files changed

+380
-371
lines changed

_changelog.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
v0.8.01
2+
- Plugin should shut down more gracefully.
3+
- Code refinements.
4+
15
v0.7.57
26
- Moves 'None' options in drop-down lists to bottom of list (per Indigo
37
standard.)

index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
<!DOCTYPE html>
22
<html lang="en">
3-
<Title>
4-
Matplotlib Plugin for Indigo
5-
</Title>
63

74
<head>
85
<meta http-equiv="refresh" content="0; url=https://github.com/DaveL17/matplotlib/wiki" />
6+
<Title>
7+
Matplotlib Plugin for Indigo
8+
</Title>
99
</head>
1010

1111
<header>
12-
<img style="margin: 0px auto; display: block" src="https://github.com/DaveL17/matplotlib/wiki/img/img_MatplotlibLogo.png" alt="Matplotlib Plugin Logo">
12+
<img style="margin: auto; display: block" src="https://github.com/DaveL17/matplotlib/wiki/img/img_MatplotlibLogo.png" alt="Matplotlib Plugin Logo">
1313
</header>
1414

1515
<body>

matplotlib.indigoPlugin/Contents/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<plist version="1.0">
44
<dict>
55
<key>PluginVersion</key>
6-
<string>0.7.57</string>
6+
<string>0.8.01</string>
77
<key>ServerApiVersion</key>
88
<string>2.0</string>
99
<key>IwsApiVersion</key>

matplotlib.indigoPlugin/Contents/Server Plugin/DLFramework/DLFramework.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"""
55
DLFramework is a framework to consolidate methods used throughout all
66
Indigo plugins with the com.fogbert.indigoPlugin.xxxx bundle identifier.
7+
.
78
"""
89

910
import ast
@@ -137,7 +138,7 @@ def deviceAndVariableList(self):
137138
devices_and_variables_list = []
138139
[devices_and_variables_list.append((dev.id, u"(D) {0}".format(dev.name))) for dev in indigo.devices]
139140
[devices_and_variables_list.append((var.id, u"(V) {0}".format(var.name))) for var in indigo.variables]
140-
devices_and_variables_list.append(('-1','%%separator%%'),)
141+
devices_and_variables_list.append(('-1', '%%separator%%'),)
141142
devices_and_variables_list.append(('None', 'None'),)
142143
return devices_and_variables_list
143144

0 commit comments

Comments
 (0)