Merge branch 'copy_and_paste' into develop

# Conflicts:
#	src-python/config.py
#	src-python/model.py
This commit is contained in:
misyaguziya
2026-01-10 02:19:01 +09:00
12 changed files with 374 additions and 6 deletions

View File

@@ -407,6 +407,11 @@ mapping = {
"/set/enable/websocket_server": {"status": True, "variable":controller.setEnableWebSocketServer},
"/set/disable/websocket_server": {"status": True, "variable":controller.setDisableWebSocketServer},
# Clipboard Settings
"/get/data/clipboard": {"status": True, "variable":controller.getClipboard},
"/set/enable/clipboard": {"status": True, "variable":controller.setEnableClipboard},
"/set/disable/clipboard": {"status": True, "variable":controller.setDisableClipboard},
# Advanced Settings
"/get/data/osc_ip_address": {"status": True, "variable":controller.getOscIpAddress},
"/set/data/osc_ip_address": {"status": True, "variable":controller.setOscIpAddress},