-
-
Notifications
You must be signed in to change notification settings - Fork 150
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into share-magic-wormhole
- Loading branch information
Showing
12 changed files
with
289 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
[flake8] | ||
exclude=alembic/versions,.venv, openadapt/strategies/__init__.py | ||
docstring-convention=google | ||
exclude = | ||
alembic/versions, | ||
.venv | ||
docstring-convention = google | ||
max-line-length = 88 | ||
extend-ignore = ANN101 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,97 @@ | |
|
||
|
||
|
||
## v0.7.0 (2023-07-28) | ||
|
||
### Feature | ||
|
||
* feat: scrub toggle for gui (#375) | ||
|
||
* add scrub toggle + write dark_mode to env | ||
|
||
* Update config.py | ||
|
||
* Update util.py | ||
|
||
* Update config.py | ||
|
||
* address comments | ||
|
||
* Update config.py | ||
|
||
* run isort | ||
|
||
* from first | ||
|
||
* Update openadapt/config.py | ||
|
||
* Update openadapt/config.py | ||
|
||
* Update openadapt/config.py | ||
|
||
* Update openadapt/config.py | ||
|
||
* Update openadapt/config.py | ||
|
||
* Update openadapt/config.py | ||
|
||
* add env file path (also where did the toggle go??) | ||
|
||
* Update config.py | ||
|
||
* Update config.py | ||
|
||
* Update config.py | ||
|
||
* isort | ||
|
||
* Update util.py | ||
|
||
* linted | ||
|
||
--------- | ||
|
||
Co-authored-by: Richard Abrich <[email protected]> ([`1e96a4f`](https://github.com/OpenAdaptAI/OpenAdapt/commit/1e96a4f599b9790509dad865ea3c7b1b254fb19b)) | ||
|
||
|
||
## v0.6.1 (2023-07-28) | ||
|
||
### Fix | ||
|
||
* fix: modify flake8 config (#429) | ||
|
||
* style: modify flake8 config | ||
|
||
* add platform check for macOS in pyobjc-framework-avfoundation version | ||
|
||
* remove file exclusion in .flake8 and add ignore comment in openadapt/strategies/__init__.py | ||
|
||
* resolve lint errors from recent merge ([`f03be2f`](https://github.com/OpenAdaptAI/OpenAdapt/commit/f03be2f9cf100b5bc8dfa34cf76fd60b6eef9f62)) | ||
|
||
|
||
## v0.6.0 (2023-07-26) | ||
|
||
### Feature | ||
|
||
* feat(crud): compute and save screenshot diff (#367) | ||
|
||
* feat(crud): Compute and save screenshot diff | ||
|
||
* Add 2 columns in screenshot table to store png_diff_data and png_mask_diff_data. | ||
|
||
* CRUD now supports calculation and save screenshots diff data on the flight. | ||
|
||
* feat(config): Add SAVE_SCREENSHOT_DIFF environment variable | ||
|
||
* SAVE_SCREENSHOT_DIFF indicates that 2 neighbors screenshot will be compared and the difference will be saved to db | ||
|
||
* feat(crud): add missing import after merge | ||
|
||
* refactor(crud): add missing type annotations | ||
|
||
* refactor(crud): add missing type annotations ([`9189bca`](https://github.com/OpenAdaptAI/OpenAdapt/commit/9189bca7aef05ef7801545cc0a55bca54898820a)) | ||
|
||
|
||
## v0.5.8 (2023-07-25) | ||
|
||
### Fix | ||
|
34 changes: 34 additions & 0 deletions
34
alembic/versions/8713b142f5de_add_png_diff_data_and_png_diff_mask_data.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
"""Add png_diff_data and png_diff_mask_data | ||
Revision ID: 8713b142f5de | ||
Revises: 607d1380b5ae | ||
Create Date: 2023-07-09 15:31:28.462388 | ||
""" | ||
import sqlalchemy as sa | ||
|
||
from alembic import op | ||
|
||
# revision identifiers, used by Alembic. | ||
revision = '8713b142f5de' | ||
down_revision = '607d1380b5ae' | ||
branch_labels = None | ||
depends_on = None | ||
|
||
|
||
def upgrade() -> None: | ||
# ### commands auto generated by Alembic - please adjust! ### | ||
with op.batch_alter_table('screenshot', schema=None) as batch_op: | ||
batch_op.add_column(sa.Column('png_diff_data', sa.LargeBinary(), nullable=True)) | ||
batch_op.add_column(sa.Column('png_diff_mask_data', sa.LargeBinary(), nullable=True)) | ||
|
||
# ### end Alembic commands ### | ||
|
||
|
||
def downgrade() -> None: | ||
# ### commands auto generated by Alembic - please adjust! ### | ||
with op.batch_alter_table('screenshot', schema=None) as batch_op: | ||
batch_op.drop_column('png_diff_mask_data') | ||
batch_op.drop_column('png_diff_data') | ||
|
||
# ### end Alembic commands ### |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.