Skip to content

Commit

Permalink
Release 0.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
wh1te909 committed Nov 19, 2021
2 parents ff25083 + 735b84b commit ff07c69
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 3 deletions.
18 changes: 18 additions & 0 deletions api/tacticalrmm/scripts/migrations/0014_alter_script_filename.py
Original file line number Diff line number Diff line change
@@ -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),
),
]
2 changes: 1 addition & 1 deletion api/tacticalrmm/scripts/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down
4 changes: 2 additions & 2 deletions api/tacticalrmm/tacticalrmm/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
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"
Expand Down

0 comments on commit ff07c69

Please sign in to comment.