Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-04-20rebase clean upadvaithm
2021-04-20repharsed some stuffadvaithm
2021-04-20reworked how we handle bootloaders a littleadvaithm
2021-04-20rebaseadvaithm
2021-04-20Merge pull request #317 from insanemal/torxed-v2.2.0Anton Hvornum
In guided install Non-UEFI installs need to use grub-install
2021-04-20Merge branch 'torxed-v2.2.0' into torxed-v2.2.0Anton Hvornum
2021-04-20Fix TabError issue after uncommentingSecondThundeR
2021-04-20Merge pull request #285 from dylanmtaylor/patch-4Anton Hvornum
Change from argon2i to argon2id
2021-04-20Fix infinite loop on incorrect input of gateway IPSecondThundeR
2021-04-20Uncomment new check for gateway IP addressSecondThundeR
2021-04-20Add sort parameter for generic_selectSecondThundeR
Updated required features to support these change
2021-04-20Merging in PR #312 - Add Deepin desktopAnton Hvornum
2021-04-19Update some functionsSecondThundeR
Here are list of changes: - Added IP/subnet validation using Python's `ipaddress` module - Added workaround for network configuration modes where user can enter DHCP or IP without brackets. - Returned local printing options for some functions to keep `The above list...` - Moved booleans for `generic_select` below options and text parameters - Imported some functions from `archinstall` to reduce the`archinstall.` part of the lines. - Reduced variable name length for simplicity - Fixed some typos
2021-04-19Merge pull request #321 from SecondThundeR/patch-1Anton Hvornum
Fix typo in partition.format()
2021-04-17Replace input with generic_select where necessarySecondThundeR
Here are list of changes: > From now on, `generic_select` will be called "Select function", for clarity - Slightly updated select function - Removed options output for some functions, where it's better to do with select function - Added sorting for all lists passed to select function - Replaced `dict.values()` with `dict` as options parameter - Simplified input checking for all functions that use the select function - Added temporary *(for now)* workaround for passing `?` and `help` inputs - Merged fix for `partition.format()`
2021-04-17Fix typo in partition.format()Владислав
2021-04-17Initial rework of generic_select functionSecondThundeR
Here are list of changes: - Removed `sort` parameter, since every function has a sorted list in most cases - Added two new parameters to disable local output of options items and allow empty input from the user by returning None - Added a while loop, where it returns each time a RequirementError is raised - Added log info for each input error to help figure out what the problem is - Changed the check of the stripped input length to compare with 0, since the length cannot be less than 0 - Changed `isdigit` to `isnumeric`, which returns False if given digit is negative - Slightly changed a check for an out of range error - Removed displaying the list of available options when input is incorrect, in order to prevent the screen from overflowing - Added log info if options list is empty - Added log info if options are not dictionary or list - Added dictionary values conversion to accept only list and dictionaries as option - Added sorting dictionary values by default
2021-04-17Merge pull request #320 from SecondThundeR/language-select-fixAnton Hvornum
Fix selecting language layout by name
2021-04-17Merge pull request #319 from archlinux/torxed-master-mergeAnton Hvornum
Torxed master merge
2021-04-17Removed merge artifact.Anton Hvornum
2021-04-17Fix selecting language layout by nameВладислав
2021-04-17Merging in master to feature branch.Anton Hvornum
2021-04-17Package called grub not grub-installMalccolm Haak
2021-04-17Whitespace needs to be tabs. Added test for UEFI, if not found add ↵Malccolm Haak
grub-install to pacstrap install
2021-04-17In guided install Non-UEFI installs need to use grub-install as its the only ↵Malccolm Haak
supported bootloader that doesn't require UEFI
2021-04-16Merge pull request #311 from dylanmtaylor/patch-5Anton Hvornum
These could affect whether the code builds/runs correctly
2021-04-15Add Deepin desktoprobsonsilv4
2021-04-15.toml files could also possibly affect behavior.Dylan M. Taylor
2021-04-15These could affect whether the code builds/runs correctlyDylan M. Taylor
They should not be ignored.
2021-04-15Merge pull request #310 from SecondThundeR/workflow-featuresAnton Hvornum
Add ignore rules for iso-build.yaml
2021-04-15Revert `README` addition, it's catched by **.mdAnton Hvornum
2021-04-15Added README to ignoreAnton Hvornum
2021-04-15Add ignore rules for iso-build.yamlВладислав
These rules ignore all unrelated files and folders that are not needed to build the ISO.
2021-04-15Merge pull request #309 from SecondThundeR/readme-branchAnton Hvornum
Fix README table of content
2021-04-15Fix README table of contentSecondThundeR
Also commented out the code responsible for centering the logo for future decisions
2021-04-15Spelling errorAnton Hvornum
2021-04-15Merge pull request #308 from dylanmtaylor/patch-6Anton Hvornum
Change version to 2.2.0 in 2.2.0 branch
2021-04-15Change version to 2.2.0 in 2.2.0 branchDylan M. Taylor
2021-04-15Merge pull request #307 from dylanmtaylor/patch-5Anton Hvornum
Bump to 2.1.4
2021-04-15Bump to 2.1.4Dylan M. Taylor
2021-04-14Merge pull request #304 from advaithm/masterAnton Hvornum
Fixing kbd layout issues and non-logical crashes in guided.py questions
2021-04-14Language issueAnton Hvornum
2021-04-14Increased margin to facilitate error outputAnton Hvornum
2021-04-14Removed layout filteringAnton Hvornum
This caused languages such as `be-latin1` to be hidden both in Search and direct input. Because as an example that layout belongs to `azerty` and not `qwerty`.
2021-04-14Added a default keyboard layoutAnton Hvornum
This is just in case either the search step or the selector inputs nothing. Something has to be set, and the default is US.
2021-04-14Added a safety net to language selectionAnton Hvornum
2021-04-14Updated README's minimal exampleAnton Hvornum
2021-04-14Updated the loop logic for mirrorsAnton Hvornum
It wouldn't break out of the loop since the `valid_mirror` variable was never changed.
2021-04-14Updated the loop logic for packagesAnton Hvornum
It wouldn't loop over the question again, so correct for that.
2021-04-14Modified return value back to {}Anton Hvornum