mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-27 06:12:19 +01:00
bump version and add version to client addon
This commit is contained in:
parent
b92b7f5231
commit
196d307a57
4 changed files with 17 additions and 1 deletions
|
|
@ -1,6 +1,9 @@
|
|||
from .version import __version__
|
||||
from .addon import UnrealAddon
|
||||
|
||||
|
||||
__all__ = (
|
||||
"__version__",
|
||||
|
||||
"UnrealAddon",
|
||||
)
|
||||
|
|
|
|||
|
|
@ -2,11 +2,14 @@ import os
|
|||
import re
|
||||
from ayon_core.addon import AYONAddon, IHostAddon
|
||||
|
||||
from .version import __version__
|
||||
|
||||
UNREAL_ROOT_DIR = os.path.dirname(os.path.abspath(__file__))
|
||||
|
||||
|
||||
class UnrealAddon(AYONAddon, IHostAddon):
|
||||
name = "unreal"
|
||||
version = __version__
|
||||
host_name = "unreal"
|
||||
|
||||
def get_global_environments(self):
|
||||
|
|
|
|||
3
server_addon/unreal/client/ayon_unreal/version.py
Normal file
3
server_addon/unreal/client/ayon_unreal/version.py
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
"""Package declaring AYON addon 'unreal' version."""
|
||||
__version__ = "0.2.0"
|
||||
|
|
@ -1,3 +1,10 @@
|
|||
name = "unreal"
|
||||
title = "Unreal"
|
||||
version = "0.1.0"
|
||||
version = "0.2.0"
|
||||
|
||||
client_dir = "ayon_unreal"
|
||||
|
||||
ayon_required_addons = {
|
||||
"core": ">0.3.2",
|
||||
}
|
||||
ayon_compatible_addons = {}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue