Skip to content

Commit 1a91917

Browse files
- Updated Light sources
- Updated Light sources schema v2 - Updated link checker to check only v2
1 parent e3a671c commit 1a91917

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/check-broken-links.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ jobs:
1717
id: lychee
1818
uses: lycheeverse/lychee-action@v1
1919
with:
20-
args: --verbose --no-progress './deploy/**/*.json'
20+
args: --verbose --no-progress './deploy/v2/*.json'
2121
env:
2222
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

deploy/lightsources.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158
"intensity": 405000
159159
}
160160
],
161-
"sourceSize": [100],
161+
"sourceSize": [11.5],
162162
"unit": ["lx"],
163163
"type": ["spot"],
164164
"category": ["Artificial"],

deploy/openapi-schema-v2.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ components:
379379
description: 'The maximum beam angle in degrees. For a directional light, this specifies angular diameter instead.'
380380
sourceSize:
381381
type: array
382-
description: 'The size of the light source in centimeters. [Radius] if point or spot. [Width, Height] if surface. [Length, Radius] if cylinder.'
382+
description: 'The size of the light source in centimeters. [Radius] if point or spot. [Width, Height] if surface. [Radius, Length] if cylinder.'
383383
minItems: 1
384384
maxItems: 2
385385
items:

deploy/v2/lightsources.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@
192192
"intensity": 41300
193193
}
194194
],
195-
"sourceSize": [100],
195+
"sourceSize": [11.5],
196196
"unit": ["lx"],
197197
"type": ["spot"],
198198
"category": ["Artificial"],
@@ -478,7 +478,7 @@
478478
}
479479
],
480480
"unit": ["lm"],
481-
"sourceSize": [60, 1.5],
481+
"sourceSize": [1.5, 60],
482482
"type": ["cylinder"],
483483
"category": ["Artificial"],
484484
"references": [

schemas/schema-lightsources-v2.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@
119119
"default": 90
120120
},
121121
"sourceSize": {
122-
"description": "The size of the light source in centimeters. [Radius] if point or spot. [Width, Height] if surface. [Length, Radius] if cylinder.",
122+
"description": "The size of the light source in centimeters. [Radius] if point or spot. [Width, Height] if surface. [Radius, Length] if cylinder.",
123123
"type": "array",
124124
"items": {
125125
"type": "number"

0 commit comments

Comments
 (0)