-
Notifications
You must be signed in to change notification settings - Fork 0
/
changelog.yml
1337 lines (1337 loc) · 34.9 KB
/
changelog.yml
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
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
- version: 0.19.2
date: '2021-09-22'
changes:
features:
- Audio tracks.
- New shortcuts options.
- New color picker in scene background color option.
enhancements:
- Improve video playback speed in Green Screen.
- Manage plans UI improvement.
fixes:
- Fix edit mask button functionality.
- Fix hotkeys in Sequel.
notes: []
- version: 0.19.1
date: '2021-08-30'
changes:
features:
- New image and layer effects.
- >-
Pro Exports - export depth, mask, optical flowfor video layers in
Sequel. .
enhancements:
- Undo-redo support in Sequel.
- Support dragging assets into position into the Sequel timeline.
- More preset format options in Sequel.
fixes:
- Misc. Sequel timeline interaction fixes.
- Performance improvements.
notes: []
- version: 0.19.0
date: '2021-07-20'
changes:
features:
- >-
Introducing Sequel: the first professional video editor powered by
machine learning. Learn more here: https://runwayml.com/sequel.
- >-
New Runway subcriptions: now with free 7-day trials and new 'Pro' plan
with PNG and ProRes exports. Learn more here:
https://runwayml.com/pricing.
enhancements: []
fixes: []
notes: []
- version: 0.17.10
date: '2021-06-11'
changes:
features: []
enhancements: []
fixes:
- Minor UI improvements and optimizations.
notes: []
- version: 0.17.9
date: '2021-06-10'
changes:
features: []
enhancements:
- Minor UI improvements and optimizations.
fixes: []
notes: []
- version: 0.17.8
date: '2021-06-04'
changes:
features:
- New "Feather Mask" option in Green Screen.
enhancements:
- Speed up video loading in Green Screen.
- Minor UI improvements and optimizations.
fixes: []
notes: []
- version: 0.17.7
date: '2021-04-20'
changes:
features: []
enhancements:
- Support feathering the edges of the mask in Green Screen video tool.
fixes:
- >-
Hide unsupported “Local CPU” option in the run options of Model
Workspaces for the web app.
- Avoid distorting profile picture on the side bar.
notes: []
- version: 0.17.6
date: '2021-03-02'
changes:
features: []
enhancements:
- Improve video editor preview performance with WebGL.
- Improve video frame rate in Green Screen.
- Allow uploading videos up to 15min for subscribed users.
- Improve uploading videos UI.
- Update Payment popups UI and descriptions.
fixes:
- Fix Asset page actions.
notes: []
- version: 0.17.5
date: '2021-01-26'
changes:
features: []
enhancements:
- UI improvements on Payment and Models page.
fixes: []
notes: []
- version: 0.17.4
date: '2021-01-21'
changes:
features: []
enhancements:
- Improved mask quality with on Green Screen.
fixes:
- Fixed issue where Create New Model option was hidden.
- Fixed UI styles in Buy Credits popup window.
notes: []
- version: 0.17.3
date: '2021-01-16'
changes:
features: []
enhancements:
- Menu style updates.
fixes:
- >-
Fix issue when running Pose Estimation model (previously PoseNet) in
Model Workspace.
notes: []
- version: 0.17.2
date: '2021-01-15'
changes:
features:
- 'Introducing the new Models page: explore models by collections.'
enhancements:
- UI improvements on mobile browsers.
fixes: []
notes: []
- version: 0.17.1
date: '2020-12-23'
changes:
features:
- Undo-redo support for Green Screen.
enhancements:
- Added zoom controls in Green Screen.
- Support for GIF uploads in model gallery.
fixes:
- Account for videos with non-square pixels in Green Screen.
- Minor UI style fixes.
notes: []
- version: 0.17.0
date: '2020-12-16'
changes:
features:
- Added Sign in with Google feature.
enhancements: []
fixes:
- Fixed slow UI performance issues in macOS Big Sur.
notes: []
- version: 0.16.3
date: '2020-12-10'
changes:
features: []
enhancements: []
fixes:
- Fix for hidden "Run model" button in Model Workspace. .
- Copy edits in Green Screen.
notes: []
- version: 0.16.2
date: '2020-12-08'
changes:
features: []
enhancements: []
fixes:
- Fix drag + drop to upload asset functionality in Green Screen.
notes: []
- version: 0.16.1
date: '2020-12-08'
changes:
features: []
enhancements: []
fixes:
- Copy amendments on "Make Public" and "Make Private" button tooltips.
notes: []
- version: 0.16.0
date: '2020-12-07'
changes:
features:
- Shareable Assets and Models.
enhancements:
- UI improvements in sidebar and model directory.
fixes:
- Green Screen hotkey bugfixes.
notes: []
- version: 0.15.2
date: '2020-11-23'
changes:
features:
- You can try out Green Screen feature without signing up.
- Upload an image as the background for your Green Screen video.
- Export only alpha channel of your Green Screen video.
enhancements: []
fixes: []
notes: []
- version: 0.15.1
date: '2020-11-17'
changes:
features:
- General availability release of Green Screen.
enhancements: []
fixes: []
notes: []
- version: 0.15.0
date: '2020-11-11'
changes:
features:
- 'Introducing Green Screen: cutting objects out of videos.'
enhancements: []
fixes: []
notes: []
- version: 0.14.4
date: '2020-09-14'
changes:
features: []
enhancements:
- Improved uploading assets logic.
- Improved loading time for the Models Directory.
fixes: []
notes: []
- version: 0.14.3
date: '2020-08-21'
changes:
features: []
enhancements: []
fixes:
- >-
Fixed issue where overflowing export and cancel buttons in the export
modal aren't visible.
- Fixed issue in the export modal which caused some exports to fail.
- Fixed Recent Assets refreshing in Assets page.
notes: []
- version: 0.14.2
date: '2020-08-17'
changes:
features:
- >-
Introducing Latent Walk Creator, an improved interface for creating
latent walk exports with the ability to customize the keyframes and
transitions of your videos.
enhancements: []
fixes: []
notes: []
- version: 0.14.1
date: '2020-08-14'
changes:
features:
- 'Introducing Assets page: manage all your images, videos and text files.'
enhancements:
- UI improvements on mobile browsers.
fixes: []
notes: []
- version: 0.14.0
date: '2020-08-05'
changes:
features:
- Introducing Runway Web.
enhancements: []
fixes: []
notes: []
- version: 0.13.8
date: '2020-07-27'
changes:
features: []
enhancements: []
fixes:
- Performance and UI optimizations.
notes: []
- version: 0.13.7
date: '2020-07-23'
changes:
features:
- Soft launch RunwayML for web.
enhancements: []
fixes:
- Consistent fonts across operating systems.
notes: []
- version: 0.13.6
date: '2020-07-17'
changes:
features: []
enhancements: []
fixes:
- Performance and UI optimizations.
notes: []
- version: 0.13.5
date: '2020-07-16'
changes:
features: []
enhancements: []
fixes:
- Performance and UI optimizations.
notes: []
- version: 0.13.4
date: '2020-07-13'
changes:
features: []
enhancements:
- Performance and UI optimizations.
fixes: []
notes: []
- version: 0.13.3
date: '2020-06-24'
changes:
features: []
enhancements: []
fixes:
- Added performance optimizations.
notes: []
- version: 0.13.2
date: '2020-06-24'
changes:
features:
- Added Pay with PayPal feature.
enhancements:
- Improved Image Annotator UI.
fixes: []
notes: []
- version: 0.13.1
date: '2020-06-17'
changes:
features: []
enhancements: []
fixes:
- >-
Fix issue when navigating to Setup view for Image Generation
experiments.
notes: []
- version: 0.13.0
date: '2020-06-17'
changes:
features:
- "Introducing Object Detection Training! \U0001F50D Train a custom model to detect and locate objects in images and videos."
enhancements: []
fixes: []
notes: []
- version: 0.12.6
date: '2020-05-19'
changes:
features: []
enhancements: []
fixes:
- >-
Fixed issue where the Model Info view was not being rendered properly
when first porting a model.
- >-
Fixed issue where datasets with nested folders were causing uploading
errors.
notes: []
- version: 0.12.5
date: '2020-05-18'
changes:
features:
- >-
Quick Actions are here! Launch new exports right from the Model
Directory view.
enhancements:
- Improved loading times and user experience for the Model Directory.
- Added ability to create new exports from a model's info view.
fixes: []
notes: []
- version: 0.12.4
date: '2020-05-12'
changes:
features: []
enhancements:
- >-
Added ability to generate Latent Walk videos for image generation models
from the Workspaces view.
fixes: []
notes: []
- version: 0.12.3
date: '2020-05-11'
changes:
features: []
enhancements:
- UI improvements to the training interface.
fixes: []
notes: []
- version: 0.12.2
date: '2020-05-11'
changes:
features: []
enhancements:
- Improved dataset upload speed and memory usage.
- Added additional code snippets for Hosted Models.
fixes: []
notes: []
- version: 0.12.1
date: '2020-04-29'
changes:
features: []
enhancements:
- Update subscription perks list.
- Improvements to the Hosted Models table.
fixes: []
notes: []
- version: 0.12.0
date: '2020-04-28'
changes:
features:
- >-
Introducing Hosted Models. Host Runway models online and use them
anytime, anywhere, via a unique URL.
enhancements: []
fixes:
- >-
Fixed issue where "Autocrop" was producing an empty bounding box in
Dataset Preprocessing.
notes: []
- version: 0.11.4
date: '2020-04-27'
changes:
features: []
enhancements: []
fixes:
- Fix issue where duplicating a training experiment was throwing an error.
notes: []
- version: 0.11.3
date: '2020-04-19'
changes:
features: []
enhancements: []
fixes:
- Fix a few error cases when uploading inputs for model exports.
notes: []
- version: 0.11.2
date: '2020-04-17'
changes:
features:
- >-
Introducing a new Export functionality for image-to-image translation
models. You no longer need to keep Runway open to process large videos
or directories of images — you can now submit an export and come back to
view the results later.
enhancements: []
fixes: []
notes: []
- version: 0.11.1
date: '2020-04-15'
changes:
features: []
enhancements:
- >-
Added the ability to remove images from a dataset from the Dataset
Preprocessing view. .
fixes: []
notes: []
- version: 0.11.0
date: '2020-04-02'
changes:
features:
- >-
Introducing Dataset Preprocessing, a new view that allows you to
manually crop and transform the images in your dataset before training a
model.
enhancements: []
fixes: []
notes: []
- version: 0.10.33
date: '2020-03-23'
changes:
features: []
enhancements:
- >-
Added a more clear visual indicator for private models in the Model
Directory.
fixes: []
notes: []
- version: 0.10.32
date: '2020-03-09'
changes:
features: []
enhancements:
- Add support for StyleGAN2.
fixes: []
notes: []
- version: 0.10.31
date: '2020-03-05'
changes:
features: []
enhancements: []
fixes:
- >-
Fixed issue where the Connect button was not visible in Development Mode
in some cases.
notes: []
- version: 0.10.30
date: '2020-02-28'
changes:
features:
- Remote Export for text generation models is now available!
enhancements: []
fixes: []
notes: []
- version: 0.10.29
date: '2020-02-20'
changes:
features: []
enhancements:
- Warn users when uploading small text datasets.
fixes:
- >-
Fix bug where the run experiment button was left in a pending in some
cases.
notes: []
- version: 0.10.28
date: '2020-02-20'
changes:
features: []
enhancements:
- UI improvements to the text interface.
fixes:
- Fixed button positioning when chaining models in the IO view.
- Fixed issue where text models were not returning outputs via network.
notes: []
- version: 0.10.27
date: '2020-02-17'
changes:
features:
- >-
A brand new interface for text generation models, with the ability to
undo/redo, regenerate output, and use the prior output as prompt for
further generation.
enhancements:
- UI improvements and optimizations for GPT-2 model training.
- Added ability to upload datasets with nested folders.
fixes:
- >-
Fixed issue in which the shown FID score was not being updated when
navigating between sample steps during training.
- >-
Fixed issue where the batch generation task was always using the latest
training checkpoint, instead of the currently selected one.
notes: []
- version: 0.10.26
date: '2020-02-12'
changes:
features: []
enhancements:
- Added ability to batch generate images using your trained model.
- Added ability to submit feedback on the model output in Workspaces.
- Added ability to cancel running exports.
- Added Hide shortcut for Mac (Cmd+H).
fixes:
- >-
Fixed issue where saving the output image of the model was throwing
errors in some cases.
notes: []
- version: 0.10.25
date: '2020-02-05'
changes:
features: []
enhancements: []
fixes:
- Fixed keyboard shortcut for navigating to Exports.
- >-
Fixed issue that was causing model sessions to fail when using the
Photoshop plugin.
notes: []
- version: 0.10.24
date: '2020-02-04'
changes:
features: []
enhancements:
- Minor performance enhancements.
fixes: []
notes: []
- version: 0.10.23
date: '2020-02-03'
changes:
features:
- Exports view for exporting training progress videos.
enhancements: []
fixes: []
notes: []
- version: 0.10.22
date: '2020-01-31'
changes:
features: []
enhancements:
- Added option to make a model private from Model Settings.
fixes:
- Fixed issues when running trained models on Local GPU.
- >-
Fixed issue where keyboard shortcuts for navigating between views were
not working on Windows.
- >-
Fixed issue where "Local Checkpoint Not Found" message still being shown
even after downloading a checkpoint for a model.
notes: []
- version: 0.10.21
date: '2020-01-20'
changes:
features:
- Training is now generally available.
enhancements: []
fixes: []
notes: []
- version: 0.10.20
date: '2020-01-14'
changes:
features: []
enhancements:
- Added ability to purchase subscriptions and credits from within the app.
fixes: []
notes: []
- version: 0.10.19
date: '2020-01-13'
changes:
features:
- Add user profile pages.
- Add the ability to view all models trained by the RunwayML community.
enhancements:
- Update training home page.
fixes:
- Performance and UI optimizations.
notes: []
- version: 0.10.18
date: '2020-01-07'
changes:
features: []
enhancements: []
fixes:
- >-
Fix Docker mount issue when running a model with individual checkpoint
files on Windows.
notes: []
- version: 0.10.17
date: '2020-01-05'
changes:
features: []
enhancements: []
fixes:
- >-
Fix issue causing slowdowns when adding models with a large number of
options to a workspace.
notes: []
- version: 0.10.16
date: '2020-01-04'
changes:
features: []
enhancements: []
fixes:
- Performance and UI optimizations.
notes: []
- version: 0.10.15
date: '2020-01-04'
changes:
features: []
enhancements: []
fixes:
- >-
Fix issue preventing remote models from starting successfully in some
instances.
notes: []
- version: 0.10.14
date: '2020-01-04'
changes:
features: []
enhancements:
- >-
Add the ability to select a different checkpoint of the training
experiment when saving a model.
- Add the ability to edit the preview image of a checkpoint.
fixes:
- >-
Fix issue where local checkpoints were in some cases being re-downloaded
when running models.
- >-
Fix issue where the Vector grid was not being reset when selecting a
different checkpoint and re-running a model.
notes: []
- version: 0.10.13
date: '2020-01-02'
changes:
features: []
enhancements:
- >-
Added the ability to change the name and description of model files
after uploading them.
- >-
Added a tooltip with an image preview when selecting a checkpoint for a
model in Workspaces.
fixes:
- >-
Fixed issue with CSV exports where filenames were being associated with
the incorrect output.
- Fixed issue where the login window was being created more than once.
notes: []
- version: 0.10.12
date: '2019-12-23'
changes:
features: []
enhancements:
- >-
A new Browse Models page that makes it easier to find models and
understand what do they do.
- Added search bars for training experiments.
- Performance and UI optimizations.
fixes: []
notes: []
- version: 0.10.11
date: '2019-12-12'
changes:
features:
- >-
Supported the ability to continue training after one experiment has
ended.
enhancements: []
fixes: []
notes: []
- version: 0.10.10
date: '2019-12-11'
changes:
features: []
enhancements: []
fixes:
- >-
Fix issue causing the "No Internet Connection" popup to appear
erroneously.
notes: []
- version: 0.10.9
date: '2019-12-10'
changes:
features: []
enhancements: []
fixes:
- >-
Fixed issue where the open app link was not opening the model info page
properly for some models.
notes: []
- version: 0.10.8
date: '2019-12-05'
changes:
features: []
enhancements: []
fixes:
- Performance and UI optimizations.
notes: []
- version: 0.10.7
date: '2019-12-04'
changes:
features: []
enhancements:
- Performance and UI optimizations.
fixes: []
notes: []
- version: 0.10.6
date: '2019-12-04'
changes:
features: []
enhancements:
- Added sharable link for users’ public models.
- Added an estimated cost calculator for training experiments.
- Provided a feedback rating option for training experiments.
fixes:
- Fixed issues when Runway is running inside of a corporate proxy.
notes: []
- version: 0.10.5
date: '2019-12-02'
changes:
features: []
enhancements: []
fixes:
- Fix error when uploading directory checkpoints to models.
notes: []
- version: 0.10.4
date: '2019-11-29'
changes:
features: []
enhancements: []
fixes:
- >-
Fixed issue where the progress of the running training experiments was
not being updated unless they were selected.
- >-
Fixed issue where requests to the Network integration required values to
be present for all input parameters, including those that had a default
value.
notes: []
- version: 0.10.3
date: '2019-11-27'
changes:
features: []
enhancements: []
fixes:
- >-
Fixed issue where the final training sample was not being displayed
properly.
- >-
Fixed layout issues in the Review view of Training on small screen
sizes.
- >-
Fixed issue in PoseNet where an error was shown when running the model
without an input selected.
notes: []
- version: 0.10.2
date: '2019-11-27'
changes:
features: []
enhancements: []
fixes:
- >-
Fix issue with HTTP Network Integration that was causing requests to
fail even on valid payload.
notes: []
- version: 0.10.1
date: '2019-11-26'
changes:
features: []
enhancements:
- Added ability to download model checkpoints from the Model Info view.
- Added latent space walk video at the end of a training experiment.
- Performance optimizations for dataset uploading.
fixes:
- >-
Fixed issue where the training sample shown was not being automatically
updated as the training was progressing.
notes: []
- version: 0.10.0
date: '2019-11-21'
changes:
features:
- "Early access to Model Training is here! We will be granting access to new users every week \U0001F917 Sign up here: https://runwayml.com/training-access."
enhancements: []
fixes: []
notes: []
- version: 0.9.25
date: '2019-11-18'
changes:
features: []
enhancements:
- Minor UI improvements and optimizations.
fixes: []
notes: []
- version: 0.9.24
date: '2019-11-14'
changes:
features: []
enhancements:
- Minor performance enhancements.
fixes: []
notes: []
- version: 0.9.23
date: '2019-11-13'
changes:
features: []
enhancements: []
fixes:
- Performance optimizations for reducing model startup time on remote GPU.
notes: []
- version: 0.9.22
date: '2019-11-11'
changes:
features: []
enhancements: []
fixes:
- Minor UI improvements and optimizations.
notes: []
- version: 0.9.21
date: '2019-11-08'
changes:
features: []
enhancements: []
fixes:
- Fix issue where one of our app fonts was not rendering properly.
- Fix error occurring when switching between inputs quickly.
notes: []
- version: 0.9.20
date: '2019-11-05'
changes:
features: []
enhancements:
- >-
Add support for providing a default path to runway.file and
runway.directory data types.
fixes: []
notes: []
- version: 0.9.19
date: '2019-11-04'
changes:
features: []
enhancements:
- >-
Added the ability to upload model files from the Workspaces view for
model publishers.
fixes:
- Fixed issue where log lines were being repeated in the Logs panel.
notes: []
- version: 0.9.18
date: '2019-10-31'
changes:
features: []
enhancements:
- >-
Added keyboard shortcut support for switching between Workspaces, Model
Directory, and Settings.
fixes: []
notes: []
- version: 0.9.17
date: '2019-10-29'
changes:
features: []
enhancements:
- Better error reporting for failed remote model runs.
fixes:
- >-
Fixed issue where video exports were failing for some specific edge
cases.
notes: []
- version: 0.9.16
date: '2019-10-25'
changes:
features: []
enhancements:
- >-
Added firewall related instructions when the app cannot connect to our
servers.
- Preview is now selected by default in the Output panel.
- Minor UI improvements and optimizations.
fixes:
- >-
Fixed issue where models that accepted a 4-channel image input were
being sent a 3-channel image input instead.
notes: []
- version: 0.9.15
date: '2019-10-14'
changes:
features: []
enhancements: []
fixes:
- Fixed issues opening the app for the first time on macOS Catalina.
- >-
Fixed issue where right-clicking on a chained output caused the app to
crash.
notes: []
- version: 0.9.14
date: '2019-10-10'
changes:
features: []
enhancements:
- Added right-click menu for saving images and vectors.
fixes:
- Fixed error when using Local GPU from external plugins.
notes: []
- version: 0.9.13
date: '2019-10-07'
changes:
features: []
enhancements: []
fixes:
- Fixed issue where the camera feed was sometimes not visible.
notes: []
- version: 0.9.12
date: '2019-10-07'
changes:
features: []
enhancements:
- >-
Add help menu for quick access to guides and resources at the left menu
bar of the app.
fixes:
- >-
Fix issue where the app sometimes would unexpectedly crash when viewing
the system status.
- Fix issue in which the camera remained open even after deleting a model.
notes: []
- version: 0.9.11
date: '2019-10-01'
changes:
features: []
enhancements: []
fixes:
- Fix occassional app crashing when tooltips are showing.
notes: []
- version: 0.9.10
date: '2019-09-27'
changes:
features: []
enhancements: []
fixes:
- Fixed error when exporting PNG frames to MP4 video on Linux.
notes: []
- version: 0.9.9
date: '2019-09-26'
changes:
features: []
enhancements: []
fixes:
- Fix using directory input for segmentation data type.
notes: []
- version: 0.9.8
date: '2019-09-17'
changes:
features: []