mirror of
https://github.com/bryangerlach/rdgen.git
synced 2025-11-29 00:23:27 +00:00
.
This commit is contained in:
5
.github/workflows/generator-windows.yml
vendored
5
.github/workflows/generator-windows.yml
vendored
@@ -584,11 +584,6 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
echo -n "${{ inputs.custom }}" | cat > ./rustdesk/custom.txt
|
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
|
- name: Build self-extracted executable
|
||||||
shell: bash
|
shell: bash
|
||||||
if: env.UPLOAD_ARTIFACT == 'true'
|
if: env.UPLOAD_ARTIFACT == 'true'
|
||||||
|
|||||||
@@ -4,7 +4,8 @@ from PIL import Image
|
|||||||
class GenerateForm(forms.Form):
|
class GenerateForm(forms.Form):
|
||||||
#Platform
|
#Platform
|
||||||
platform = forms.ChoiceField(choices=[('windows','Windows 64Bit'),('windows-x86','Windows 32Bit'),('linux','Linux'),('android','Android'),('macos','macOS')], initial='windows')
|
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"
|
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)
|
delayFix = forms.BooleanField(initial=True, required=False)
|
||||||
|
|
||||||
|
|||||||
@@ -250,8 +250,8 @@ def generator_view(request):
|
|||||||
return JsonResponse({"error": "Something went wrong"})
|
return JsonResponse({"error": "Something went wrong"})
|
||||||
else:
|
else:
|
||||||
form = GenerateForm()
|
form = GenerateForm()
|
||||||
#return render(request, 'maintenance.html')
|
return render(request, 'maintenance.html')
|
||||||
return render(request, 'generator.html', {'form': form})
|
#return render(request, 'generator.html', {'form': form})
|
||||||
|
|
||||||
|
|
||||||
def check_for_file(request):
|
def check_for_file(request):
|
||||||
|
|||||||
Reference in New Issue
Block a user