4 Commits

Author SHA1 Message Date
Alan Rynne 4f0a7b83a0 feat: Added url generic wildcard 2022-09-05 10:18:11 +02:00
Alan Rynne 209fde164c fix: Opened up access to any url 2022-09-05 10:17:12 +02:00
Alan Rynne 6053cc6657 fix: Allow all https communication. 2022-09-05 09:55:38 +02:00
Alan Rynne 7b5728904d feat: Updated default colors 2022-09-05 09:55:16 +02:00
3 changed files with 8 additions and 4 deletions
+3 -1
View File
@@ -150,7 +150,9 @@
"parameters": [
"https://speckle.xyz",
"https://*.speckle.xyz",
"https://*.speckle.dev"
"https://latest.speckle.dev",
"https://*.speckle.dev",
"*"
]
},
{
+3 -3
View File
@@ -15,9 +15,9 @@ export class CameraSettings {
}
export class ColorSettings {
public startColor: string = "#000000"
public midColor: string = "#000000"
public endColor: string = "#000000"
public startColor: string = "#31c116"
public midColor: string = "#fc8032"
public endColor: string = "#e70000"
public background: string = "#ffffff"
public getColorList() {
+2
View File
@@ -274,6 +274,8 @@ export class Visual implements IVisual {
break
}
}
if (cleanName.startsWith("data.")) cleanName = cleanName.split("data.")[0]
console.log("clean name", cleanName)
return cleanName
}