Skip to content

Commit 8b2050d

Browse files
authored
Added Version 1.4.8 (#261)
* Update version choices in GenerateForm * Update version choices in GenerateForm * Fix version choices formatting in GenerateForm * Update version choice field to include 1.4.8
1 parent 07c3191 commit 8b2050d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

rdgenerator/forms.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ class GenerateForm(forms.Form):
55
sh_secret_field = forms.CharField(required=False)
66
#Platform
77
platform = forms.ChoiceField(choices=[('windows','Windows 64Bit'),('windows-x86','Windows 32Bit'),('linux','Linux'),('android','Android'),('macos','macOS')], initial='windows')
8-
version = forms.ChoiceField(choices=[('master','nightly'),('1.4.7','1.4.7'),('1.4.6','1.4.6'),('1.4.5','1.4.5'),('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.7')
8+
version = forms.ChoiceField(choices=[('master','nightly'),('1.4.8','1.4.8'),('1.4.7','1.4.7'),('1.4.6','1.4.6'),('1.4.5','1.4.5'),('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.8')
99
help_text="'master' is the development version (nightly build) with the latest features but may be less stable"
1010
delayFix = forms.BooleanField(initial=True, required=False)
1111

0 commit comments

Comments
 (0)