This commit is contained in:
Bryan Gerlach
2025-11-21 21:49:17 -06:00
parent f72d9be70c
commit 661f39543c
3 changed files with 4 additions and 8 deletions

View File

@@ -584,11 +584,6 @@ jobs:
run: |
echo -n "${{ inputs.custom }}" | cat > ./rustdesk/custom.txt
- name: change permissions on custom.txt
shell: pwsh
run: |
icacls ./rustdesk/custom.txt /grant "Everyone:(OI)(CI)F"
- name: Build self-extracted executable
shell: bash
if: env.UPLOAD_ARTIFACT == 'true'

View File

@@ -4,7 +4,8 @@ from PIL import Image
class GenerateForm(forms.Form):
#Platform
platform = forms.ChoiceField(choices=[('windows','Windows 64Bit'),('windows-x86','Windows 32Bit'),('linux','Linux'),('android','Android'),('macos','macOS')], initial='windows')
version = forms.ChoiceField(choices=[('master','nightly'),('1.4.4','1.4.4'),('1.4.3','1.4.3'),('1.4.2','1.4.2'),('1.4.1','1.4.1'),('1.4.0','1.4.0'),('1.3.9','1.3.9'),('1.3.8','1.3.8'),('1.3.7','1.3.7'),('1.3.6','1.3.6'),('1.3.5','1.3.5'),('1.3.4','1.3.4'),('1.3.3','1.3.3')], initial='1.4.4')
#version = forms.ChoiceField(choices=[('master','nightly'),('1.4.4','1.4.4'),('1.4.3','1.4.3'),('1.4.2','1.4.2'),('1.4.1','1.4.1'),('1.4.0','1.4.0'),('1.3.9','1.3.9'),('1.3.8','1.3.8'),('1.3.7','1.3.7'),('1.3.6','1.3.6'),('1.3.5','1.3.5'),('1.3.4','1.3.4'),('1.3.3','1.3.3')], initial='1.4.4')
version = forms.ChoiceField(choices=[('1.4.3','1.4.3'),('1.4.2','1.4.2')], initial='1.4.3')
help_text="'master' is the development version (nightly build) with the latest features but may be less stable"
delayFix = forms.BooleanField(initial=True, required=False)

View File

@@ -250,8 +250,8 @@ def generator_view(request):
return JsonResponse({"error": "Something went wrong"})
else:
form = GenerateForm()
#return render(request, 'maintenance.html')
return render(request, 'generator.html', {'form': form})
return render(request, 'maintenance.html')
#return render(request, 'generator.html', {'form': form})
def check_for_file(request):