-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathversion_history.html
749 lines (663 loc) · 28.3 KB
/
version_history.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="Docutils 0.16: http://docutils.sourceforge.net/" />
<title>Tik Manager Version History</title>
<style type="text/css">
/*
:Author: David Goodger ([email protected])
:Id: $Id: html4css1.css 7952 2016-07-26 18:15:59Z milde $
:Copyright: This stylesheet has been placed in the public domain.
Default cascading style sheet for the HTML output of Docutils.
See http://docutils.sf.net/docs/howto/html-stylesheets.html for how to
customize this style sheet.
*/
/* used to remove borders from tables and images */
.borderless, table.borderless td, table.borderless th {
border: 0 }
table.borderless td, table.borderless th {
/* Override padding for "table.docutils td" with "! important".
The right padding separates the table cells. */
padding: 0 0.5em 0 0 ! important }
.first {
/* Override more specific margin styles with "! important". */
margin-top: 0 ! important }
.last, .with-subtitle {
margin-bottom: 0 ! important }
.hidden {
display: none }
.subscript {
vertical-align: sub;
font-size: smaller }
.superscript {
vertical-align: super;
font-size: smaller }
a.toc-backref {
text-decoration: none ;
color: black }
blockquote.epigraph {
margin: 2em 5em ; }
dl.docutils dd {
margin-bottom: 0.5em }
object[type="image/svg+xml"], object[type="application/x-shockwave-flash"] {
overflow: hidden;
}
/* Uncomment (and remove this text!) to get bold-faced definition list terms
dl.docutils dt {
font-weight: bold }
*/
div.abstract {
margin: 2em 5em }
div.abstract p.topic-title {
font-weight: bold ;
text-align: center }
div.admonition, div.attention, div.caution, div.danger, div.error,
div.hint, div.important, div.note, div.tip, div.warning {
margin: 2em ;
border: medium outset ;
padding: 1em }
div.admonition p.admonition-title, div.hint p.admonition-title,
div.important p.admonition-title, div.note p.admonition-title,
div.tip p.admonition-title {
font-weight: bold ;
font-family: sans-serif }
div.attention p.admonition-title, div.caution p.admonition-title,
div.danger p.admonition-title, div.error p.admonition-title,
div.warning p.admonition-title, .code .error {
color: red ;
font-weight: bold ;
font-family: sans-serif }
/* Uncomment (and remove this text!) to get reduced vertical space in
compound paragraphs.
div.compound .compound-first, div.compound .compound-middle {
margin-bottom: 0.5em }
div.compound .compound-last, div.compound .compound-middle {
margin-top: 0.5em }
*/
div.dedication {
margin: 2em 5em ;
text-align: center ;
font-style: italic }
div.dedication p.topic-title {
font-weight: bold ;
font-style: normal }
div.figure {
margin-left: 2em ;
margin-right: 2em }
div.footer, div.header {
clear: both;
font-size: smaller }
div.line-block {
display: block ;
margin-top: 1em ;
margin-bottom: 1em }
div.line-block div.line-block {
margin-top: 0 ;
margin-bottom: 0 ;
margin-left: 1.5em }
div.sidebar {
margin: 0 0 0.5em 1em ;
border: medium outset ;
padding: 1em ;
background-color: #ffffee ;
width: 40% ;
float: right ;
clear: right }
div.sidebar p.rubric {
font-family: sans-serif ;
font-size: medium }
div.system-messages {
margin: 5em }
div.system-messages h1 {
color: red }
div.system-message {
border: medium outset ;
padding: 1em }
div.system-message p.system-message-title {
color: red ;
font-weight: bold }
div.topic {
margin: 2em }
h1.section-subtitle, h2.section-subtitle, h3.section-subtitle,
h4.section-subtitle, h5.section-subtitle, h6.section-subtitle {
margin-top: 0.4em }
h1.title {
text-align: center }
h2.subtitle {
text-align: center }
hr.docutils {
width: 75% }
img.align-left, .figure.align-left, object.align-left, table.align-left {
clear: left ;
float: left ;
margin-right: 1em }
img.align-right, .figure.align-right, object.align-right, table.align-right {
clear: right ;
float: right ;
margin-left: 1em }
img.align-center, .figure.align-center, object.align-center {
display: block;
margin-left: auto;
margin-right: auto;
}
table.align-center {
margin-left: auto;
margin-right: auto;
}
.align-left {
text-align: left }
.align-center {
clear: both ;
text-align: center }
.align-right {
text-align: right }
/* reset inner alignment in figures */
div.align-right {
text-align: inherit }
/* div.align-center * { */
/* text-align: left } */
.align-top {
vertical-align: top }
.align-middle {
vertical-align: middle }
.align-bottom {
vertical-align: bottom }
ol.simple, ul.simple {
margin-bottom: 1em }
ol.arabic {
list-style: decimal }
ol.loweralpha {
list-style: lower-alpha }
ol.upperalpha {
list-style: upper-alpha }
ol.lowerroman {
list-style: lower-roman }
ol.upperroman {
list-style: upper-roman }
p.attribution {
text-align: right ;
margin-left: 50% }
p.caption {
font-style: italic }
p.credits {
font-style: italic ;
font-size: smaller }
p.label {
white-space: nowrap }
p.rubric {
font-weight: bold ;
font-size: larger ;
color: maroon ;
text-align: center }
p.sidebar-title {
font-family: sans-serif ;
font-weight: bold ;
font-size: larger }
p.sidebar-subtitle {
font-family: sans-serif ;
font-weight: bold }
p.topic-title {
font-weight: bold }
pre.address {
margin-bottom: 0 ;
margin-top: 0 ;
font: inherit }
pre.literal-block, pre.doctest-block, pre.math, pre.code {
margin-left: 2em ;
margin-right: 2em }
pre.code .ln { color: grey; } /* line numbers */
pre.code, code { background-color: #eeeeee }
pre.code .comment, code .comment { color: #5C6576 }
pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold }
pre.code .literal.string, code .literal.string { color: #0C5404 }
pre.code .name.builtin, code .name.builtin { color: #352B84 }
pre.code .deleted, code .deleted { background-color: #DEB0A1}
pre.code .inserted, code .inserted { background-color: #A3D289}
span.classifier {
font-family: sans-serif ;
font-style: oblique }
span.classifier-delimiter {
font-family: sans-serif ;
font-weight: bold }
span.interpreted {
font-family: sans-serif }
span.option {
white-space: nowrap }
span.pre {
white-space: pre }
span.problematic {
color: red }
span.section-subtitle {
/* font-size relative to parent (h1..h6 element) */
font-size: 80% }
table.citation {
border-left: solid 1px gray;
margin-left: 1px }
table.docinfo {
margin: 2em 4em }
table.docutils {
margin-top: 0.5em ;
margin-bottom: 0.5em }
table.footnote {
border-left: solid 1px black;
margin-left: 1px }
table.docutils td, table.docutils th,
table.docinfo td, table.docinfo th {
padding-left: 0.5em ;
padding-right: 0.5em ;
vertical-align: top }
table.docutils th.field-name, table.docinfo th.docinfo-name {
font-weight: bold ;
text-align: left ;
white-space: nowrap ;
padding-left: 0 }
/* "booktabs" style (no vertical lines) */
table.docutils.booktabs {
border: 0px;
border-top: 2px solid;
border-bottom: 2px solid;
border-collapse: collapse;
}
table.docutils.booktabs * {
border: 0px;
}
table.docutils.booktabs th {
border-bottom: thin solid;
text-align: left;
}
h1 tt.docutils, h2 tt.docutils, h3 tt.docutils,
h4 tt.docutils, h5 tt.docutils, h6 tt.docutils {
font-size: 100% }
ul.auto-toc {
list-style-type: none }
</style>
</head>
<body>
<div class="document" id="tik-manager-version-history">
<h1 class="title">Tik Manager Version History</h1>
<div class="section" id="id1">
<h1>3.2</h1>
<ul class="simple">
<li><strong>Update.000</strong> Maya 2021 Python 3 compatibility</li>
<li><strong>Update.001</strong> Maya version nicename updates</li>
<li><strong>Fix.001</strong> (Published) Houdini Fps mismatch issue fixed</li>
<li><strong>Fix.002</strong> 3ds Max backward compatibility fix</li>
</ul>
</div>
<div class="section" id="id2">
<h1>3.1</h1>
<ul class="simple">
<li><strong>New.001</strong> Resolution presets are added to the Create new Project menu</li>
<li><strong>New.002</strong> (Published) Category orders now can be changed from settings => Project Settings => Categories</li>
<li><strong>Fix.003</strong> Maya Settings codec update fix</li>
<li><strong>Fix.004</strong> Executable inputs fixed. line inputs + apply button activation sensitivity updated with each keystroke</li>
<li><strong>New.005</strong> Multi referencing added. Now in reference mode multi selections are allowed and same reference can be multi imported using the dropbox next to the reference button</li>
<li><strong>Fix.006</strong> Show Preview folder issue fixed for sub-projects</li>
<li><strong>New.007</strong> New settings item for setting frame ranges while referencing scene. Default "Ask" behaviour can now be changed to "Never" and "Always". "Always" makes sense for lighting artists who references animation scenes and "Never" makes sense for animators who only reference rigs and assets.</li>
<li><strong>Fix.008</strong> Ingest scene as right click item hidden in reference mode</li>
<li><strong>Fix.009</strong> Check for updates (Help => Check for updates) command is up and working</li>
<li><strong>Fix.010</strong> Reference related buttons and not getting hidden in 3ds Max bug fixed</li>
<li><strong>Fix.011</strong> (Published) Critical error fixed with Standalone when a non-Tik Manager folder selected.</li>
<li><strong>Update.012</strong> Dictionary lookup for launching Maya from standalone version disabled. This will disregard minor versions and should work with upcoming ones.</li>
<li><strong>New.014</strong> (Published) Search box added for base scene lists</li>
</ul>
</div>
<div class="section" id="id3">
<h1>3.0</h1>
<ul class="simple">
<li><strong>New.0</strong> Photoshop module added</li>
<li><strong>Update.0</strong> Software icons added to each software</li>
<li><strong>Update.0</strong> Common database folder seperated from core files</li>
<li><strong>Fix.0</strong> Fixed Error in asset library Maya preventing the merge option.</li>
<li><strong>New.0</strong> One single executable installer (Windows)</li>
<li><strong>New.0</strong> Completely new settings menu</li>
<li><strong>Update.0</strong> Redesigned and improved Asset Library including 3ds Max and Houdini support</li>
<li><strong>New.0</strong> Transfer Central</li>
<li><strong>Update.0</strong> Image Viewer improvements</li>
<li><strong>New.0</strong> MP4 conversion support</li>
<li><strong>Update.0</strong> UI improvements</li>
<li><strong>Fix.23</strong> Fixed wrong header image in Image Viewer</li>
<li><strong>Fix.23</strong> Removed the excess "change remote directory' menu item</li>
<li><strong>Fix.24</strong> Fixed bug which prevents removing users (unicode)</li>
<li><strong>Fix.24</strong> Potential crash cause removed from settings _usersContent</li>
<li><strong>Update.24</strong> TikPhotoshop added to the executable and icon creation group in installer.</li>
<li><strong>Update.25</strong> UI Improvements</li>
<li><strong>Update.27</strong> Linux compatibility issues (path and ffmpeg)</li>
<li><strong>Fix.28</strong> Project Materials - Drag/Drop foolcheck</li>
<li><strong>Update.28</strong> Project Materials - statusbar updates</li>
<li><strong>Update.4</strong> Standalone and Photoshop modules using PyQt5 now.</li>
<li><strong>Update.42</strong> Maya Playblast - "As it is" options</li>
<li><strong>Update.43</strong> Naming Conventions - <subproject> added</li>
<li><strong>Fix.44</strong> Naming Conventions Bugfix</li>
<li><strong>Fix.45</strong> Crash fixed when the set user cannot be find (because of a replaced users db)</li>
<li><strong>Fix.46</strong> 3ds Max 2020 playblast issue fixed</li>
<li><strong>Fix.46</strong> Maya - Take Preview option selection bug fixed</li>
<li><strong>Fix.46</strong> Maya/TransferCentral capital extenstion compatibility</li>
<li><strong>Fix.46</strong> Project Favorites - Python3 compatibility issue fixed</li>
<li><strong>Fix.47</strong> Minor bug fixes with Set Project and Setup.py</li>
<li><strong>New.47</strong> Set Project / Recent projects added</li>
<li><strong>Fix.48</strong> setup.py fixed</li>
<li><strong>Fix.49</strong> SmNuke / Bug fixed when querying versions which also prevents saving base scenes (tested with Nuke v11)</li>
<li><strong>Fix.50</strong> Playblast Linux/Windows path clash fixed</li>
<li><strong>Fix.50</strong> Recent Projects / Unicode bug fixed</li>
<li><strong>Fix.51</strong> Project Materials / add content fix</li>
<li><strong>Update.51</strong> Transfer Central / auto naming considers sub-projects</li>
<li><strong>Fix.511</strong> Project Materials Python 3 Compatibility issue with material names</li>
<li><strong>Fix.512</strong> Settings / Bug that prevents removing categories</li>
<li><strong>Fix.513</strong> Maya/Preview minor bug fixes.</li>
<li><strong>Fix.513</strong> Houdini-Transfer Central/ error prevented when trying to export alembic and fbx formats with apprentice edition</li>
<li><strong>Fix.513</strong> Project Materials/ Unicode error when adding materials by browsing</li>
<li><strong>Update.514</strong> Network path support added</li>
<li><strong>Fix.6</strong> Photoshop Texture export fixed</li>
<li><strong>Fix.601</strong> CSS fix / tab label font sizes fixed to 12px</li>
<li><strong>Fix.601</strong> Maya playblast / fixed error caused by the mp4 conversion (arouse with v3.0.513)</li>
<li><strong>Fix.602</strong> Check New version python3 bug fixed</li>
<li><strong>Fix.603</strong> 3ds Max playblast filename issue prior to 2020 fixed</li>
<li><strong>Fix.604</strong> Project Materials / Bug fixes & minor improvements with File Transferring</li>
<li><strong>Fix.605</strong> Nuke Scene Manager / Critical bug fix (related with version checking) with Nuke version 10 which prevents Loading Base Scenes</li>
<li><strong>Fix.605</strong> Create New Project / client removed from the mandatory list</li>
<li><strong>Fix.605</strong> Standalone / Bug causing crash while showing project folder with empty projects fixed</li>
<li><strong>Update.606</strong> New Project Naming Conventions added for further customization. All fields defined in the Shared Settings/Conventions/New Project are mandatory</li>
<li><strong>New.700</strong> Project Report and progress</li>
<li><strong>Update.701</strong> Nuke / Loading method changes. Instead of opening a new Nuke instance, it closes the current one (after asking to save first) and opens the new one.</li>
<li><strong>Update.701</strong> Inno Setup default directory for common folder moved under My Documents for possible IO issues</li>
<li><strong>Fix.701</strong> Bug fixed with the Grand Total Work Hours in project report</li>
<li><strong>Update.701</strong> "Create Base Scene To:" feature added to the right click menu in Reference Mode</li>
<li><strong>Update.701</strong> Added Extra Columns options to the Base Scene List</li>
<li><strong>Fix.702</strong> Refresh issue with 'create base scene to:' fixed when categories added and removed within the same session.</li>
<li><strong>Fix.702</strong> Standalone software launcher updated</li>
<li><strong>Fix.703</strong> Project Materials / .doc and .docx removed from the valid brief feedback list (Why they were there?)</li>
<li><strong>New.703</strong> Nuke / Thumbnail images</li>
<li><strong>Fix.704</strong> UI Clash issues with MASH fixed</li>
<li><strong>Fix.705</strong> Standalone / Add Sub-Project Crash issue fixed</li>
<li><strong>Fix.706</strong> Maya 2019 false FPS alarm fixed</li>
<li><strong>Fix.707</strong> Utility fix for building BIN folder</li>
<li><strong>Fix.707</strong> Create New Project / Crash fixed while trying to create without filling the mandatory fields</li>
<li><strong>New.708</strong> Recent Projects added to the main UI</li>
<li><strong>Update.709</strong> Manual installation folders updated</li>
<li><strong>Fix.710</strong> 2020 incompatibility with size flag fixed</li>
<li><strong>New.800</strong> Ability to saving scenes to existing any base Scenes as versions added. Right Click Menu -> Ingest Current scene as the new version</li>
<li><strong>New.900</strong> Version notes became mandatory for all saves (Base, version, ingest)</li>
<li><strong>Fix.900</strong> False mismatch fixed for FPS fixed. (Nuke)</li>
</ul>
</div>
<div class="section" id="id4">
<h1>2.5</h1>
<ul class="simple">
<li><strong>Fix.0</strong> 3ds Max 2018-2019 support</li>
<li><strong>Update.0</strong> Installation Update - Callback functions wont cause a crash if the tik_manager path is not valid anymore</li>
<li><strong>Update.4</strong> Asset Library Alembic Support added</li>
<li><strong>Update.4</strong> Asset Library - Software version check before importing source</li>
<li><strong>Fix.4</strong> Import Base Scene option for 3ds Max fixed and renamed as Merge</li>
<li><strong>New.5</strong> Checking for updates and new versions option added</li>
<li><strong>New.5</strong> Import Footage option added Image Viewer for creating Read nodes in Nuke</li>
<li><strong>Update.5</strong> Default root path for Image Viewer changed to the project directory.</li>
<li><strong>Fix.5</strong> The bug when browsing the root in Image Viewer fixed. Now it starts browsing from the current defined root.</li>
<li><strong>Update.5</strong> Image Viewer default window sizes changed.</li>
<li><strong>Update.51</strong> Basic Houdini hiplc compatibility added</li>
<li><strong>Fix.51</strong> Linux and MacOs show in folder method fixed</li>
<li><strong>Update.52</strong> File name resolves added to save base Scene and Save Version Screens</li>
</ul>
</div>
<div class="section" id="id5">
<h1>2.4</h1>
<ul class="simple">
<li><strong>New.0:</strong> Asset Library added</li>
<li><strong>New.1:</strong> Sending to Batch Render and Image Sequencer options added to Image Manager (Maya)</li>
<li><strong>Update.1:</strong> SmNuke default categories changes (Only Comp by default)</li>
<li><strong>Update.2:</strong> SmStandalone now asks for the common database folder on first run.</li>
<li><strong>Update.2:</strong> Change Common Database option for SmStandalone</li>
<li><strong>Update.3:</strong> Add/Remove User GUI renewed</li>
</ul>
</div>
<div class="section" id="id6">
<h1>2.3</h1>
<ul class="simple">
<li><strong>Fix.001:</strong> Bug fix - 'make reference' checkbox removed from save version dialog if runs from Houdini</li>
<li><strong>Update.001:</strong> ImageViewer update --> date show/sort feature for collapsed sequences</li>
<li><strong>Update.001:</strong> ImageViewer update --> now accepts multiple folder selections</li>
</ul>
</div>
<div class="section" id="id7">
<h1>2.2</h1>
<ul class="simple">
<li><strong>New.0:</strong> Project Materials tool added</li>
<li><strong>Fix.01:</strong> Button sizes fixed</li>
<li><strong>Update.01:</strong> SmMaya imports optimized (pymel is not used anymore)</li>
<li><strong>New.02:</strong> Basic Nuke support added</li>
<li><strong>Fix.02:</strong> Bug fix when dropping items with standalone project materials</li>
<li><strong>Fix.03:</strong> Bug fix with multi camera preview playing (Standalone)</li>
<li><strong>Update.03:</strong> Documentation and comment updates</li>
<li><strong>Update.04:</strong> softwareDatabase.json file for easy module integration</li>
<li><strong>Fix.04:</strong> Bug fix Unicode character dragging to project materials</li>
<li><strong>New.04:</strong> New Icon set</li>
<li><strong>New.04:</strong> Show In Explorer Root/Raid folders added for image viewer</li>
<li><strong>Update.04:</strong> Added project line to the project materials</li>
<li><strong>Update.05:</strong> Search filter added to the Set Project Window</li>
<li><strong>Update.06:</strong> Image Manager now works on all categories. Send To Deadline is enabled for only Render Layer</li>
<li><strong>Update.07:</strong> Previews in Maya supports Camera sequences now.</li>
<li><strong>Fix.071:</strong> When references loaded, it asks to set the time range</li>
<li><strong>Fix.071:</strong> Minor UI fixes</li>
<li><strong>Fix.072:</strong> Houdini open file path fix ("\" => "/")</li>
<li><strong>Fix.072:</strong> Bug fix when canceling the item selection in project materials</li>
<li><strong>Fix.073:</strong> Bug fix with default categories when trying to open scene manager from a non-scene manager project</li>
<li><strong>Fix.073:</strong> Bug fix - Image Manager / querying shading groups</li>
<li><strong>Fix.074:</strong> Bug fix - Image Manager / Unusable Referenced Render Layer checking error fixed</li>
<li><strong>Fix.075:</strong> Bug fix - Houdini Module loading and importing modules setting $HIP location fixed</li>
<li><strong>Fix.076:</strong> Bug fix - 'make reference' checkbox removed from save version dialog if runs from Houdini</li>
</ul>
</div>
<div class="section" id="id8">
<h1>2.1</h1>
<ul class="simple">
<li><strong>Update.0:</strong> Boilerplate UI for all modules</li>
<li><strong>Fix.0:</strong> Various bug fixes on all modules</li>
<li><strong>Update.0:</strong> Various UI updates</li>
<li><strong>New.01:</strong> Added "Show Project Folder" right click menu</li>
<li><strong>Fix.01:</strong> Standalone Manager bug with emtpy scenes fixed</li>
<li><strong>Update.02:</strong> Sub-projects database file moved to the Database root. It is now common for all softwares</li>
</ul>
</div>
<div class="section" id="id9">
<h1>2.0</h1>
<ul class="simple">
<li><strong>New.0:</strong> 3ds Max support added</li>
<li><strong>New.0:</strong> Houdini support added</li>
<li><strong>New.0:</strong> Standalone Module added</li>
<li><strong>New.0:</strong> manager module seperated into SmRoot and SmMaya modules and re-written</li>
<li><strong>Update.0:</strong> Lots of UI improvements.</li>
<li><strong>Fix.0:</strong> Various bug fixes</li>
<li><strong>Update.1:</strong> added hashed password check and change password menu</li>
<li><strong>Fix.11:</strong> Fixed callback crash in 3ds max</li>
<li><strong>Fix.11:</strong> User update bug with Standalone version</li>
<li><strong>Fix.12:</strong> Various fixes and SmStandalone Houdini connection</li>
</ul>
</div>
<div class="section" id="id10">
<h1>1.93</h1>
<ul class="simple">
<li><strong>Update.0:</strong> database operations moved to a seperate module</li>
<li><strong>New.1:</strong> Brand new Set Project Scene (WIP)</li>
<li><strong>TODO</strong> Copy the upgrades from sequence viewer to image viewer</li>
</ul>
</div>
<div class="section" id="id11">
<h1>1.92</h1>
<ul class="simple">
<li><strong>New.0:</strong> add/remove user functions added</li>
<li><strong>Update.0:</strong> IMPORTANT user preferences (smSettings.json) structure changed. Delete old preference data under user/Documents</li>
<li><strong>Update.0:</strong> method for getting necessary scene paths has re-written</li>
<li><strong>Update.0:</strong> Documentation and Docstring updates</li>
<li><strong>Update.0:</strong> Various code clean-ups</li>
<li><strong>Update.0:</strong> Added .tif extension to the imageViewer</li>
<li><strong>Fix.0</strong> Sub-menu item connections fixed</li>
<li><strong>Fix.0</strong> imageViewer refreshing issues fixed</li>
<li><strong>Fix.1</strong> Thumbnails are now stored as relative paths in the json db</li>
<li><strong>Update.2</strong> ImageViewer root search added</li>
<li><strong>Fix.2</strong> When browsing for raid, updating the paths fixed.</li>
<li><strong>Update.2</strong> sequence transfer commands moved to seqCopyProgress module.</li>
<li><strong>Fix.3</strong> 'Current user resetting to the first one' issue fixed.</li>
<li><strong>Fix.4</strong> currentProject check bug with imageManager</li>
<li><strong>Fix.5</strong> I/O error fixed when uploading the files to remote directory</li>
</ul>
</div>
<div class="section" id="id12">
<h1>1.91</h1>
<ul class="simple">
<li><strong>New:</strong> added scriptJob to the manager class for project change</li>
<li><strong>Update:</strong> refresh method added</li>
</ul>
</div>
<div class="section" id="id13">
<h1>1.9</h1>
<ul class="simple">
<li><strong>New:</strong> imageManager and connections added</li>
<li><strong>New:</strong> ImageViewer added</li>
<li><strong>Update:</strong> scriptJobs added for imageManager connection.</li>
</ul>
</div>
<div class="section" id="id14">
<h1>1.82</h1>
<ul class="simple">
<li><strong>Update:</strong> various code and UI optimizations</li>
</ul>
</div>
<div class="section" id="id15">
<h1>1.8</h1>
<ul class="simple">
<li><strong>Update:</strong> color code yellow added for the scenes if the referenced version is not the last version</li>
<li><strong>Fix:</strong> playblast bug fixes</li>
<li><strong>Update:</strong> minor code optimizations</li>
</ul>
</div>
<div class="section" id="id16">
<h1>1.7</h1>
<ul class="simple">
<li><strong>New:</strong> added thumbnails</li>
</ul>
</div>
<div class="section" id="id17">
<h1>1.65</h1>
<ul class="simple">
<li><strong>Fix:</strong> Linux compatibility issues fixed</li>
</ul>
</div>
<div class="section" id="id18">
<h1>1.63</h1>
<ul class="simple">
<li><strong>Update:</strong> UI improvements</li>
</ul>
</div>
<div class="section" id="id19">
<h1>1.62</h1>
<ul class="simple">
<li><strong>Fix:</strong> when switching projects, subproject index will be reset to 0 now</li>
</ul>
</div>
<div class="section" id="id20">
<h1>1.61</h1>
<ul class="simple">
<li><strong>Fix:</strong> create new project bugfix (workspace.mel creation)</li>
</ul>
</div>
<div class="section" id="id21">
<h1>1.6</h1>
<ul class="simple">
<li><strong>New:</strong> added "add note" function</li>
<li><strong>Fix:</strong> minor code improvements with the playblast, and note checking methods</li>
</ul>
</div>
<div class="section" id="id22">
<h1>1.58</h1>
<ul class="simple">
<li><strong>Fix:</strong> minor bug fixes with createPlayblast method</li>
</ul>
</div>
<div class="section" id="id23">
<h1>1.57</h1>
<ul class="simple">
<li><strong>Update:</strong> Kill Turtle method updated</li>
<li><strong>Update:</strong> Version Number added to the scene dialog</li>
</ul>
</div>
<div class="section" id="id24">
<h1>1.56</h1>
<ul class="simple">
<li><strong>Update:</strong> After loading new scene menu refreshes</li>
</ul>
</div>
<div class="section" id="id25">
<h1>1.55</h1>
<ul class="simple">
<li><strong>New:</strong> regularSaveUpdate function added for Save callback</li>
<li><strong>Fix:</strong> sound problem fixed with playblasts</li>
</ul>
</div>
<div class="section" id="id26">
<h1>1.45</h1>
<ul class="simple">
<li><strong>New:</strong> Create New Project Function added, Settings menu renamed as File</li>
</ul>
</div>
<div class="section" id="id27">
<h1>1.44</h1>
<ul class="simple">
<li><strong>Fix:</strong> Bug fix with playblasts Maya 2017 (hud display camera location was inproper)</li>
</ul>
</div>
<div class="section" id="id28">
<h1>1.43</h1>
<ul class="simple">
<li><strong>New:</strong> current scene info line added to the top of the window</li>
</ul>
</div>
<div class="section" id="id29">
<h1>1.42</h1>
<ul class="simple">
<li><strong>New:</strong> sceneInfo right click menu added for base scenes</li>
</ul>
</div>
<div class="section" id="id30">
<h1>1.41</h1>
<ul class="simple">
<li><strong>Update:</strong> namespace added while referencing a scene</li>
</ul>
</div>
<div class="section" id="id31">
<h1>1.4</h1>
<ul class="simple">
<li><strong>New:</strong> added wire on shaded and default material settings to the playblast settings file</li>
</ul>
</div>
<div class="section" id="id32">
<h1>1.3</h1>
<ul class="simple">
<li><strong>Update:</strong> suMod removed. Everything is in a single file. For password protection share only the compiled version.</li>
<li><strong>Fix:</strong> various bug fixes</li>
</ul>
</div>
<div class="section" id="id33">
<h1>1.2</h1>
<ul class="simple">
<li><strong>Fix:</strong> loading and referencing system fixed. Now it checks for the selected rows 'name' not the list number id.</li>
<li><strong>Update:</strong> the name check for duplicate base scenes. It doesnt allow creating base scenes with the same name disregarding it has lower case or upper case characters.</li>
</ul>
</div>
<div class="section" id="id34">
<h1>1.1</h1>
<ul class="simple">
<li><strong>New:</strong> "Frame Range" Hud option is added to playblast settings.</li>
<li><strong>Update:</strong> In "Reference Mode" Scene List highlighted with red border for visual reference.</li>
</ul>
</div>
<div class="section" id="id35">
<h1>1.0</h1>
<ul class="simple">
<li>initial</li>
</ul>
</div>
</div>
</body>
</html>