This commit is contained in:
Bryan Gerlach
2024-12-04 17:40:30 -06:00
parent 14f82c081e
commit c49c063473
3 changed files with 4 additions and 4 deletions

View File

@@ -3,7 +3,7 @@ from django import forms
class GenerateForm(forms.Form):
#Platform
platform = forms.ChoiceField(choices=[('windows','Windows'),('linux','Linux (currently unavailable)'),('android','Android (testing now available)')], initial='windows')
version = forms.ChoiceField(choices=[('master','nightly'),('1.3.3','1.3.3'),('1.3.2','1.3.2'),('1.3.1','1.3.1'),('1.3.0','1.3.0')], initial='1.3.3')
version = forms.ChoiceField(choices=[('master','nightly'),('1.3.4','1.3.4'),('1.3.3','1.3.3'),('1.3.2','1.3.2'),('1.3.1','1.3.1'),('1.3.0','1.3.0')], initial='1.3.4')
delayFix = forms.BooleanField(initial=True, required=False)
#General