lumia-plugin 0.3.8 → 0.3.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -114,12 +114,21 @@
114
114
  "type": "EQUAL_SELECTION",
115
115
  "description": "Matches dynamic.value against the selected color.",
116
116
  "selections": [
117
- { "label": "Blue", "value": "#00c2ff" },
118
- { "label": "Red", "value": "#ff5f5f" }
117
+ {
118
+ "label": "Blue",
119
+ "value": "#00c2ff"
120
+ },
121
+ {
122
+ "label": "Red",
123
+ "value": "#ff5f5f"
124
+ }
119
125
  ]
120
126
  }
121
127
  ]
122
128
  }
123
- ]
129
+ ],
130
+ "translations": {
131
+ "en": "./translations/en.json"
132
+ }
124
133
  }
125
134
  }
@@ -5,6 +5,6 @@
5
5
  "description": "Internal template illustrating settings, actions, variables, and alerts for Lumia Stream plugins.",
6
6
  "main": "main.js",
7
7
  "dependencies": {
8
- "@lumiastream/plugin": "^0.3.8"
8
+ "@lumiastream/plugin": "^0.3.9"
9
9
  }
10
10
  }
@@ -0,0 +1,10 @@
1
+ {
2
+ "message": "Stores the most recent message handled by the plugin.",
3
+ "showcase_plugin_message": "Stores the most recent message handled by the plugin.",
4
+ "username": "Stores the most recent username handled by the plugin.",
5
+ "showcase_plugin_username": "Stores the most recent username handled by the plugin.",
6
+ "color": "Tracks the color used by the latest sample alert.",
7
+ "showcase_plugin_color": "Tracks the color used by the latest sample alert.",
8
+ "duration": "Tracks the duration used by the latest sample alert.",
9
+ "showcase_plugin_duration": "Tracks the duration used by the latest sample alert."
10
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lumia-plugin",
3
- "version": "0.3.8",
3
+ "version": "0.3.9",
4
4
  "description": "Command-line tools for creating, building, and validating Lumia Stream plugins.",
5
5
  "bin": {
6
6
  "lumia-plugin": "scripts/cli.js"
@@ -24,7 +24,7 @@
24
24
  "author": "Lumia Stream",
25
25
  "license": "MIT",
26
26
  "dependencies": {
27
- "@lumiastream/plugin": "^0.3.8",
27
+ "@lumiastream/plugin": "^0.3.9",
28
28
  "jszip": "3.10.1"
29
29
  }
30
30
  }