Skip to content

Commit

Permalink
Update references to the new repo location (#457)
Browse files Browse the repository at this point in the history
* Update references to the new repo location
* Bump some versions
  • Loading branch information
peternewman authored and FloEdelmann committed Mar 28, 2018
1 parent 9af02d7 commit 1e46f6c
Show file tree
Hide file tree
Showing 144 changed files with 174 additions and 174 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Open Fixture Library [![Build Status](https://img.shields.io/travis/FloEdelmann/open-fixture-library/master.svg?label=tests)](https://travis-ci.org/FloEdelmann/open-fixture-library) [![Code quality](https://img.shields.io/codacy/grade/73096865e9f44a7bb246a318ffc8e68b.svg)](https://www.codacy.com/app/FloEdelmann/open-fixture-library) [![Greenkeeper badge](https://badges.greenkeeper.io/FloEdelmann/open-fixture-library.svg)](https://greenkeeper.io/)
# Open Fixture Library [![Build Status](https://img.shields.io/travis/OpenLightingProject/open-fixture-library/master.svg?label=tests)](https://travis-ci.org/OpenLightingProject/open-fixture-library) [![Code quality](https://img.shields.io/codacy/grade/73096865e9f44a7bb246a318ffc8e68b.svg)](https://www.codacy.com/app/OpenLightingProject/open-fixture-library) [![Greenkeeper badge](https://badges.greenkeeper.io/OpenLightingProject/open-fixture-library.svg)](https://greenkeeper.io/)

<a href="./ui/static/ofl-logo.svg"><img alt="OFL logo" src="https://cdn.rawgit.com/FloEdelmann/open-fixture-library/master/ui/static/ofl-logo.svg" width="250" /></a>
<a href="./ui/static/ofl-logo.svg"><img alt="OFL logo" src="https://cdn.rawgit.com/OpenLightingProject/open-fixture-library/master/ui/static/ofl-logo.svg" width="250" /></a>

To use lighting control software like [QLC+](http://www.qlcplus.org/), [DMXControl](https://www.dmxcontrol.org/) or [e:cue](http://www.ecue.de/), you need fixture definition files that describe your lighting hardware. Since one software can usually only understand its own fixture definition format, switching between different programs can be difficult.

Expand Down
2 changes: 1 addition & 1 deletion app.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Open Fixture Library",
"description": "An open source library for lighting technology's fixture definition files",
"repository": "https://github.com/FloEdelmann/open-fixture-library",
"repository": "https://github.com/OpenLightingProject/open-fixture-library",
"logo": "https://open-fixture-library.org/ofl-logo.svg",
"keywords": ["dmx", "dmx512", "ecue", "fixture", "fixtures", "lighting", "qlc"],
"image": "heroku/nodejs"
Expand Down
2 changes: 1 addition & 1 deletion cli/make-test-fixtures.js
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ function getMarkdownCode() {
// Header
mdLines[0] = `|`;
for (const fixture of fixtures) {
mdLines[0] += ` | [*${fixture.man}* ${fixture.name}](https://github.com/FloEdelmann/open-fixture-library/blob/master/fixtures/${fixture.man}/${fixture.key}.json)`;
mdLines[0] += ` | [*${fixture.man}* ${fixture.name}](https://github.com/OpenLightingProject/open-fixture-library/blob/master/fixtures/${fixture.man}/${fixture.key}.json)`;
}
mdLines[1] = `|-`.repeat(fixtures.length + 1);

Expand Down
10 changes: 5 additions & 5 deletions docs/CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# Contributing Guidelines

We believe in the power of open source development and want to encourage everyone to contribute to this project. This document should help new developers and documents our coding workflow. If there are any questions left, don't hesitate to [open a new issue](https://github.com/FloEdelmann/open-fixture-library/issues/new) explaining that you haven't found the information in the docs.
We believe in the power of open source development and want to encourage everyone to contribute to this project. This document should help new developers and documents our coding workflow. If there are any questions left, don't hesitate to [open a new issue](https://github.com/OpenLightingProject/open-fixture-library/issues/new) explaining that you haven't found the information in the docs.

## Developer vibes

Please keep being friendly and don't troll. See our [Code of Conduct](CODE_OF_CONDUCT.md) for more information on this.

## Issues

You have an idea about a new feature or you spotted a mistake? Feel free to create an [issue](https://github.com/FloEdelmann/open-fixture-library/issues) in which you describe the problem / the feature requirements. Please try to find similar issues first though, and add your information there to keep it organized.
You have an idea about a new feature or you spotted a mistake? Feel free to create an [issue](https://github.com/OpenLightingProject/open-fixture-library/issues) in which you describe the problem / the feature requirements. Please try to find similar issues first though, and add your information there to keep it organized.

As soon as an issue is assigned to somebody, it means that this person is responsible for fixing it.

Expand All @@ -24,9 +24,9 @@ Now, everything's installed and should be working. To start the website server a
## Where you can help

* Add new fixtures (either via the Fixture Editor or by manually writing a [fixture format JSON](fixture-format.md))
* Browse the [`good-first-issues` tag](https://github.com/FloEdelmann/open-fixture-library/issues?q=is:open+is:issue+label:%22good+first+issue%22) to find some easy tasks
* Browse the [`good-first-issues` tag](https://github.com/OpenLightingProject/open-fixture-library/issues?q=is:open+is:issue+label:%22good+first+issue%22) to find some easy tasks
* Improve the [documentation](README.md)
* Add new [plugins](https://github.com/FloEdelmann/open-fixture-library/issues?q=is%3Aopen+is%3Aissue+label%3Anew-plugin) (use existing ones as reference and look at the [plugin documentation](plugins.md))
* Add new [plugins](https://github.com/OpenLightingProject/open-fixture-library/issues?q=is%3Aopen+is%3Aissue+label%3Anew-plugin) (use existing ones as reference and look at the [plugin documentation](plugins.md))
* Implement your own idea (please create a new issue first if it's no bugfix or very minor change)

## Workflow: How to implement a feature
Expand All @@ -35,7 +35,7 @@ Now, everything's installed and should be working. To start the website server a
2. Setup your local installation (see above) with your fork
3. [Create a new branch](https://help.github.com/articles/creating-and-deleting-branches-within-your-repository/) for your feature
4. Do the needed changes, commit and push them
5. Create a [pull request](https://github.com/FloEdelmann/open-fixture-library/compare) to merge your changes back into our project
5. Create a [pull request](https://github.com/OpenLightingProject/open-fixture-library/compare) to merge your changes back into our project

You can also create the pull request if you're not done yet to involve the reviewers into the development process and get help if you're stuck. Please include *WIP* (work in progress) in the pull request title in this case.

Expand Down
2 changes: 1 addition & 1 deletion docs/ui.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ Please stick to the [code style guidelines](CONTRIBUTING.md#code-style). If a fu

Every time the [Travis tests](testing.md) for the commits in the **master branch** have passed, the new version is automatically deployed to <https://open-fixture-library.org/> (see the [`server/` directory](../server/)).

Each **pull request** `#xyz` (e.g. [#223](https://github.com/FloEdelmann/open-fixture-library/pull/223)) is automatically deployed to `https://open-fixture-library-pr-xyz.herokuapp.com/` on [Heroku](https://www.heroku.com/) (configurable with [`app.json`](../app.json)). It is refreshed with each commit to the feature branch without waiting for any tests to pass.
Each **pull request** `#xyz` (e.g. [#223](https://github.com/OpenLightingProject/open-fixture-library/pull/223)) is automatically deployed to `https://open-fixture-library-pr-xyz.herokuapp.com/` on [Heroku](https://www.heroku.com/) (configurable with [`app.json`](../app.json)). It is refreshed with each commit to the feature branch without waiting for any tests to pass.
2 changes: 1 addition & 1 deletion fixtures/5star-systems/spica-250m.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://raw.githubusercontent.com/FloEdelmann/open-fixture-library/master/schemas/fixture.json",
"$schema": "https://raw.githubusercontent.com/OpenLightingProject/open-fixture-library/master/schemas/fixture.json",
"name": "Spica 250M",
"shortName": "Spica250M",
"categories": ["Moving Head", "Color Changer"],
Expand Down
2 changes: 1 addition & 1 deletion fixtures/abstract/twister-4.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://raw.githubusercontent.com/FloEdelmann/open-fixture-library/master/schemas/fixture.json",
"$schema": "https://raw.githubusercontent.com/OpenLightingProject/open-fixture-library/master/schemas/fixture.json",
"name": "Twister 4",
"shortName": "Twister4",
"categories": ["Flower", "Color Changer"],
Expand Down
2 changes: 1 addition & 1 deletion fixtures/adb/alc4.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://raw.githubusercontent.com/FloEdelmann/open-fixture-library/master/schemas/fixture.json",
"$schema": "https://raw.githubusercontent.com/OpenLightingProject/open-fixture-library/master/schemas/fixture.json",
"name": "ALC4",
"shortName": "alc4",
"categories": ["Blinder", "Color Changer"],
Expand Down
2 changes: 1 addition & 1 deletion fixtures/adb/europe-105.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://raw.githubusercontent.com/FloEdelmann/open-fixture-library/master/schemas/fixture.json",
"$schema": "https://raw.githubusercontent.com/OpenLightingProject/open-fixture-library/master/schemas/fixture.json",
"name": "Europe 105",
"shortName": "ADBEurope105",
"categories": ["Dimmer"],
Expand Down
2 changes: 1 addition & 1 deletion fixtures/american-dj/auto-spot-150.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://raw.githubusercontent.com/FloEdelmann/open-fixture-library/master/schemas/fixture.json",
"$schema": "https://raw.githubusercontent.com/OpenLightingProject/open-fixture-library/master/schemas/fixture.json",
"name": "Auto Spot 150",
"shortName": "ADJAutoSpot150",
"categories": ["Moving Head", "Color Changer"],
Expand Down
2 changes: 1 addition & 1 deletion fixtures/american-dj/boom-box-fx2.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://raw.githubusercontent.com/FloEdelmann/open-fixture-library/master/schemas/fixture.json",
"$schema": "https://raw.githubusercontent.com/OpenLightingProject/open-fixture-library/master/schemas/fixture.json",
"name": "Boom Box Fx2",
"shortName": "ADJBoomBoxFx2",
"categories": ["Laser", "Color Changer"],
Expand Down
2 changes: 1 addition & 1 deletion fixtures/american-dj/fog-fury-jett-pro.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://raw.githubusercontent.com/FloEdelmann/open-fixture-library/master/schemas/fixture.json",
"$schema": "https://raw.githubusercontent.com/OpenLightingProject/open-fixture-library/master/schemas/fixture.json",
"name": "Fog Fury Jett Pro",
"shortName": "FuryJettPro",
"categories": ["Smoke", "Color Changer"],
Expand Down
2 changes: 1 addition & 1 deletion fixtures/american-dj/galaxian-3d.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://raw.githubusercontent.com/FloEdelmann/open-fixture-library/master/schemas/fixture.json",
"$schema": "https://raw.githubusercontent.com/OpenLightingProject/open-fixture-library/master/schemas/fixture.json",
"name": "Galaxian 3D",
"categories": ["Laser"],
"meta": {
Expand Down
2 changes: 1 addition & 1 deletion fixtures/american-dj/quad-phase-hp.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://raw.githubusercontent.com/FloEdelmann/open-fixture-library/master/schemas/fixture.json",
"$schema": "https://raw.githubusercontent.com/OpenLightingProject/open-fixture-library/master/schemas/fixture.json",
"name": "Quad Phase HP",
"shortName": "QPHP",
"categories": ["Flower", "Color Changer"],
Expand Down
2 changes: 1 addition & 1 deletion fixtures/american-dj/revo-4-ir.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://raw.githubusercontent.com/FloEdelmann/open-fixture-library/master/schemas/fixture.json",
"$schema": "https://raw.githubusercontent.com/OpenLightingProject/open-fixture-library/master/schemas/fixture.json",
"name": "Revo 4 IR",
"shortName": "Revo4IR",
"categories": ["Flower", "Matrix", "Color Changer"],
Expand Down
2 changes: 1 addition & 1 deletion fixtures/american-dj/revo-burst.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://raw.githubusercontent.com/FloEdelmann/open-fixture-library/master/schemas/fixture.json",
"$schema": "https://raw.githubusercontent.com/OpenLightingProject/open-fixture-library/master/schemas/fixture.json",
"name": "Revo Burst",
"shortName": "ADJRevoBurst",
"categories": ["Flower", "Effect"],
Expand Down
2 changes: 1 addition & 1 deletion fixtures/american-dj/revo-sweep.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://raw.githubusercontent.com/FloEdelmann/open-fixture-library/master/schemas/fixture.json",
"$schema": "https://raw.githubusercontent.com/OpenLightingProject/open-fixture-library/master/schemas/fixture.json",
"name": "Revo Sweep",
"shortName": "ADJRevoSweep",
"categories": ["Flower"],
Expand Down
2 changes: 1 addition & 1 deletion fixtures/american-dj/xs-400.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://raw.githubusercontent.com/FloEdelmann/open-fixture-library/master/schemas/fixture.json",
"$schema": "https://raw.githubusercontent.com/OpenLightingProject/open-fixture-library/master/schemas/fixture.json",
"name": "XS 400",
"shortName": "XS400",
"categories": ["Moving Head", "Color Changer"],
Expand Down
2 changes: 1 addition & 1 deletion fixtures/ayra/tdc-triple-burst.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://raw.githubusercontent.com/FloEdelmann/open-fixture-library/master/schemas/fixture.json",
"$schema": "https://raw.githubusercontent.com/OpenLightingProject/open-fixture-library/master/schemas/fixture.json",
"name": "TDC Triple Burst",
"shortName": "AyraTDCTripleBurst",
"categories": ["Color Changer", "Effect"],
Expand Down
2 changes: 1 addition & 1 deletion fixtures/cameo/flash-matrix-250.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://raw.githubusercontent.com/FloEdelmann/open-fixture-library/master/schemas/fixture.json",
"$schema": "https://raw.githubusercontent.com/OpenLightingProject/open-fixture-library/master/schemas/fixture.json",
"name": "Flash Matrix 250",
"shortName": "CLFM250",
"categories": ["Matrix", "Strobe", "Blinder"],
Expand Down
2 changes: 1 addition & 1 deletion fixtures/cameo/flat-pro-18.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://raw.githubusercontent.com/FloEdelmann/open-fixture-library/master/schemas/fixture.json",
"$schema": "https://raw.githubusercontent.com/OpenLightingProject/open-fixture-library/master/schemas/fixture.json",
"name": "Flat Pro 18",
"shortName": "CLPFLATPRO18",
"categories": ["Color Changer"],
Expand Down
2 changes: 1 addition & 1 deletion fixtures/cameo/flat-pro-flood-ip65-tri.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://raw.githubusercontent.com/FloEdelmann/open-fixture-library/master/schemas/fixture.json",
"$schema": "https://raw.githubusercontent.com/OpenLightingProject/open-fixture-library/master/schemas/fixture.json",
"name": "Flat Pro Flood IP65 Tri",
"shortName": "CLFLOODIP65TRI",
"categories": ["Blinder", "Color Changer"],
Expand Down
2 changes: 1 addition & 1 deletion fixtures/cameo/gobo-scanner-80.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://raw.githubusercontent.com/FloEdelmann/open-fixture-library/master/schemas/fixture.json",
"$schema": "https://raw.githubusercontent.com/OpenLightingProject/open-fixture-library/master/schemas/fixture.json",
"name": "Gobo Scanner 80",
"shortName": "CLSCAN80W",
"categories": ["Scanner", "Color Changer"],
Expand Down
2 changes: 1 addition & 1 deletion fixtures/cameo/hydrabeam-100.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://raw.githubusercontent.com/FloEdelmann/open-fixture-library/master/schemas/fixture.json",
"$schema": "https://raw.githubusercontent.com/OpenLightingProject/open-fixture-library/master/schemas/fixture.json",
"name": "Hydrabeam 100",
"shortName": "CLHB100RGBW",
"categories": ["Moving Head", "Color Changer"],
Expand Down
2 changes: 1 addition & 1 deletion fixtures/cameo/hydrabeam-300-rgbw.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://raw.githubusercontent.com/FloEdelmann/open-fixture-library/master/schemas/fixture.json",
"$schema": "https://raw.githubusercontent.com/OpenLightingProject/open-fixture-library/master/schemas/fixture.json",
"name": "Hydrabeam 300 RGBW",
"shortName": "CLHB300RGBW",
"categories": ["Moving Head", "Color Changer"],
Expand Down
2 changes: 1 addition & 1 deletion fixtures/cameo/nanospot-120.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://raw.githubusercontent.com/FloEdelmann/open-fixture-library/master/schemas/fixture.json",
"$schema": "https://raw.githubusercontent.com/OpenLightingProject/open-fixture-library/master/schemas/fixture.json",
"name": "NanoSpot 120",
"shortName": "CLNS120",
"categories": ["Moving Head", "Color Changer"],
Expand Down
2 changes: 1 addition & 1 deletion fixtures/cameo/outdoor-par-tri-12.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://raw.githubusercontent.com/FloEdelmann/open-fixture-library/master/schemas/fixture.json",
"$schema": "https://raw.githubusercontent.com/OpenLightingProject/open-fixture-library/master/schemas/fixture.json",
"name": "Outdoor PAR Tri 12",
"shortName": "CLPSTTRI12IP",
"categories": ["Color Changer"],
Expand Down
2 changes: 1 addition & 1 deletion fixtures/cameo/storm.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://raw.githubusercontent.com/FloEdelmann/open-fixture-library/master/schemas/fixture.json",
"$schema": "https://raw.githubusercontent.com/OpenLightingProject/open-fixture-library/master/schemas/fixture.json",
"name": "STORM",
"shortName": "CLSTORM",
"categories": ["Flower", "Laser", "Strobe", "Color Changer"],
Expand Down
2 changes: 1 addition & 1 deletion fixtures/cameo/thunder-wash-100-rgb.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://raw.githubusercontent.com/FloEdelmann/open-fixture-library/master/schemas/fixture.json",
"$schema": "https://raw.githubusercontent.com/OpenLightingProject/open-fixture-library/master/schemas/fixture.json",
"name": "Thunder Wash 100 RGB",
"shortName": "CLTW100RGB",
"categories": ["Strobe", "Blinder", "Color Changer"],
Expand Down
2 changes: 1 addition & 1 deletion fixtures/cameo/thunder-wash-100-w.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://raw.githubusercontent.com/FloEdelmann/open-fixture-library/master/schemas/fixture.json",
"$schema": "https://raw.githubusercontent.com/OpenLightingProject/open-fixture-library/master/schemas/fixture.json",
"name": "Thunder Wash 100 W",
"shortName": "CLTW100W",
"categories": ["Strobe", "Blinder"],
Expand Down
2 changes: 1 addition & 1 deletion fixtures/cameo/thunder-wash-600-rgb.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://raw.githubusercontent.com/FloEdelmann/open-fixture-library/master/schemas/fixture.json",
"$schema": "https://raw.githubusercontent.com/OpenLightingProject/open-fixture-library/master/schemas/fixture.json",
"name": "Thunder Wash 600 RGB",
"shortName": "CLTW600RGB",
"categories": ["Strobe", "Blinder", "Color Changer"],
Expand Down
2 changes: 1 addition & 1 deletion fixtures/cameo/thunder-wash-600-w.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://raw.githubusercontent.com/FloEdelmann/open-fixture-library/master/schemas/fixture.json",
"$schema": "https://raw.githubusercontent.com/OpenLightingProject/open-fixture-library/master/schemas/fixture.json",
"name": "Thunder Wash 600 W",
"shortName": "CLTW600W",
"categories": ["Strobe", "Blinder"],
Expand Down
2 changes: 1 addition & 1 deletion fixtures/chauvet-dj/corepar-uv-usb.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://raw.githubusercontent.com/FloEdelmann/open-fixture-library/master/schemas/fixture.json",
"$schema": "https://raw.githubusercontent.com/OpenLightingProject/open-fixture-library/master/schemas/fixture.json",
"name": "COREpar UV USB",
"shortName": "ChauvetCOREparUV",
"categories": ["Other"],
Expand Down
2 changes: 1 addition & 1 deletion fixtures/chauvet-dj/gigbar-2.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://raw.githubusercontent.com/FloEdelmann/open-fixture-library/master/schemas/fixture.json",
"$schema": "https://raw.githubusercontent.com/OpenLightingProject/open-fixture-library/master/schemas/fixture.json",
"name": "GigBAR 2",
"categories": ["Color Changer", "Laser"],
"meta": {
Expand Down
2 changes: 1 addition & 1 deletion fixtures/chauvet-dj/slimpar-pro-h-usb.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://raw.githubusercontent.com/FloEdelmann/open-fixture-library/master/schemas/fixture.json",
"$schema": "https://raw.githubusercontent.com/OpenLightingProject/open-fixture-library/master/schemas/fixture.json",
"name": "SlimPAR Pro H USB",
"shortName": "ChauvetSlimPARProH",
"categories": ["Color Changer"],
Expand Down
2 changes: 1 addition & 1 deletion fixtures/chauvet-dj/slimpar-pro-qz12.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://raw.githubusercontent.com/FloEdelmann/open-fixture-library/master/schemas/fixture.json",
"$schema": "https://raw.githubusercontent.com/OpenLightingProject/open-fixture-library/master/schemas/fixture.json",
"name": "SlimPAR Pro QZ12",
"categories": ["Color Changer"],
"meta": {
Expand Down
2 changes: 1 addition & 1 deletion fixtures/chauvet-dj/slimpar-pro-w.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://raw.githubusercontent.com/FloEdelmann/open-fixture-library/master/schemas/fixture.json",
"$schema": "https://raw.githubusercontent.com/OpenLightingProject/open-fixture-library/master/schemas/fixture.json",
"name": "SlimPAR Pro W",
"shortName": "ChauvetSlimPARProW",
"categories": ["Color Changer"],
Expand Down
2 changes: 1 addition & 1 deletion fixtures/chauvet-dj/slimpar-q12-bt.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://raw.githubusercontent.com/FloEdelmann/open-fixture-library/master/schemas/fixture.json",
"$schema": "https://raw.githubusercontent.com/OpenLightingProject/open-fixture-library/master/schemas/fixture.json",
"name": "SlimPAR Q12 BT",
"shortName": "ChauvetSlimPARQ12BT",
"categories": ["Color Changer"],
Expand Down
2 changes: 1 addition & 1 deletion fixtures/chauvet-dj/slimpar-t12-bt.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://raw.githubusercontent.com/FloEdelmann/open-fixture-library/master/schemas/fixture.json",
"$schema": "https://raw.githubusercontent.com/OpenLightingProject/open-fixture-library/master/schemas/fixture.json",
"name": "SlimPAR T12 BT",
"shortName": "ChauvetSlimPART12BT",
"categories": ["Color Changer"],
Expand Down
2 changes: 1 addition & 1 deletion fixtures/chauvet-dj/washfx.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://raw.githubusercontent.com/FloEdelmann/open-fixture-library/master/schemas/fixture.json",
"$schema": "https://raw.githubusercontent.com/OpenLightingProject/open-fixture-library/master/schemas/fixture.json",
"name": "WashFX",
"categories": ["Color Changer"],
"meta": {
Expand Down
2 changes: 1 addition & 1 deletion fixtures/chroma-q/color-force-ii-12.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://raw.githubusercontent.com/FloEdelmann/open-fixture-library/master/schemas/fixture.json",
"$schema": "https://raw.githubusercontent.com/OpenLightingProject/open-fixture-library/master/schemas/fixture.json",
"name": "Color Force II 12",
"shortName": "CHCF212RGBA",
"categories": ["Color Changer"],
Expand Down
Loading

0 comments on commit 1e46f6c

Please sign in to comment.