Releases: eoyilmaz/stalker
Releases · eoyilmaz/stalker
0.2.10.5
0.2.10.4
0.2.10.3
0.2.10.2
- Fix: Fixed a bug in
stalker.models.schedulers.TaskJugglerScheduler._create_tjp_file_content()
caused by non-ascii task names. - Fix: Removed the residual
RootFactory
class reference from
documentation. - New: Added to new functions called
utc_to_local
andlocal_to_utc
for UTC to Local time and vice versa conversion.
0.2.10.1
0.2.10
v0.2.5.4
-
Update: The following column names are updated:
Tasks._review_number
toTasks.review_number
Tasks._schedule_seconds
toTasks.schedule_seconds
Tasks._total_logged_seconds
toTasks.total_logged_seconds
Reviews._review_number
toReviews.review_number
Shots._cut_in
toShots.cut_in
Shots._cut_out
toShots.cut_out
Also updated alembic migration to create columns with those names.
-
Update: Updated Alembic revision
433d9caaafab
(the one related with
stalker 2.5 update) to also include following updates:- Create StatusLists for Tasks, Asset, Shot and Sequences and add all the
Statuses in the Task Status Workflow. - Remove
NEW
from all of the status lists of Task, Asset, Shot and
Sequence. - Update all the
PREV
tasks toWIP
to let them use the new Review
Workflow. - Update the
Tasks.review_number
to 0 for all tasks. - Create StatusLists and Statuses (
NEW
,RREV
,APP
) for Reviews. - Remove any other status then defined in the Task Status Workflow from Task,
Asset, Shot and Sequence status list.
- Create StatusLists for Tasks, Asset, Shot and Sequences and add all the
v0.2.5.3
v0.2.5.2
- New: Task instances now have two new properties called
path
and
absolute_path
. As in Version instances, these are the rendered version
of the related FilenameTemplate object in the related Project. Thepath
attribute is Repository root relative andabsolute_path
is the absolute
path including the OS dependent Repository path. - Update: Updated alembic revision with revision number "433d9caaafab" to
also create Statuses introduced with Stalker v0.2.5.
v0.2.5.1
- Update:
Version.__repr__
results with a more readable string. - New: Added a generalized generator called
stalker.models.walk_hierarchy()
that walks and yields the entities over
the given attribute in DFS or BFS fashion. - New: Added
Task.walk_hierarchy()
which iterates over the hierarchy of
the task. It walks in a breadth first fashion. Usemethod=0
to walk in
depth first. - New: Added
Task.walk_dependencies()
which iterates over the
dependencies of the task. It walks in a breadth first fashion. Use
method=0
to walk in depth first. - New: Added
Version.walk_hierarchy()
which iterates over the hierarchy
of the version. It walks in a depth first fashion. Usemethod=1
to walk
in breadth first. - New: Added
Version.walk_inputs()
which iterates over the inputs of
the version. It walks in a depth first fashion. Usemethod=1
to walk in
breath first. - Update:
stalker.models.check_circular_dependency()
function is now
usingstalker.models.walk_hierarchy()
instead of recursion over itself,
which makes it more robust in deep hierarchies. - Fix:
db.init()
now updates the statuses of already created status
lists forTask
,Asset
,Shot
andSequence
classes.