mirror of
https://github.com/RunLit/Bambu-Run.git
synced 2026-06-22 22:19:03 +01:00
* added db model is transparent and fixed PETG translucent showing black * js and filament form for transparent color * bumped version to v0.1.2
28 lines
792 B
Python
28 lines
792 B
Python
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("bambu_run", "0001_initial"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="filamentcolor",
|
|
name="is_transparent",
|
|
field=models.BooleanField(
|
|
default=False,
|
|
help_text="True for clear/transparent filaments — display as checkerboard, not solid color",
|
|
),
|
|
),
|
|
migrations.AddField(
|
|
model_name="filament",
|
|
name="is_transparent",
|
|
field=models.BooleanField(
|
|
default=False,
|
|
help_text="True for clear/transparent filaments — display as checkerboard, not solid color",
|
|
),
|
|
),
|
|
]
|