-
-
Notifications
You must be signed in to change notification settings - Fork 263
Expand file tree
/
Copy pathCHANGELOG.md
More file actions
5255 lines (2620 loc) · 184 KB
/
Copy pathCHANGELOG.md
File metadata and controls
5255 lines (2620 loc) · 184 KB
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
# CHANGELOG
## v0.46.0 (2025-02-20)
### Feature
* feat(deploy): add automated OmniParser deployment
* add working omniparser deploy.py, Dockerfile, pyproject.toml, README.md, .env.example, .dockerignore, client.py ([`8acd7c0`](https://github.com/OpenAdaptAI/OpenAdapt/commit/8acd7c0c09b3c833168f67227ed304f9e51e2f81))
## v0.45.0 (2025-01-02)
### Feature
* feat: run OpenAdapt inside Anthropic Computer Use (#934)
* import sounddevice inside record_audio()
* utils.get_scaling_factor
* describe_actions.py with PIL
* show text in top left
* max_width = image.width
* dim_outside_window
* add module docstring
* add browser to visualize.py ([`8a79c83`](https://github.com/OpenAdaptAI/OpenAdapt/commit/8a79c83aabe3a084f0a99767236ed859d235f099))
## v0.44.0 (2025-01-02)
### Build
* build: add openai-whisper
* remove install_whisper from postinstall
* poetry add openai-whisper ([`e595dd3`](https://github.com/OpenAdaptAI/OpenAdapt/commit/e595dd37196111fee504cc4e605708150701a719))
### Feature
* feat(models): add `ActionEvent.prompt_for_description` (#933)
* add ActionEvent.prompt_for_description
* add display_event(darken_outside, display_text)
* add experiments/describe_action.py
* default RECORD_AUDIO to false
* use joinedload in get_latest_recording
* set anthropic.py MODEL_NAME to claude-3-5-sonnet-20241022
* support PNG in utils.image2utf8
* python>=3.10,<3.12 ([`266b9bf`](https://github.com/OpenAdaptAI/OpenAdapt/commit/266b9bfdc321d7eb2cf0b4d5b1db0833061db11c))
### Unknown
* Revert "poetry -> uv"
This reverts commit 615c17602e2cd33b290d2b16015bb60cfa38a7d0. ([`5a8b9bc`](https://github.com/OpenAdaptAI/OpenAdapt/commit/5a8b9bcb9e21a4f6f08a9dba7bb00e64daa6d631))
* poetry -> uv ([`615c176`](https://github.com/OpenAdaptAI/OpenAdapt/commit/615c17602e2cd33b290d2b16015bb60cfa38a7d0))
## v0.43.1 (2024-12-30)
### Build
* build: support python>=3.10,3.14
* python = ">=3.10,<3.14"
* use drag-threshold for linux double_click_distance_threshold
* httpx==0.27.2 ([`7a0aa8e`](https://github.com/OpenAdaptAI/OpenAdapt/commit/7a0aa8ef6f5a909c877f181d7756d81d4339ec20))
### Fix
* fix(buid): python = ">=3.10,<3.14"
* Revert "build: support python>=3.10,3.14"
This reverts commit 7a0aa8ef6f5a909c877f181d7756d81d4339ec20.
* python = ">=3.10,<3.14"
* simplify get_double_click_distance_pixels on linux ([`64c9241`](https://github.com/OpenAdaptAI/OpenAdapt/commit/64c92418bb2add1fd7672832c091580604a3102f))
## v0.43.0 (2024-12-30)
### Feature
* feat(record): add Linux support
* oa_pynput -> pynput
* add window/_linux.py
* multiprocessing_utils; xcffib
* global monitor_width/monitor_height
* add capture._linux
* cleanup
* get_double_click_interval_seconds/pixels on linux
* get_xinput_property ([`e7589f3`](https://github.com/OpenAdaptAI/OpenAdapt/commit/e7589f3cc0ef216fffaf5a1b8582eb9973e8c74a))
## v0.42.5 (2024-12-09)
### Fix
* fix(models): remove active_browser_element / available_browser_elements ([`85d601e`](https://github.com/OpenAdaptAI/OpenAdapt/commit/85d601e622545f1bc29b2e8def550c6b96f32377))
## v0.42.4 (2024-11-15)
### Fix
* fix(crud): Use subqueryload for all joins (#920) ([`a73439a`](https://github.com/OpenAdaptAI/OpenAdapt/commit/a73439ac76fb04f10a04679a456a46572a6ad7be))
## v0.42.3 (2024-11-08)
### Chore
* chore(dependencies): update various libraries; deprecate NiceGUI (#888)
* deprecate nicegui; move app/tray.py dependencies to app/__init__.py
* remove bind; update README
* Fix: wrap raw SQL queries in `text()` to prevent ArgumentError
* black
* noqa ([`50e4a3e`](https://github.com/OpenAdaptAI/OpenAdapt/commit/50e4a3e701f55461156b04800948a000c466e86b))
### Fix
* fix(build): remove deprecated modules; remove numpy2 from poetry.lock
* fix: Fix build issues due to numpy
* fix: Fix broken imports
* chore: Remove uses of nicegui and clean up files ([`de91850`](https://github.com/OpenAdaptAI/OpenAdapt/commit/de9185068d1270b35c8623284118f84886de3c27))
* fix(build): remove nicegui from build.py ([`02cb0fe`](https://github.com/OpenAdaptAI/OpenAdapt/commit/02cb0fead02573269e5067990ed41b2255e2ccb4))
## v0.42.2 (2024-11-06)
### Fix
* fix(recording): specify pywinauto types as strings (#913) ([`4955237`](https://github.com/OpenAdaptAI/OpenAdapt/commit/495523716950f222c652104aa75cd99b620f88f2))
## v0.42.1 (2024-10-30)
### Fix
* fix(build): add tokencost to build.py, update pyinstaller to 6.11.0, new ERROR_REPORTING_DSN ([`e7ad4e5`](https://github.com/OpenAdaptAI/OpenAdapt/commit/e7ad4e5b1bf55c01dfa66a4f5de0f0a9d02a9c94))
* fix(replay): fix poetry lock, ulralytics.py, update ERROR_REPORTING_DSN
* fix dependencies, update ultralytics.py
* update ERROR_REPORTING_DSN
* black ([`0ce11f3`](https://github.com/OpenAdaptAI/OpenAdapt/commit/0ce11f30a2951287a5b01affade39745f0757b0d))
## v0.42.0 (2024-10-25)
### Feature
* feat(build): improve build script reliability (#886) ([`ea743a2`](https://github.com/OpenAdaptAI/OpenAdapt/commit/ea743a2ab5acd5627cb669ba1cadbcce0555194d))
## v0.41.0 (2024-10-24)
### Feature
* feat(browser.py): add BrowserReplayStrategy; support browser modes record/replay (#872)
* add BrowserReplayStrategy; support browser modes record/replay
* minor refactor
* black/flake8
* update README
* improve README
* add BrowserReplayStrategy to README
* add strategies/visual_browser.py
* fix Action.from_dict and test_action_from_dict to support <cmd>-t
* calculate_tokens_and_cost; bugfix ActionEvent.fromdict; add ActionEvent.next_event; add TODOs; add visual_browser.py::SKIP_MOVE_BEFORE_CLICK
* handle mousemove/scroll; add_screen_tlbr forwards and backwards; RAW_PRECISE/IMPRECISE_MOUSE_EVENTS; openai.MAX_IMAGES = 90; fix merge_consecutive_mouse_scroll_events and tests; filter_invalid_window_events; dump_state timeout;
* add TODO
* noqa ([`d31fde0`](https://github.com/OpenAdaptAI/OpenAdapt/commit/d31fde080157260e1bb3a8c61a337c22ea2d1520))
### Unknown
* Improve macOS app test script reliability and error handling (#885)
* Improve macOS app test script reliability and error handling
* Update actions/setup-python to v5 to resolve deprecation warnings ([`c1075f1`](https://github.com/OpenAdaptAI/OpenAdapt/commit/c1075f1becc186ab0f9ac24f64ddb0b666f19d88))
* /nh -> 2>nul ([`99bbe0e`](https://github.com/OpenAdaptAI/OpenAdapt/commit/99bbe0eaf20f84af292d216a1439605b6bdd6f1e))
## v0.40.0 (2024-09-11)
### Feature
* feat(chrome_extension): correct commit format for semantic release ([`532ec3f`](https://github.com/OpenAdaptAI/OpenAdapt/commit/532ec3fa663b8a680da0cc097a56f753bb397bfb))
### Unknown
* feat(browser_extension) add browser_extension and openadapt.browser (#744)
* add old chrome extension files
* add old changes back, related to chrome extension, in openadapt dir
* try web socket solution, add asyncio and websockets libraries to poetry
* now we can log the dom changes ina a desctop running python process
* remove the old nativeMessaging extension code
* rename dir
* save the dom chages into dummy db: chrome.db
* fix actions tests
* ran `poetry run black --preview . --exclude 'alembic'`
* remove sockets.py
* fix falke8 formatting issues
* ran `poetry run black --preview . --exclude 'alembic'`
* add browser event code
* chrome extension work wip
* fix reset_db python file.
* now, extension messages can be seen in logs when the recording is started.
* till trying to fix the issue: record functione execution gets stuck at read_browser_events due to asyncio.runForever
* browser_events can be seen in db
* ran black and flake8
* add documentation in extension side js files and remove unused files
* https://github.com/OpenAdaptAI/OpenAdapt/pull/744#pullrequestreview-2163565340
Update readme.md
* https://github.com/OpenAdaptAI/OpenAdapt/pull/744#discussion_r1668787418
remove mlds logo
* https://github.com/OpenAdaptAI/OpenAdapt/pull/744#discussion_r1668782507
add todo
* https://github.com/OpenAdaptAI/OpenAdapt/pull/744#discussion_r1668782930
add NAMED_CONSTANT
* https://github.com/OpenAdaptAI/OpenAdapt/pull/744#discussion_r1668785377
remove unused lines in content.js
* https://github.com/OpenAdaptAI/OpenAdapt/pull/744#discussion_r1668788679
uncomment for `alembic upgrade`
* https://github.com/OpenAdaptAI/OpenAdapt/pull/744#discussion_r1668788679
resolve this
* https://github.com/OpenAdaptAI/OpenAdapt/pull/744#discussion_r1668790311
remove unwanted obfuscate keys
* https://github.com/OpenAdaptAI/OpenAdapt/pull/744#discussion_r1668791304
used joinedload
* https://github.com/OpenAdaptAI/OpenAdapt/pull/744#discussion_r1668792409
remove unwanted return
* https://github.com/OpenAdaptAI/OpenAdapt/pull/744#discussion_r1668793589
Ran the following:
- `alembic revision --autogenerate -m "regenrate with browser_event table"`
- `alembic upgrade head`
* https://github.com/OpenAdaptAI/OpenAdapt/pull/744#discussion_r1668795476
remove unwanted commetns lines
* https://github.com/OpenAdaptAI/OpenAdapt/pull/744#discussion_r1668796268
remove commented lines
* https://github.com/OpenAdaptAI/OpenAdapt/pull/744/files#r1668802201
added this todo
* https://github.com/OpenAdaptAI/OpenAdapt/pull/744#discussion_r1668803476
optimize browser events record by adding an option to include to record or not like audio
* https://github.com/OpenAdaptAI/OpenAdapt/pull/744#discussion_r1668797431
move constants to config
* https://github.com/OpenAdaptAI/OpenAdapt/pull/744#discussion_r1676066028
update readme
* update readme again
* https://github.com/OpenAdaptAI/OpenAdapt/pull/744#discussion_r1676066895
update config default for RECORD_BROWSER_EVENTS
* https://github.com/OpenAdaptAI/OpenAdapt/pull/744#discussion_r1676069410
removed unessary comment in events.py
* Update openadapt/models.py
https://github.com/OpenAdaptAI/OpenAdapt/pull/744#discussion_r1676070009
Co-authored-by: Richard Abrich <richard.abrich@mldsai.com>
* https://github.com/OpenAdaptAI/OpenAdapt/pull/744#discussion_r1676071070
resolve d
* https://github.com/OpenAdaptAI/OpenAdapt/pull/744/files/3836c3d165bb11c5615c83a0df65f6cdc155f93f#r1676068390
resolved
* ran black on openadapt dir
`poetry run black --preview openadapt/`
* https://github.com/OpenAdaptAI/OpenAdapt/pull/744#discussion_r1676813676
fixed faiing tests
* update the form type script
* add the record browser flag in classification group
* https://github.com/OpenAdaptAI/OpenAdapt/pull/744#discussion_r1691451352
Co-authored-by: Richard Abrich <richard.abrich@mldsai.com>
* https://github.com/OpenAdaptAI/OpenAdapt/pull/744#discussion_r1691417341
Co-authored-by: Richard Abrich <richard.abrich@mldsai.com>
* https://github.com/OpenAdaptAI/OpenAdapt/pull/744#discussion_r1691424083
Co-authored-by: Richard Abrich <richard.abrich@mldsai.com>
* Update openadapt/config.py: https://github.com/OpenAdaptAI/OpenAdapt/pull/744#discussion_r1691427223
https://github.com/OpenAdaptAI/OpenAdapt/pull/744#discussion_r1691427223
Co-authored-by: Richard Abrich <richard.abrich@mldsai.com>
* Update openadapt/record.py
https://github.com/OpenAdaptAI/OpenAdapt/pull/744#discussion_r1691450866
Co-authored-by: Richard Abrich <richard.abrich@mldsai.com>
* Update openadapt/config.py: https://github.com/OpenAdaptAI/OpenAdapt/pull/744/files/aa7b1ae7df8fb7045abb5d71d1d41a09f2d8bea2#r1691430453
https://github.com/OpenAdaptAI/OpenAdapt/pull/744/files/aa7b1ae7df8fb7045abb5d71d1d41a09f2d8bea2#r1691430453
Co-authored-by: Richard Abrich <richard.abrich@mldsai.com>
* Remove 3 unused functions owing to:
https://github.com/OpenAdaptAI/OpenAdapt/pull/744#discussion_r1691454036
https://github.com/OpenAdaptAI/OpenAdapt/pull/744#discussion_r1691454395
https://github.com/OpenAdaptAI/OpenAdapt/pull/744#discussion_r1691454487
* Update openadapt/record.py: https://github.com/OpenAdaptAI/OpenAdapt/pull/744#discussion_r1691449435
https://github.com/OpenAdaptAI/OpenAdapt/pull/744#discussion_r1691449435
Co-authored-by: Richard Abrich <richard.abrich@mldsai.com>
* Rename owing to: https://github.com/OpenAdaptAI/OpenAdapt/pull/744#discussion_r1691406587
* Rename const: https://github.com/OpenAdaptAI/OpenAdapt/pull/744#discussion_r1691406587
* Remove unused: https://github.com/OpenAdaptAI/OpenAdapt/pull/744#discussion_r1691428462
* Use ClassVar again: https://github.com/OpenAdaptAI/OpenAdapt/pull/744#discussion_r1691426324
* Update openadapt/models.py: https://github.com/OpenAdaptAI/OpenAdapt/pull/744#discussion_r1691432709
https://github.com/OpenAdaptAI/OpenAdapt/pull/744#discussion_r1691432709
Co-authored-by: Richard Abrich <richard.abrich@mldsai.com>
* Update openadapt/record.py: https://github.com/OpenAdaptAI/OpenAdapt/pull/744#discussion_r1691440931
https://github.com/OpenAdaptAI/OpenAdapt/pull/744#discussion_r1691440931
Co-authored-by: Richard Abrich <richard.abrich@mldsai.com>
* Update openadapt/record.py: https://github.com/OpenAdaptAI/OpenAdapt/pull/744#discussion_r1691446147
https://github.com/OpenAdaptAI/OpenAdapt/pull/744#discussion_r1691446147
Co-authored-by: Richard Abrich <richard.abrich@mldsai.com>
* Move string to const: https://github.com/OpenAdaptAI/OpenAdapt/pull/744#discussion_r1691405762
* Correct Grammatical errors: https://github.com/OpenAdaptAI/OpenAdapt/pull/744#discussion_r1691404444
* fix visualize and reformat
* fix alembic migrations
* Intersection/MutationObserver; _repr_ignore_attrs; fix process_events
* synchronize timestamps
* attachWindowEventListeners
* recreate alembic migration
* sync; buffer
* add dtw.py (wip)
* remove sorting and syncing; working experiments/dtw.py
* fix content.js
* report screenX/screenY; fix getScreenCoordinates; compute coordinate differences
* wip
* remove observers; composite distance; task_by_name
* replace eventBuffer with coordMappings; compute tlbr-screen in browser.py
* assign_browser_events in events.py
* black; docstrings
* flake8
* update test
* black
* add test_browser.py
---------
Co-authored-by: pate1595 <kmp.patel@utoronto.ca>
Co-authored-by: Krish Patel <65433817+KrishPatel13@users.noreply.github.com> ([`49d71d1`](https://github.com/OpenAdaptAI/OpenAdapt/commit/49d71d1ce6c78df657498426b5f2638585df9aa7))
## v0.39.3 (2024-08-07)
### Fix
* fix: remove duplicate import (#870) ([`e776ed8`](https://github.com/OpenAdaptAI/OpenAdapt/commit/e776ed88dddd1eeaf773bd2dca5a0aea27da46ce))
* fix: only import window if necessary (#869)
Only import window if necessary ([`efc941d`](https://github.com/OpenAdaptAI/OpenAdapt/commit/efc941d34a4cabc7178112d5ca707fb6b956af52))
## v0.39.2 (2024-08-06)
### Fix
* fix(video): upgrade to pyav 12.3.0 (#868)
Fixes #862 ([`d7f463c`](https://github.com/OpenAdaptAI/OpenAdapt/commit/d7f463c7a17006162248007262515cd6c28b3e38))
## v0.39.1 (2024-07-25)
### Fix
* fix(installer): fix installer upload (#866)
* Update release-and-publish.yml: upload installers
* Update release-and-publish.yml: fix case ([`489b9c2`](https://github.com/OpenAdaptAI/OpenAdapt/commit/489b9c201d318fba09320b3c3e414ee1713ccafc))
* fix(VisualReplayStrategy): avoid re-using failing segmentations ([`0045ebb`](https://github.com/OpenAdaptAI/OpenAdapt/commit/0045ebb1f98cc74983ab1265266aed870ff54d7d))
* fix(installer, audio): postinstall whisper; download installer artefacts (#865)
* postinstall whisper; download installer artefacts
* poetry lock ([`a4470c3`](https://github.com/OpenAdaptAI/OpenAdapt/commit/a4470c372417cb0a22ee1a44193b6f23de44d96e))
## v0.39.0 (2024-07-25)
### Feature
* feat(installer): upload installers (#863) ([`47fa551`](https://github.com/OpenAdaptAI/OpenAdapt/commit/47fa551b204c749f6649815bcf01def9d06257c3))
## v0.38.0 (2024-07-25)
### Feature
* feat: add_centroid in WindowEvent.to_prompt_dict (#840)
* add centroid in window_dict output
* black
---------
Co-authored-by: Richard Abrich <richard.abrich@mldsai.com>
Co-authored-by: Richard Abrich <richard.abrich@gmail.com> ([`5118b39`](https://github.com/OpenAdaptAI/OpenAdapt/commit/5118b39ed087d2d74cbc29d5e2f3694a25d4e5de))
* feat(action verification): implement replay action verification (#857)
* add is_action_event_complete
* retry_with_exceptions in apply_replay_instructions
* fix parse_code_snippet
* add error_reporting.py
* refactor video.py
* black/flake8
* add module docstring
* CHECK_ACTION_COMPLETE ([`b288c07`](https://github.com/OpenAdaptAI/OpenAdapt/commit/b288c074b4546e1ea495bf23c7a0f9ea75fcf8a5))
### Unknown
* fix keyerror if no state in window_dict ([`001c8fa`](https://github.com/OpenAdaptAI/OpenAdapt/commit/001c8fa88d8d9f1a9a18db844e216f7a2be6d4f2))
## v0.37.0 (2024-07-19)
### Feature
* feat(logging): store application logs (#854)
* feat: Wrap all processes inside a try catch block
* chore: Modify files to use the custom logger
* lint: flake8 lint
---------
Co-authored-by: Richard Abrich <richard.abrich@mldsai.com> ([`13bbe48`](https://github.com/OpenAdaptAI/OpenAdapt/commit/13bbe48dfa6ba93f297c23b65994ad3523c81188))
## v0.36.6 (2024-07-19)
### Fix
* fix(build): escape installer newline, upload installers and executables (#860)
* escape newline in inno script
* upload installers and executables ([`6d878fe`](https://github.com/OpenAdaptAI/OpenAdapt/commit/6d878fe8ff46b697102d7edb20f753e4974dcf9d))
### Unknown
* feat(build) modify build.py to produce installers (#858)
* modify build.py to produce installers
* download_and_install_inno_setup
* black/flake8
* remove zipping in build ([`21e5de1`](https://github.com/OpenAdaptAI/OpenAdapt/commit/21e5de1b3983a08416e252958a93b44fb5d9020f))
## v0.36.5 (2024-07-16)
### Fix
* fix(error-reporting): add ignore_errors (#855)
* add ignore_errors
* black ([`dc26a2a`](https://github.com/OpenAdaptAI/OpenAdapt/commit/dc26a2a3ddb3789bf65be26cb9d9e500b51803f7))
## v0.36.4 (2024-07-12)
### Fix
* fix(VanillaReplayStrategy): replay_instructions -> instructions (#849) ([`640f926`](https://github.com/OpenAdaptAI/OpenAdapt/commit/640f92680db225bf46f8f250e75ac715a92c53f9))
## v0.36.3 (2024-07-11)
### Fix
* fix(replay): fix video not found (#845)
* fix:modify Recording class to delete all associated records when recording is deleted ([`ab1f125`](https://github.com/OpenAdaptAI/OpenAdapt/commit/ab1f125385ad73c08d338dd791e3125363e4c675))
## v0.36.2 (2024-07-06)
### Fix
* fix(release): add ngrok; run release on debug-release branch; fallback to python (#838) ([`8777574`](https://github.com/OpenAdaptAI/OpenAdapt/commit/877757420dc34614810665f4b867882e20f09acd))
### Unknown
* revert until 615fc6ffe560ff0788414c80643308b484012750 ([`748bdb3`](https://github.com/OpenAdaptAI/OpenAdapt/commit/748bdb3dfa2916395a2c5452dbc4b5eef62d6731))
## v0.36.1 (2024-07-06)
### Fix
* fix(release): hard code python path fallback (#837) ([`1b48f94`](https://github.com/OpenAdaptAI/OpenAdapt/commit/1b48f940770fdd0e963e25ff2d0188914e2f9eb3))
* fix(release): set PYTHON_PATH in semantic_release; hard-code fallback (#836)
* Update release-and-publish.yml: set PYTHON_PATH in semantic_release
* Update pyproject.toml: hard code python path fallback ([`e6c88d1`](https://github.com/OpenAdaptAI/OpenAdapt/commit/e6c88d1e84c7f553cb75ced0071ddf817cb722cc))
* fix(release): modify build_command in pyproject.toml (#835)
* Update release-and-publish.yml: remove build_command
* Update pyproject.toml: add PYTHON_PATH to build_command
* Update pyproject.toml: increase verbosity ([`0f5166e`](https://github.com/OpenAdaptAI/OpenAdapt/commit/0f5166e369193cb74a3e21e88e2fdc1a10909067))
* fix(release): override build_command and include PYTHON_PATH (#834) ([`88fca89`](https://github.com/OpenAdaptAI/OpenAdapt/commit/88fca896ddd7b2442ba789ebd4a0681742c03ee2))
* fix(release): set python path more robustly (#833) ([`6b382dd`](https://github.com/OpenAdaptAI/OpenAdapt/commit/6b382ddef626b644f8b09c4d6d29c229009cf373))
* fix(release): add PYTHON_PATH to GITHUB_PATH (#832) ([`217204b`](https://github.com/OpenAdaptAI/OpenAdapt/commit/217204baf13b2aa26ad1c6a57bd6d9a0364d20c5))
* fix(release): update python-semantic-release to v9.8.4 (#831) ([`8054d69`](https://github.com/OpenAdaptAI/OpenAdapt/commit/8054d6959f363c232da7e9ad7dd6557d1e1eab74))
* fix(release): remove ADMIN_TOKEN from actions/checkout (#830) ([`094a054`](https://github.com/OpenAdaptAI/OpenAdapt/commit/094a0542dacc30dae33e6574375e50a0b6d1a0f0))
* fix(release): replace GITHUB_TOKEN with ADMIN_TOKEN (#829) ([`c193fe6`](https://github.com/OpenAdaptAI/OpenAdapt/commit/c193fe6dfe07d698d3c3133b3803e990ae20024c))
* fix(release): add token to actions/checkout (#828) ([`8e1a17d`](https://github.com/OpenAdaptAI/OpenAdapt/commit/8e1a17d33fcdc0221ecc73caf37207b260ffc59c))
* fix(db): eager loading (#822)
* add joinedload to eagerly load related entities
* change get_active_window_data to return empty dict when state is none
* add eager as parameter in _get
* add a default parameter for relationships
* flake8 error fix
* use direct and indirect relationships
* chore: refactor code ([`615fc6f`](https://github.com/OpenAdaptAI/OpenAdapt/commit/615fc6ffe560ff0788414c80643308b484012750))
* fix(audio): Fix error when downloading whisper model (#826) ([`2ad143a`](https://github.com/OpenAdaptAI/OpenAdapt/commit/2ad143a7452c4a178b7291da339685a704f3eb37))
## v0.36.0 (2024-06-28)
### Feature
* feat(logging): redirect stdout (#810)
* feat: Override std out for application
* feat: Separate logs by version number and date and use logger instead of print
---------
Co-authored-by: Richard Abrich <richard.abrich@mldsai.com> ([`f44795c`](https://github.com/OpenAdaptAI/OpenAdapt/commit/f44795c5216f076f99e4a9f32a294c82d19aeda8))
### Fix
* fix(tray): fix tray signals (#812)
* feat: Override std out for application
* fix: Fix passing signals around using multiprocessing pipes
* feat: Separate logs by version number and date and use logger instead of print
* lint: flake8 lint
---------
Co-authored-by: Richard Abrich <richard.abrich@mldsai.com> ([`f231a34`](https://github.com/OpenAdaptAI/OpenAdapt/commit/f231a34c881914b5410001d2bbe8c934af427b45))
## v0.35.2 (2024-06-27)
### Fix
* fix(build): Fix build issues (#809)
* fix: Fix build issues
* fix: Add pyqttoast and whisper explicitly to build
* black/flake8
---------
Co-authored-by: Richard Abrich <richard.abrich@mldsai.com>
Co-authored-by: Richard Abrich <richard.abrich@gmail.com> ([`48995bb`](https://github.com/OpenAdaptAI/OpenAdapt/commit/48995bb9c9de41a948eacb3cad22fe1aec2a0dbf))
### Unknown
* add cache.clear ([`b340d8f`](https://github.com/OpenAdaptAI/OpenAdapt/commit/b340d8f34326908025db99e178f689929f6112c6))
## v0.35.1 (2024-06-23)
### Fix
* fix(ultralytics): fix windows file permission in do_fastsam (#791)
* fix:windows file permission
* Changes as per the comments on last commit
* add max_retries and retry_delay_seconds in args
* add comments for segmented_image.load()
* order imports in ultralytics.py
* build fix
* remove unnecessary formatting changes
---------
Co-authored-by: Richard Abrich <richard.abrich@mldsai.com> ([`742b176`](https://github.com/OpenAdaptAI/OpenAdapt/commit/742b1764d3434f5bb505acf20318ac0c699a1761))
## v0.35.0 (2024-06-22)
### Feature
* feat(SegmentReplayStrategy, drivers): add strategies.replay; refactor adapters -> drivers + adapters (#714)
* implemented
* add get_active_window_data parameter include_window_data; fix ActionEvent.from_dict to handle multiple separators; add test_models.py
* update get_default_prompt_adapter
* add TODO
* tests.openadapt.adapters -> drivers
* utils.get_marked_image, .extract_code_block; .strip_backticks
* working segment.py (misses final click in calculator task)
* include_replay_instructions; dev_mode=False
* fix test_openai.py: ValueError -> Exception
* replay.py --record -> --capture
* black/flake8
* remove import
* INCLUDE_CURRENT_SCREENSHOT; handle mouse events without x/y
* add models.Replay; print_config in replay.py ([`7ef115a`](https://github.com/OpenAdaptAI/OpenAdapt/commit/7ef115a6172222d7d624ce92d0ec38a60d0e86f1))
## v0.34.0 (2024-06-20)
### Feature
* feat(onboarding): Add onboarding for new users (#746)
* feat: Add onboarding for new users
* feat: Overhaul onboarding into a multistep process
* docs: Update README.md with usage of the entrypoint module
* refactor: Remove steppers and move all steps to a single page
* feat: Move onboarding to a separate page and add bounty card
* feat: Redirect to onboarding on launch, and move around content
---------
Co-authored-by: Richard Abrich <richard.abrich@mldsai.com> ([`bdf153e`](https://github.com/OpenAdaptAI/OpenAdapt/commit/bdf153e153aea428653b5a5fa845cf373059712e))
## v0.33.6 (2024-06-20)
### Fix
* fix(tray): Fix incorrect argument when visualizing from tary (#780)
Changed order in tray.py
Co-authored-by: Richard Abrich <richard.abrich@mldsai.com> ([`4ff4c73`](https://github.com/OpenAdaptAI/OpenAdapt/commit/4ff4c736685e02dc45ab73eb2912df5fdd0c7386))
* fix(record): remove extra param (#784) ([`f60a617`](https://github.com/OpenAdaptAI/OpenAdapt/commit/f60a617f7b13a7d6c6232bcdb519652fb43f7fb8))
## v0.33.5 (2024-06-19)
### Fix
* fix(analytics): Posthog event logging updates (#772)
* feat: Add openadapt version to posthog events
* feat: Update tracking text of replay, visualize and delete submenus
* fix: Fix code in plotting.py not using correct arguments
* fix: Update broken tests ([`59c2714`](https://github.com/OpenAdaptAI/OpenAdapt/commit/59c2714a8c4672f1042dd326b68492bc805bc9e0))
## v0.33.4 (2024-06-18)
### Fix
* fix(visualize): Handle no screenshots (#763)
* handle no screenshot in visualize.py / plotting.py
* black/flake8 ([`92b74f0`](https://github.com/OpenAdaptAI/OpenAdapt/commit/92b74f05936bfb2000d393e0ba0060d2ec6a857d))
### Test
* test: Add CI scripts to run the app after build (#709)
* feat: Add scripts to run the app after build
* feat: Log error in a file
* chore: Add TODO for future additions of logging
---------
Co-authored-by: Richard Abrich <richard.abrich@mldsai.com> ([`e370fe6`](https://github.com/OpenAdaptAI/OpenAdapt/commit/e370fe6fa6a028fcdaabf729fc2c1909c66e207d))
## v0.33.3 (2024-06-18)
### Fix
* fix(record): fix performance plotting regression (#774)
* Fixes regressions introduced in Database access refactor #676 affecting plotting of performance plots.
* Re-uses record.write_event for video events.
* Modifies plot_performance to use color-blind-friendly markers
* black/flake8 ([`44371e9`](https://github.com/OpenAdaptAI/OpenAdapt/commit/44371e93db7e068284c50f8dbef08fc6c8c80671))
## v0.33.2 (2024-06-15)
### Fix
* fix(VisualReplayStrategy): increase default NMS thresh/conf (#758)
* repair VisualReplayStrategy
* black/flake8 ([`dd9e8fa`](https://github.com/OpenAdaptAI/OpenAdapt/commit/dd9e8fada19bb40ccab892b4335cae7414f110a8))
## v0.33.1 (2024-06-14)
### Fix
* fix(posthog): fix broken posthog api (#753)
* fix: Fix broken posthog api
* fix types
---------
Co-authored-by: Richard Abrich <richard.abrich@gmail.com> ([`16d510f`](https://github.com/OpenAdaptAI/OpenAdapt/commit/16d510fa776086cd9599f1c0cf946ac03e7d9f53))
## v0.33.0 (2024-06-13)
### Feature
* feat(scripts.downloads): add scripts/downloads.py (#735)
* add scripts/downloads.py
* add total cumulative downloads to title
* add module docstring
* pagination
* add datetime
* accumulate by release_date
* black/flake8 ([`3c20298`](https://github.com/OpenAdaptAI/OpenAdapt/commit/3c2029897e91f3f16b6b929cdec656ceda28459f))
## v0.32.0 (2024-06-13)
### Feature
* feat(tray): Add posthog analytics to tray actions (#737)
Co-authored-by: Richard Abrich <richard.abrich@mldsai.com> ([`dc0b7ea`](https://github.com/OpenAdaptAI/OpenAdapt/commit/dc0b7ea2d910c31acfc0eef0eba0b2e252196838))
## v0.31.0 (2024-06-12)
### Feature
* feat(contrib.som, postinstall): add contrib.som; postinstall.py; other fixes (#679)
* add vision.get_similar_image_idxs and test_vision.py
* refactor fixtures
* add get_size_similarity and tests; update default params in adapters.ultralytics
* get_image_similarity rgb