-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix multidomain particle use cases and add progress bars to swcc (#283)
* Add upload and download progress bar printout * Fix upload & download of particles-only project * Fix rendering of multiple particle sets for multiple domains * Lint fix * Remove anatomies created for particle keys and name keys
- Loading branch information
Showing
6 changed files
with
91 additions
and
30 deletions.
There are no files selected for viewing
23 changes: 23 additions & 0 deletions
23
shapeworks_cloud/core/migrations/0024_world_local_nullable.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,23 @@ | ||
# Generated by Django 3.2.17 on 2023-02-17 19:48 | ||
|
||
from django.db import migrations | ||
import s3_file_field.fields | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
('core', '0023_task_progress'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='optimizedparticles', | ||
name='local', | ||
field=s3_file_field.fields.S3FileField(null=True), | ||
), | ||
migrations.AlterField( | ||
model_name='optimizedparticles', | ||
name='world', | ||
field=s3_file_field.fields.S3FileField(null=True), | ||
), | ||
] |
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
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