-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e4bbe96
commit fb7c3cc
Showing
3 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import { type Addon } from "../types"; | ||
import versions from "@site/docs/assets/json/Ayon_addons_version.json"; | ||
|
||
const addon: Addon = { | ||
title: "OpenRV", | ||
description: | ||
"Open RV is an image and sequence viewer for VFX and animation artists. Open RV is high-performant, hardware accelerated, and pipeline-friendly.", | ||
icon: "openrv-icon.svg", | ||
badge: versions.OpenRV_Badge, | ||
features: [ | ||
"workfiles", | ||
"loader", | ||
"publisher", | ||
"sceneManager", | ||
"libraryLoader", | ||
], | ||
products: ["workfile"], | ||
docs: { | ||
user: "addon_openrv_artist", | ||
}, | ||
github: "https://github.com/ynput/ayon-openrv", | ||
}; | ||
|
||
export default addon; |