iOS remote client: native UIKit surface, WS logging, client-side layout persistence
- Add remote-client-ios: full native UIKit app with Objects/View/UILayout/Functions pattern - Widget hierarchy: BaseWidget → Fader, Toggle, Transport, Title, Feedback, LogWidget - LoggingVC: child VC embedded in LogWidget for live WS message inspection - Codable model: ModelPresetLoadToRemoteDevice with snake_case decoder strategy - Layout persistence: UserDefaults keyed by preset_uuid, fully client-side - WS logging: dedicated WS In/Out floating panels on desktop app - Remove HTTP server and JS client (replaced by native iOS app) - Add Xcode noise to .gitignore (xcuserstate, xcuserdata) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
+331
-36
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"__last_used__": "preset5",
|
||||
"__last_used__": "preset3",
|
||||
"presets": {
|
||||
"preset1": {
|
||||
"faders": [
|
||||
@@ -8,10 +8,10 @@
|
||||
"label": "Fader 1",
|
||||
"cc": 1,
|
||||
"ch": 1,
|
||||
"value": 38,
|
||||
"value": 69,
|
||||
"color": "Red",
|
||||
"pickup": false,
|
||||
"last_sent": 38,
|
||||
"last_sent": 69,
|
||||
"hw_cc": null,
|
||||
"hw_channel": null,
|
||||
"zone": null,
|
||||
@@ -23,10 +23,10 @@
|
||||
"label": "Fader 2",
|
||||
"cc": 1,
|
||||
"ch": 1,
|
||||
"value": 64,
|
||||
"value": 83,
|
||||
"color": "Gray",
|
||||
"pickup": false,
|
||||
"last_sent": 64,
|
||||
"last_sent": 83,
|
||||
"hw_cc": null,
|
||||
"hw_channel": null,
|
||||
"zone": "right",
|
||||
@@ -38,10 +38,10 @@
|
||||
"label": "Fader 3",
|
||||
"cc": 1,
|
||||
"ch": 1,
|
||||
"value": 64,
|
||||
"value": 56,
|
||||
"color": "Orange",
|
||||
"pickup": false,
|
||||
"last_sent": 64,
|
||||
"last_sent": 56,
|
||||
"hw_cc": null,
|
||||
"hw_channel": null,
|
||||
"zone": "left",
|
||||
@@ -61,20 +61,22 @@
|
||||
"center_index": 0,
|
||||
"zone_index": -1,
|
||||
"hw_cc": null,
|
||||
"hw_channel": null
|
||||
"hw_channel": null,
|
||||
"trigger_mode": "toggle"
|
||||
},
|
||||
{
|
||||
"uid": "73962e37-53b3-400f-a7e2-25ef7f1ea583",
|
||||
"label": "Toggle 2",
|
||||
"cc": 20,
|
||||
"ch": 1,
|
||||
"state": false,
|
||||
"state": true,
|
||||
"color": "Blue",
|
||||
"zone": "left",
|
||||
"center_index": 1,
|
||||
"zone_index": 0,
|
||||
"hw_cc": null,
|
||||
"hw_channel": null
|
||||
"hw_channel": null,
|
||||
"trigger_mode": "toggle"
|
||||
},
|
||||
{
|
||||
"uid": "b3cf419a-5183-4272-bd6f-44f858afbec8",
|
||||
@@ -87,7 +89,8 @@
|
||||
"center_index": 2,
|
||||
"zone_index": 1,
|
||||
"hw_cc": null,
|
||||
"hw_channel": null
|
||||
"hw_channel": null,
|
||||
"trigger_mode": "momentary"
|
||||
},
|
||||
{
|
||||
"uid": "c179bfea-deec-416a-b4aa-74e81b5cbe03",
|
||||
@@ -100,20 +103,22 @@
|
||||
"center_index": null,
|
||||
"zone_index": null,
|
||||
"hw_cc": null,
|
||||
"hw_channel": null
|
||||
"hw_channel": null,
|
||||
"trigger_mode": "toggle"
|
||||
},
|
||||
{
|
||||
"uid": "a5a50618-fc4c-446e-868e-e4eafa6254e7",
|
||||
"label": "Toggle 6",
|
||||
"cc": 20,
|
||||
"ch": 1,
|
||||
"state": false,
|
||||
"state": true,
|
||||
"color": "Gray",
|
||||
"zone": null,
|
||||
"center_index": null,
|
||||
"zone_index": null,
|
||||
"hw_cc": null,
|
||||
"hw_channel": null
|
||||
"hw_channel": null,
|
||||
"trigger_mode": "toggle"
|
||||
},
|
||||
{
|
||||
"uid": "f1775380-3390-4fbb-bd8b-8c30ff18f72a",
|
||||
@@ -126,7 +131,8 @@
|
||||
"center_index": null,
|
||||
"zone_index": null,
|
||||
"hw_cc": null,
|
||||
"hw_channel": null
|
||||
"hw_channel": null,
|
||||
"trigger_mode": "toggle"
|
||||
},
|
||||
{
|
||||
"uid": "2064f2ca-6d18-468b-bf45-9bcb1fa1247d",
|
||||
@@ -139,7 +145,8 @@
|
||||
"center_index": 4,
|
||||
"zone_index": -1,
|
||||
"hw_cc": null,
|
||||
"hw_channel": null
|
||||
"hw_channel": null,
|
||||
"trigger_mode": "toggle"
|
||||
}
|
||||
],
|
||||
"browser": {
|
||||
@@ -160,12 +167,20 @@
|
||||
"trigger_mode": "momentary"
|
||||
}
|
||||
},
|
||||
"big_title": "STRING THING",
|
||||
"preset_uuid": "8cbceb6b-ba5d-4b2c-8989-f921e4e3150d",
|
||||
"show_hide": {
|
||||
"fader": false,
|
||||
"toggle": false,
|
||||
"transport": false,
|
||||
"browser": false
|
||||
"fader": true,
|
||||
"toggle": true,
|
||||
"transport": true,
|
||||
"browser": true
|
||||
},
|
||||
"sections": {
|
||||
"preset_browser": true,
|
||||
"big_title": true,
|
||||
"fader_row": true,
|
||||
"toggle_row": true,
|
||||
"transport_row": true
|
||||
}
|
||||
},
|
||||
"preset2": {
|
||||
@@ -203,10 +218,10 @@
|
||||
"label": "Fader 1",
|
||||
"cc": 1,
|
||||
"ch": 1,
|
||||
"value": 64,
|
||||
"color": "Gray",
|
||||
"value": 43,
|
||||
"color": "Orange",
|
||||
"pickup": false,
|
||||
"last_sent": 64,
|
||||
"last_sent": 43,
|
||||
"hw_cc": null,
|
||||
"hw_channel": null,
|
||||
"zone": "left",
|
||||
@@ -218,10 +233,10 @@
|
||||
"label": "Fader 2",
|
||||
"cc": 1,
|
||||
"ch": 1,
|
||||
"value": 64,
|
||||
"color": "Gray",
|
||||
"value": 48,
|
||||
"color": "Pink",
|
||||
"pickup": false,
|
||||
"last_sent": 64,
|
||||
"last_sent": 48,
|
||||
"hw_cc": null,
|
||||
"hw_channel": null,
|
||||
"zone": null,
|
||||
@@ -233,10 +248,10 @@
|
||||
"label": "Fader 3",
|
||||
"cc": 1,
|
||||
"ch": 1,
|
||||
"value": 64,
|
||||
"color": "Gray",
|
||||
"value": 93,
|
||||
"color": "Yellow",
|
||||
"pickup": false,
|
||||
"last_sent": 64,
|
||||
"last_sent": 93,
|
||||
"hw_cc": null,
|
||||
"hw_channel": null,
|
||||
"zone": "right",
|
||||
@@ -247,7 +262,7 @@
|
||||
"toggles": [
|
||||
{
|
||||
"uid": "e291394c-cc09-4d3c-9ac3-ed5fe2803a46",
|
||||
"label": "Toggle 1",
|
||||
"label": "whatever",
|
||||
"cc": 20,
|
||||
"ch": 1,
|
||||
"state": false,
|
||||
@@ -278,13 +293,86 @@
|
||||
"trigger_mode": "momentary"
|
||||
}
|
||||
},
|
||||
"big_title": "",
|
||||
"preset_uuid": "7483fb5b-f47f-49e4-bccb-e8d20195078c",
|
||||
"show_hide": {
|
||||
"fader": false,
|
||||
"toggle": false,
|
||||
"transport": false,
|
||||
"transport": true,
|
||||
"browser": true
|
||||
}
|
||||
},
|
||||
"sections": {
|
||||
"preset_browser": true,
|
||||
"big_title": true,
|
||||
"fader_row": true,
|
||||
"toggle_row": true,
|
||||
"transport_row": true
|
||||
},
|
||||
"tablet_layout": [
|
||||
{
|
||||
"x": 550.3499755859375,
|
||||
"uid": "9ee09db7-2cf5-4ae6-a154-b25bb262565c",
|
||||
"w": 140,
|
||||
"h": 119,
|
||||
"y": 896.0333251953125
|
||||
},
|
||||
{
|
||||
"h": 119,
|
||||
"y": 885.0333251953125,
|
||||
"x": 368.2833251953125,
|
||||
"w": 140,
|
||||
"uid": "2a1fcb50-b9f2-4c33-bce0-5bd5cadd9c46"
|
||||
},
|
||||
{
|
||||
"y": 16,
|
||||
"uid": "title-big",
|
||||
"x": 16,
|
||||
"w": 300,
|
||||
"h": 44
|
||||
},
|
||||
{
|
||||
"uid": "bd0c9b6a-db81-411d-88b0-5ebae3c4e790",
|
||||
"h": 329,
|
||||
"x": 542.9166259765625,
|
||||
"y": 359.79998779296875,
|
||||
"w": 140
|
||||
},
|
||||
{
|
||||
"h": 329,
|
||||
"uid": "c98d2009-d186-489a-8883-ccbd612cb4af",
|
||||
"x": 39.433349609375,
|
||||
"y": 345.5,
|
||||
"w": 140
|
||||
},
|
||||
{
|
||||
"uid": "e2e8eb84-c2c9-4060-a818-b087ebd5aabd",
|
||||
"x": 714.5833740234375,
|
||||
"y": 892.8333740234375,
|
||||
"h": 119,
|
||||
"w": 140
|
||||
},
|
||||
{
|
||||
"w": 140,
|
||||
"h": 329,
|
||||
"y": 322.2833251953125,
|
||||
"x": 299.04998779296875,
|
||||
"uid": "7bf9e219-b7a6-4d8e-b317-da9eb18a8095"
|
||||
},
|
||||
{
|
||||
"x": 1138.566650390625,
|
||||
"y": 915.4666748046875,
|
||||
"h": 140,
|
||||
"uid": "e291394c-cc09-4d3c-9ac3-ed5fe2803a46",
|
||||
"w": 140
|
||||
},
|
||||
{
|
||||
"x": 158.23332977294922,
|
||||
"w": 140,
|
||||
"h": 119,
|
||||
"uid": "6b5bcaf7-1d01-4ccd-b23a-ebae8da57a7f",
|
||||
"y": 885.6500244140625
|
||||
}
|
||||
]
|
||||
},
|
||||
"whatever": {
|
||||
"faders": [],
|
||||
@@ -304,8 +392,8 @@
|
||||
"color": "Gray",
|
||||
"pickup": false,
|
||||
"last_sent": 85,
|
||||
"hw_cc": 67,
|
||||
"hw_channel": 1,
|
||||
"hw_cc": null,
|
||||
"hw_channel": null,
|
||||
"zone": null,
|
||||
"center_index": null,
|
||||
"zone_index": null
|
||||
@@ -439,9 +527,16 @@
|
||||
"preset_uuid": "3e9d51d2-cf55-49f4-80a4-2f7f4466f959",
|
||||
"show_hide": {
|
||||
"fader": false,
|
||||
"toggle": false,
|
||||
"transport": false,
|
||||
"toggle": true,
|
||||
"transport": true,
|
||||
"browser": true
|
||||
},
|
||||
"sections": {
|
||||
"preset_browser": true,
|
||||
"big_title": true,
|
||||
"fader_row": true,
|
||||
"toggle_row": true,
|
||||
"transport_row": true
|
||||
}
|
||||
},
|
||||
"new preset browser shit": {
|
||||
@@ -467,6 +562,206 @@
|
||||
}
|
||||
},
|
||||
"show_hide": {}
|
||||
},
|
||||
"rename whatever": {
|
||||
"faders": [
|
||||
{
|
||||
"uid": "14ec66c2-6a0a-418e-9240-776cb13f6e2e",
|
||||
"label": "Fader 1",
|
||||
"cc": 90,
|
||||
"ch": 15,
|
||||
"value": 85,
|
||||
"color": "Blue",
|
||||
"pickup": false,
|
||||
"last_sent": 85,
|
||||
"hw_cc": null,
|
||||
"hw_channel": null,
|
||||
"zone": null,
|
||||
"center_index": null,
|
||||
"zone_index": null
|
||||
},
|
||||
{
|
||||
"uid": "5aaecf41-3455-4fa2-bef1-ca02f5933a69",
|
||||
"label": "Fader 2",
|
||||
"cc": 1,
|
||||
"ch": 1,
|
||||
"value": 79,
|
||||
"color": "Blue",
|
||||
"pickup": false,
|
||||
"last_sent": 79,
|
||||
"hw_cc": null,
|
||||
"hw_channel": null,
|
||||
"zone": null,
|
||||
"center_index": null,
|
||||
"zone_index": null
|
||||
},
|
||||
{
|
||||
"uid": "e8e8cca8-3bad-49a5-8c91-d3a78d25a1eb",
|
||||
"label": "Fader 3",
|
||||
"cc": 1,
|
||||
"ch": 1,
|
||||
"value": 64,
|
||||
"color": "Blue",
|
||||
"pickup": false,
|
||||
"last_sent": 64,
|
||||
"hw_cc": null,
|
||||
"hw_channel": null,
|
||||
"zone": null,
|
||||
"center_index": null,
|
||||
"zone_index": null
|
||||
},
|
||||
{
|
||||
"uid": "ae9cd47a-96af-45a4-83e6-816916a65e0e",
|
||||
"label": "Fader 4",
|
||||
"cc": 1,
|
||||
"ch": 1,
|
||||
"value": 64,
|
||||
"color": "Green",
|
||||
"pickup": false,
|
||||
"last_sent": 64,
|
||||
"hw_cc": null,
|
||||
"hw_channel": null,
|
||||
"zone": null,
|
||||
"center_index": null,
|
||||
"zone_index": null
|
||||
},
|
||||
{
|
||||
"uid": "fee53fde-2f59-4800-8873-3d75ca619366",
|
||||
"label": "Fader 5",
|
||||
"cc": 1,
|
||||
"ch": 1,
|
||||
"value": 64,
|
||||
"color": "Green",
|
||||
"pickup": false,
|
||||
"last_sent": 64,
|
||||
"hw_cc": null,
|
||||
"hw_channel": null,
|
||||
"zone": null,
|
||||
"center_index": null,
|
||||
"zone_index": null
|
||||
},
|
||||
{
|
||||
"uid": "1783a98d-16c9-4a06-ae4d-0f6ab36d4421",
|
||||
"label": "Fader 6",
|
||||
"cc": 1,
|
||||
"ch": 1,
|
||||
"value": 64,
|
||||
"color": "Green",
|
||||
"pickup": false,
|
||||
"last_sent": 64,
|
||||
"hw_cc": null,
|
||||
"hw_channel": null,
|
||||
"zone": null,
|
||||
"center_index": null,
|
||||
"zone_index": null
|
||||
},
|
||||
{
|
||||
"uid": "2a55bdef-83aa-458f-a37d-e12a61e3e6a0",
|
||||
"label": "Fader 7",
|
||||
"cc": 1,
|
||||
"ch": 1,
|
||||
"value": 127,
|
||||
"color": "Green",
|
||||
"pickup": false,
|
||||
"last_sent": 127,
|
||||
"hw_cc": null,
|
||||
"hw_channel": null,
|
||||
"zone": null,
|
||||
"center_index": null,
|
||||
"zone_index": null
|
||||
}
|
||||
],
|
||||
"toggles": [
|
||||
{
|
||||
"uid": "46f17f40-1bb2-4527-b6c5-fd26e535beed",
|
||||
"label": "Toggle 1",
|
||||
"cc": 12,
|
||||
"ch": 1,
|
||||
"state": false,
|
||||
"color": "Green",
|
||||
"zone": null,
|
||||
"center_index": null,
|
||||
"zone_index": null,
|
||||
"hw_cc": null,
|
||||
"hw_channel": null,
|
||||
"trigger_mode": "toggle"
|
||||
},
|
||||
{
|
||||
"uid": "dbf062b0-6dfe-4a7b-af6a-cf47a943bdec",
|
||||
"label": "Toggle 2",
|
||||
"cc": 13,
|
||||
"ch": 1,
|
||||
"state": false,
|
||||
"color": "Teal",
|
||||
"zone": null,
|
||||
"center_index": null,
|
||||
"zone_index": null,
|
||||
"hw_cc": null,
|
||||
"hw_channel": null,
|
||||
"trigger_mode": "toggle"
|
||||
},
|
||||
{
|
||||
"uid": "93d02fb4-5327-4f0c-8cbd-6f0eb24f7195",
|
||||
"label": "Toggle 3",
|
||||
"cc": 14,
|
||||
"ch": 1,
|
||||
"state": false,
|
||||
"color": "Purple",
|
||||
"zone": null,
|
||||
"center_index": null,
|
||||
"zone_index": null,
|
||||
"hw_cc": null,
|
||||
"hw_channel": null,
|
||||
"trigger_mode": "toggle"
|
||||
},
|
||||
{
|
||||
"uid": "3147496a-7380-401b-9b95-947dc5458886",
|
||||
"label": "Toggle 4",
|
||||
"cc": 15,
|
||||
"ch": 1,
|
||||
"state": false,
|
||||
"color": "Pink",
|
||||
"zone": null,
|
||||
"center_index": null,
|
||||
"zone_index": null,
|
||||
"hw_cc": null,
|
||||
"hw_channel": null,
|
||||
"trigger_mode": "toggle"
|
||||
}
|
||||
],
|
||||
"browser": {
|
||||
"back": {
|
||||
"label": "Back",
|
||||
"cc": 22,
|
||||
"ch": 1,
|
||||
"hw_cc": null,
|
||||
"hw_channel": null,
|
||||
"trigger_mode": "momentary"
|
||||
},
|
||||
"fwd": {
|
||||
"label": "Fwd",
|
||||
"cc": 23,
|
||||
"ch": 1,
|
||||
"hw_cc": null,
|
||||
"hw_channel": null,
|
||||
"trigger_mode": "momentary"
|
||||
}
|
||||
},
|
||||
"big_title": "STRING SHORTS",
|
||||
"preset_uuid": "cf0155c7-81ea-4291-8680-6f058b80007f",
|
||||
"show_hide": {
|
||||
"fader": false,
|
||||
"toggle": false,
|
||||
"transport": true,
|
||||
"browser": true
|
||||
},
|
||||
"sections": {
|
||||
"preset_browser": true,
|
||||
"big_title": true,
|
||||
"fader_row": true,
|
||||
"toggle_row": true,
|
||||
"transport_row": true
|
||||
}
|
||||
}
|
||||
},
|
||||
"transport_preset": [
|
||||
|
||||
Reference in New Issue
Block a user