added company name

This commit is contained in:
Bryan Gerlach
2025-02-13 08:03:23 -06:00
parent 6c2e2f39e9
commit da33c6f5fd
5 changed files with 31 additions and 13 deletions

View File

@@ -29,6 +29,7 @@ class GenerateForm(forms.Form):
key = forms.CharField(label="Key", required=False)
urlLink = forms.CharField(label="Custom URL for links", required=False)
downloadLink = forms.CharField(label="Custom URL for downloading new versions", required=False)
compname = forms.CharField(label="Company name",require=False)
#Visual
iconfile = forms.FileField(label="Custom App Icon (in .png format)", required=False, widget=forms.FileInput(attrs={'accept': 'image/png'}))

View File

@@ -183,6 +183,8 @@
{{ form.urlLink }}<br><br>
<label for="{{ form.downloadLink.id_for_label }}">Custom URL for downloading updates (replaces https://rustdesk.com/download):</label>
{{ form.downloadLink }}<br><br>
<label for="{{ form.compname.id_for_label }}">Company name for copyright (replaces Purslane Ltd):</label>
{{ form.compname }}<br><br>
</div>
</div>
<div class="container">

View File

@@ -48,6 +48,9 @@ def generator_view(request):
settings = form.cleaned_data['settings']
appname = form.cleaned_data['appname']
filename = form.cleaned_data['exename']
compname = form.cleaned_data['compname']
if not compname:
compname = "Purslane Ltd"
permPass = form.cleaned_data['permanentPassword']
theme = form.cleaned_data['theme']
themeDorO = form.cleaned_data['themeDorO']
@@ -170,6 +173,7 @@ def generator_view(request):
extras['hidecm'] = 'true' if hidecm else 'false'
extras['statussort'] = 'true' if statussort else 'false'
extras['removeNewVersionNotif'] = 'true' if removeNewVersionNotif else 'false'
extras['compname'] = compname
extra_input = json.dumps(extras)
####from here run the github action, we need user, repo, access token.