Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add fixture chauvet-dj/mini-kinta-ils #3971

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

FloEdelmann
Copy link
Member

  • Add fixture chauvet-dj/mini-kinta-ils

Fixture warnings / errors

  • chauvet-dj/mini-kinta-ils
    • ❌ File does not match schema: fixture/wheels/Motor Rotation/slots must NOT have fewer than 2 items

Thank you @alii!

@FloEdelmann FloEdelmann added new-fixture Request or implementation to add a new fixture definition. via-editor Opened via the editor on the open-fixture-library.org website. labels May 15, 2024
Copy link

Export files validity

(Output of test script tests/github/exports-valid.js.)

Test the exported files of selected fixtures against the plugins' export tests.
You can run a plugin's export tests by executing:
$ node cli/run-export-test.js -p <plugin name> <fixtures>

✔️ chauvet-dj / mini-kinta-ils: d-light / attributes-correctness
  • ✔️ chauvet-dj/mini-kinta-ils-Default.xml
✔️ chauvet-dj / mini-kinta-ils: dmxcontrol3 / channel-numbers
  • ✔️ chauvet-dj-mini-kinta-ils-Default.xml
chauvet-dj / mini-kinta-ils: dragonframe / json-schema-conformity
  • ❌ chauvet-dj/mini-kinta-ils.jsonfixture/wheels/Motor Rotation/slots must NOT have fewer than 2 items
  • ✔️ manufacturers.json
✔️ chauvet-dj / mini-kinta-ils: millumin / json-schema-conformity
  • ✔️ chauvet-dj/mini-kinta-ils.json
chauvet-dj / mini-kinta-ils: qlcplus_4.12.2 / fixture-tool-validation
  • ❌ fixtures/Chauvet-DJ-Mini-Kinta-ILS.qxfNamespace(map=False, convert=None, validate=['.']) Starting validation ./manufacturer/fixture.qxf: Invalid physical dimensions detected 1 definitions processed. 1 errors detected
chauvet-dj / mini-kinta-ils: qlcplus_4.12.2 / xsd-schema-conformity
  • ❌ fixtures/Chauvet-DJ-Mini-Kinta-ILS.qxfElement '{http://www.qlcplus.org/FixtureDefinition}Dimensions', attribute 'Weight': [facet 'minExclusive'] The value '0' must be greater than '0'.
    Element '{http://www.qlcplus.org/FixtureDefinition}Dimensions', attribute 'Width': '0' is not a valid value of the atomic type 'xs:positiveInteger'.
    Element '{http://www.qlcplus.org/FixtureDefinition}Dimensions', attribute 'Height': '0' is not a valid value of the atomic type 'xs:positiveInteger'.
    Element '{http://www.qlcplus.org/FixtureDefinition}Dimensions', attribute 'Depth': '0' is not a valid value of the atomic type 'xs:positiveInteger'.

Copy link
Contributor

@kengruven kengruven left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good.

},
"modes": [
{
"name": "Default",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"name": "Default",
"name": "4-channel",

The webpage says 4 or 8, but the manual only has 4.

Comment on lines +165 to +168
"type": "Speed",
"speedStart": "slow",
"speedEnd": "fast",
"comment": "Automatic program"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"type": "Speed",
"speedStart": "slow",
"speedEnd": "fast",
"comment": "Automatic program"
"type": "Effect",
"effectName": "Automatic program",
"speedStart": "slow",
"speedEnd": "fast"

Comment on lines +172 to +173
"type": "Generic",
"comment": "Sound-active program"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"type": "Generic",
"comment": "Sound-active program"
"type": "Effect",
"effectName": "Sound-active program",
"soundControlled": true

},
{
"dmxRange": [6, 255],
"type": "StrobeSpeed",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"type": "StrobeSpeed",
"type": "ShutterStrobe",
"shutterEffect": "Strobe",

},
{
"dmxRange": [216, 230],
"type": "ColorPreset",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"type": "ColorPreset",
"type": "Effect",
"effectPreset": "ColorJump",

{
"dmxRange": [156, 170],
"type": "ColorPreset",
"comment": "Red, green and blue"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"comment": "Red, green and blue"
"comment": "Red, green and blue",
"colors": ["#ff0000", "#00ff00", "#0000ff"]

{
"dmxRange": [171, 185],
"type": "ColorPreset",
"comment": "Red, green and white"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"comment": "Red, green and white"
"comment": "Red, green and white",
"colors": ["#ff0000", "#00ff00", "#ffffff"]

{
"dmxRange": [186, 200],
"type": "ColorPreset",
"comment": "Green, blue and white"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"comment": "Green, blue and white"
"comment": "Green, blue and white",
"colors": ["#00ff00", "#0000ff", "#ffffff"]

{
"dmxRange": [201, 215],
"type": "ColorPreset",
"comment": "Red, green, blue and white"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"comment": "Red, green, blue and white"
"comment": "Red, green, blue and white",
"colors": ["#ff0000", "#00ff00", "#0000ff", "#ffffff"]

{
"dmxRange": [1, 127],
"type": "Rotation",
"speed": "stop",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"speed": "stop",
"angleStart": "0%",
"angleEnd": "100%",

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
new-fixture Request or implementation to add a new fixture definition. via-editor Opened via the editor on the open-fixture-library.org website.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants