diff --git a/api/tacticalrmm/scripts/migrations/0014_alter_script_filename.py b/api/tacticalrmm/scripts/migrations/0014_alter_script_filename.py new file mode 100644 index 00000000..b5a0a592 --- /dev/null +++ b/api/tacticalrmm/scripts/migrations/0014_alter_script_filename.py @@ -0,0 +1,18 @@ +# Generated by Django 3.2.6 on 2021-11-19 15:44 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('scripts', '0013_script_syntax'), + ] + + operations = [ + migrations.AlterField( + model_name='script', + name='filename', + field=models.CharField(blank=True, max_length=255, null=True), + ), + ] diff --git a/api/tacticalrmm/scripts/models.py b/api/tacticalrmm/scripts/models.py index d8695abd..2ac608ad 100644 --- a/api/tacticalrmm/scripts/models.py +++ b/api/tacticalrmm/scripts/models.py @@ -24,7 +24,7 @@ class Script(BaseAuditModel): guid = models.CharField(max_length=64, null=True, blank=True) name = models.CharField(max_length=255) description = models.TextField(null=True, blank=True, default="") - filename = models.CharField(max_length=255) + filename = models.CharField(max_length=255, null=True, blank=True) shell = models.CharField( max_length=100, choices=SCRIPT_SHELLS, default="powershell" ) diff --git a/api/tacticalrmm/tacticalrmm/settings.py b/api/tacticalrmm/tacticalrmm/settings.py index 32285039..d6b07cd7 100644 --- a/api/tacticalrmm/tacticalrmm/settings.py +++ b/api/tacticalrmm/tacticalrmm/settings.py @@ -15,11 +15,11 @@ EXE_DIR = os.path.join(BASE_DIR, "tacticalrmm/private/exe") AUTH_USER_MODEL = "accounts.User" # latest release -TRMM_VERSION = "0.10.0" +TRMM_VERSION = "0.10.1" # bump this version everytime vue code is changed # to alert user they need to manually refresh their browser -APP_VER = "0.0.151" +APP_VER = "0.0.152" # https://github.com/wh1te909/rmmagent LATEST_AGENT_VER = "1.7.0"