Skip to content
This repository has been archived by the owner on Feb 18, 2023. It is now read-only.

Commit

Permalink
ADD: Updating version number for update V0.0.4.
Browse files Browse the repository at this point in the history
  • Loading branch information
PiloeGAO committed May 23, 2021
1 parent 7fc9624 commit 04c0f28
Show file tree
Hide file tree
Showing 38 changed files with 46 additions and 39 deletions.
2 changes: 1 addition & 1 deletion Hestia/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
:file: __init__.py
:brief: Initialize file.
:author: PiloeGAO (Leo DEPOIX)
:version: 0.0.3
:version: 0.0.4
"""

from os import sys, path
Expand Down
2 changes: 1 addition & 1 deletion Hestia/core/IOUtils.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
:file: IOUtils.py
:brief: IO functions.
:author: PiloeGAO (Leo DEPOIX)
:version: 0.0.3
:version: 0.0.4
"""
import sys, os, shutil, subprocess

Expand Down
2 changes: 1 addition & 1 deletion Hestia/core/category.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
:file: category.py
:brief: Category base class.
:author: PiloeGAO (Leo DEPOIX)
:version: 0.0.3
:version: 0.0.4
"""

class Category():
Expand Down
2 changes: 1 addition & 1 deletion Hestia/core/entity.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
:file: entity.py
:brief: Entity base class.
:author: PiloeGAO (Leo DEPOIX)
:version: 0.0.3
:version: 0.0.4
"""

class Entity():
Expand Down
2 changes: 1 addition & 1 deletion Hestia/core/links/dccs/defaultIntegration.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
:file: defaultIntegration.py
:brief: Default integration class.
:author: PiloeGAO (Leo DEPOIX)
:version: 0.0.3
:version: 0.0.4
"""

class DefaultIntegration(object):
Expand Down
2 changes: 1 addition & 1 deletion Hestia/core/links/dccs/guerillaIntegration.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
:file: guerillaIntegration.py
:brief: Guerilla Render integration class.
:author: PiloeGAO (Leo DEPOIX)
:version: 0.0.3
:version: 0.0.4
"""
import os

Expand Down
2 changes: 1 addition & 1 deletion Hestia/core/links/dccs/mayaIntegration.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
:file: mayaIntegration.py
:brief: Maya integration class.
:author: PiloeGAO (Leo DEPOIX)
:version: 0.0.3
:version: 0.0.4
"""
import os

Expand Down
2 changes: 1 addition & 1 deletion Hestia/core/links/projectManagers/defaultWrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
:file: defaultWrapper.py
:brief: Default wrapper class.
:author: PiloeGAO (Leo DEPOIX)
:version: 0.0.3
:version: 0.0.4
"""
import getpass

Expand Down
2 changes: 1 addition & 1 deletion Hestia/core/links/projectManagers/kitsuWrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
:file: kitsuWrapper.py
:brief: Kitsu wrapper class.
:author: PiloeGAO (Leo DEPOIX)
:version: 0.0.3
:version: 0.0.4
"""
import os, json, sys
import gazu
Expand Down
4 changes: 2 additions & 2 deletions Hestia/core/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
:file: manager.py
:brief: Manager class.
:author: PiloeGAO (Leo DEPOIX)
:version: 0.0.3
:version: 0.0.4
"""
import shutil, logging
import tempfile, atexit
Expand All @@ -23,7 +23,7 @@ class Manager():
projects (list(class: "Project"), optional): Projects list. Defaults to [].
"""
def __init__(self, integration = "standalone", projects = [Project(name="local", description="Local file system.")], **kwargs):
self.__version = "0.0.4Dev"
self.__version = "0.0.4"

# Loading preferences.
self.__preferences = Preferences(manager=self)
Expand Down
2 changes: 1 addition & 1 deletion Hestia/core/preferences.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
:file: preferences.py
:brief: Preference class.
:author: PiloeGAO (Leo DEPOIX)
:version: 0.0.3
:version: 0.0.4
"""
try:
import configparser
Expand Down
2 changes: 1 addition & 1 deletion Hestia/core/project.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
:file: project.py
:brief: Project class.
:author: PiloeGAO (Leo DEPOIX)
:version: 0.0.3
:version: 0.0.4
"""
import os

Expand Down
2 changes: 1 addition & 1 deletion Hestia/core/task.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
:file: task.py
:brief: Task base class.
:author: PiloeGAO (Leo DEPOIX)
:version: 0.0.2
:version: 0.0.4
"""

class Task():
Expand Down
2 changes: 1 addition & 1 deletion Hestia/core/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
:file: version.py
:brief: Version base class.
:author: PiloeGAO (Leo DEPOIX)
:version: 0.0.3
:version: 0.0.4
"""
from os import path

Expand Down
2 changes: 1 addition & 1 deletion Hestia/dccs/guerilla/plugins/launchHestiaBrowser.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
:package: Hestia
:file: launchHestiaBrowser.py
:author: ldepoix
:version: 0.0.3
:version: 0.0.4
:brief: Class to start UI from Guerilla Render.
"""
from guerilla import Modifier, Document, pwarning
Expand Down
2 changes: 1 addition & 1 deletion Hestia/dccs/maya/scripts/launchHestiaBrowser.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
:package: Hestia
:file: launchHestiaBrowser.py
:author: ldepoix
:version: 0.0.3
:version: 0.0.4
:brief: Class to start UI from Autodesk Maya.
'''

Expand Down
2 changes: 1 addition & 1 deletion Hestia/dccs/maya/scripts/userSetup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
:package: Hestia
:file: userSetup.py
:author: ldepoix
:version: 0.0.3
:version: 0.0.4
:brief: Autodesk Maya user setup script.
'''

Expand Down
2 changes: 1 addition & 1 deletion Hestia/dccs/maya/scripts/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
:package: Hestia
:file: utils.py
:author: ldepoix
:version: 0.0.3
:version: 0.0.4
:brief: Utils functions for Hestia.
'''

Expand Down
2 changes: 1 addition & 1 deletion Hestia/loginWindow.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
:package: Hestia
:file: loginWindow.py
:author: PiloeGAO (Leo DEPOIX)
:version: 0.0.3
:version: 0.0.4
:brief: Class to create the login window based on QtWidgets.
"""
import os
Expand Down
2 changes: 1 addition & 1 deletion Hestia/mainWindow.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
:package: Hestia
:file: mainWindow.py
:author: PiloeGAO (Leo DEPOIX)
:version: 0.0.3
:version: 0.0.4
:brief: Class to create the main window based on QtWidgets.
"""
try:
Expand Down
2 changes: 1 addition & 1 deletion Hestia/preferencesWindow.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
:package: Hestia
:file: preferencesWindow.py
:author: PiloeGAO (Leo DEPOIX)
:version: 0.0.3
:version: 0.0.4
:brief: Class to create the preferences window based on QtWidgets.
"""
try:
Expand Down
2 changes: 1 addition & 1 deletion Hestia/publishWindow.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
:package: Hestia
:file: publishWindow.py
:author: PiloeGAO (Leo DEPOIX)
:version: 0.0.2
:version: 0.0.4
:brief: Class to create the publish window based on QtWidgets.
"""
import os
Expand Down
2 changes: 1 addition & 1 deletion Hestia/ui/contentView.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
:package: Hestia
:file: contentView.py
:author: PiloeGAO (Leo DEPOIX)
:version: 0.0.3
:version: 0.0.4
:brief: Class to create the content view of the window.
"""
import os
Expand Down
2 changes: 1 addition & 1 deletion Hestia/ui/folderTreeView.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
:package: Hestia
:file: folderTreeView.py
:author: PiloeGAO (Leo DEPOIX)
:version: 0.0.3
:version: 0.0.4
:brief: Class to create the folder tree of the window.
"""
try:
Expand Down
2 changes: 1 addition & 1 deletion Hestia/ui/footer.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
:package: Hestia
:file: footer.py
:author: PiloeGAO (Leo DEPOIX)
:version: 0.0.3
:version: 0.0.4
:brief: Class to create the footer of the window.
"""
try:
Expand Down
2 changes: 1 addition & 1 deletion Hestia/ui/header.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
:package: Hestia
:file: header.py
:author: PiloeGAO (Leo DEPOIX)
:version: 0.0.3
:version: 0.0.4
:brief: Class to create the header of the window.
"""
import os
Expand Down
2 changes: 1 addition & 1 deletion Hestia/ui/widgets/categoryWidget.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
:file: categoryWidget.py
:brief: Category widget.
:author: PiloeGAO (Leo DEPOIX)
:version: 0.0.3
:version: 0.0.4
"""
try:
from PySide2.QtCore import *
Expand Down
2 changes: 1 addition & 1 deletion Hestia/ui/widgets/dropDown.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
:file: dropDown.py
:brief: Drop down field with text.
:author: PiloeGAO (Leo DEPOIX)
:version: 0.0.3
:version: 0.0.4
"""
try:
from PySide2.QtCore import *
Expand Down
2 changes: 1 addition & 1 deletion Hestia/ui/widgets/entityWidget.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
:file: entityWidget.py
:brief: Entity widget.
:author: PiloeGAO (Leo DEPOIX)
:version: 0.0.3
:version: 0.0.4
"""
from gazu import asset
from Hestia.core.category import Category
Expand Down
2 changes: 1 addition & 1 deletion Hestia/ui/widgets/gridWidget.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
:file: gridWidget.py
:brief: Custom grid system for PyQt.
:author: PiloeGAO (Leo DEPOIX)
:version: 0.0.3
:version: 0.0.4
"""
try:
from PySide2.QtCore import *
Expand Down
2 changes: 1 addition & 1 deletion Hestia/ui/widgets/iconButton.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
:file: iconButton.py
:brief: Button with icon.
:author: PiloeGAO (Leo DEPOIX)
:version: 0.0.3
:version: 0.0.4
"""
import os

Expand Down
2 changes: 1 addition & 1 deletion Hestia/ui/widgets/lineEdit.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
:file: lineEdit.py
:brief: Drop down field with text.
:author: PiloeGAO (Leo DEPOIX)
:version: 0.0.3
:version: 0.0.4
"""
try:
from PySide2.QtCore import *
Expand Down
2 changes: 1 addition & 1 deletion Hestia/ui/widgets/pathSelector.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
:file: pathSelector.py
:brief: Path field with search button.
:author: PiloeGAO (Leo DEPOIX)
:version: 0.0.3
:version: 0.0.4
"""
try:
from PySide2.QtCore import *
Expand Down
2 changes: 1 addition & 1 deletion Hestia/ui/widgets/sliderSelector.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
:file: sliderSelector.py
:brief: Slider with labels under it.
:author: PiloeGAO (Leo DEPOIX)
:version: 0.0.3
:version: 0.0.4
"""

try:
Expand Down
2 changes: 1 addition & 1 deletion Hestia/ui/widgets/textEdit.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
:file: textEdit.py
:brief: Text Edit field with title.
:author: PiloeGAO (Leo DEPOIX)
:version: 0.0.2
:version: 0.0.4
"""
try:
from PySide2.QtCore import *
Expand Down
Binary file removed Hestia_0.0.2.png
Binary file not shown.
Binary file added Hestia_0.0.4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 10 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
# Hestia
**Project in active development! Please don't use it in production.**

An assets browser and a shot assembly system for CGI/VFX productions.
A production management system for CGI/VFX productions.

![Hestia (Asset Browser - V0.0.2)](./Hestia_0.0.2.png)
![Hestia (Asset Browser - V0.0.4)](./Hestia_0.0.4.png)

## FEATURES
- [x] Mostly implemented Kitsu link.
- [x] Preferences system to store login credentials.
- [x] Maya integration with Asset import/reference system.
- [x] Maya scene setup.
- [x] Basic publish system.

## Getting Started

Expand All @@ -23,6 +24,8 @@ You can download stable versions in github release or clone the repository.
git clone https://github.com/PiloeGAO/Hestia.git
```

Download pre-build binaries for [FFMPEG](https://www.ffmpeg.org/) (Needed for playblast publishing - Only available for Windows).

## Installation

1. Create a virtual environment for Python2.7 or Python 3.8.
Expand All @@ -39,6 +42,8 @@ For Python 3.8:
pip install -r requirements3.txt
```

3. Create a folder "ffmpeg" inside of "./Hestia/core" and copy ffmpeg files inside.

## Usage

Start the standalone app with this command:
Expand Down Expand Up @@ -70,7 +75,9 @@ Trello Board (with releases notes): https://trello.com/b/90POyZZC/hestia-dev-boa
- [x] Designing the main system
- [ ] Building the HSHOT file exporter
- [ ] Building the HSHOT file importer

- Publish System:
- [x] Basic publish system to Kitsu.
- [x] Take screenshot/playblast directly inside of Maya.

## Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Expand Down

0 comments on commit 04c0f28

Please sign in to comment.