Skip to content

Commit

Permalink
signal breaking change
Browse files Browse the repository at this point in the history
  • Loading branch information
JarbasAl committed Jan 31, 2024
1 parent 9f05293 commit 8b25f8b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
3 changes: 0 additions & 3 deletions ovos_gui/namespace.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,8 +215,6 @@ def load_data(self, name: str, value: str):
namespace=self.skill_id,
data={name: value}
)

# LOG.info(f"Setting data {message} in GUI namespace \"{self.skill_id}\"")
send_message_to_gui(message)

def unload_data(self, name: str):
Expand All @@ -230,7 +228,6 @@ def unload_data(self, name: str):
property=name,
namespace=self.skill_id
)
# LOG.info(f"Deleting data {message} from GUI namespace \"{self.skill_id}\"")
send_message_to_gui(message)

def get_position_of_last_item_in_data(self) -> int:
Expand Down
6 changes: 3 additions & 3 deletions ovos_gui/version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# START_VERSION_BLOCK
VERSION_MAJOR = 0
VERSION_MINOR = 0
VERSION_BUILD = 4
VERSION_ALPHA = 5
VERSION_MINOR = 1
VERSION_BUILD = 0
VERSION_ALPHA = 1
# END_VERSION_BLOCK

0 comments on commit 8b25f8b

Please sign in to comment.