Procházet zdrojové kódy

release (#400)

* release

* minor fix test is instance is string
Nicolas Marcq před 7 roky
rodič
revize
bc01067a4a
3 změnil soubory, kde provedl 16 přidání a 2 odebrání
  1. 14 0
      CHANGELOG.md
  2. 1 1
      kalliope/_version.py
  3. 1 1
      kalliope/core/OrderAnalyser.py

+ 14 - 0
CHANGELOG.md

@@ -1,3 +1,17 @@
+v0.5.0 / 2018-01-13
+===================
+- Fix: recognition option in settings
+- Fix: no_voice flag in neurotransmitter neuron no longer lost
+- Fix: retrieve parameters when user order contains non matching words
+- Fix: Update Voicerss TTS
+- Fix: Usage of double brackets with json sentence
+- Fix: Remove acapela TTS
+- Feature: Kalliope can be started muted
+- Feature: add geolocation signals
+- Feature: add Watson TTS
+- Feature: Hook. WARNING: This is a breaking change. Settings must be updated
+- Feature: add normal, strict and ordered-strict order
+
 v0.4.6 / 2017-10-03
 ===================
 - add core neuron: neurotimer

+ 1 - 1
kalliope/_version.py

@@ -1,2 +1,2 @@
 # https://www.python.org/dev/peps/pep-0440/
-version_str = "0.5.0b"
+version_str = "0.5.0"

+ 1 - 1
kalliope/core/OrderAnalyser.py

@@ -60,7 +60,7 @@ class OrderAnalyser:
                     expected_matching_type = "normal"
                     signal_order = None
 
-                    if isinstance(signal.parameters, str):
+                    if isinstance(signal.parameters, str) or isinstance(signal.parameters, six.text_type):
                         signal_order = signal.parameters
                     if isinstance(signal.parameters, dict):
                         try: