index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-04-15 | Change version to 2.2.0 in 2.2.0 branch | Dylan M. Taylor | |
2021-04-12 | moved to flit build system | advaithm | |
2021-04-07 | Merging changes from master into feature branch to avoid future conflics. | Anton Hvornum | |
2021-04-05 | Add console_scripts archinstall entry point | Pyfisch | |
archinstall should be callable from the command-line. Previously this was achieved with a shell script, however Python packages contain a built in way to to this via the entry points mechanism. | |||
2021-04-05 | Switch to setup.cfg | Pyfisch | |
Configure setup.cfg to find all Python packages. Add more metadata to package. | |||
2021-03-25 | New feature: Profile() now supports .packages which returns any defined ↵ | Anton Hvornum | |
packages for that specific profile, as well as archinstall.__packages__ contain any packages that Installer() is responsible for. This can be used to quickly gather any required packages and dependencies by archinstall. Not all profiles have it yet, so .packages might return None. | |||
2021-02-07 | Added in argument support to archinstall for easier testing and debugging | Anton Hvornum | |
2021-01-25 | Created an embryo for hardware detection. Supports detecting WiFi and UEFI. ↵ | Anton Hvornum | |
This fixes #44 and is a start for #82. | |||
2020-10-19 | Fix some PEP-8 errors. | Varun Madiath | |
2020-10-18 | Added a session-storag. This is in an attempt to build away some magic ↵ | Anton Hvornum | |
functionality that might otherwise be hard to understand/maintain over a long period of time. Using this in profiles/desktop.py as a test. | |||
2020-10-18 | Reverted TTS implementation from 35913c4. Since blind people use screen ↵ | Anton Hvornum | |
readers for this functionality. Will have a look at http://www.linux-sppeakup.org/. | |||
2020-10-11 | Added imports for `archinstall.TTS()` as well as added optinal depends for ↵ | Anton Hvornum | |
`PKGBUILD` files. | |||
2020-09-30 | First complete draft of the documentation. Some autodocs are still ↵ | Anton Hvornum | |
unpopulated but will be done via code and not reST chapters. | |||
2020-09-01 | Adding service logic. Checking if reflector has finished before we select ↵ | Anton Hvornum | |
custom mirrors (if any) | |||
2020-09-01 | Added locale helpers in terms of keyboard language/layout. ↵ | Anton Hvornum | |
archinstall.list_keyboard_languages(), archinstall.search_keyboard_layout() and archinstall.set_keyboard_language() work together to help listing, finding and setting a keyboard layout in terminals. Won't work for X-frontends, but will do for CLI installation methods. Added a language selector-helper-function with a crude search functionality. Added all this to the guided template. | |||
2020-08-20 | Starting to add networking helpers in archinstall. First up is ↵ | Anton Hvornum | |
archinstall.getHwAddr(ifname) which returns the mac of a interface name. second is archinstall.list_interfaces() which lists all the local MAC addresses and which interface it is bound to. Also starting to add the unattended installer back step by step. Currently with one MAC profile. The MAC profile filtering/detection has also been added in archinstall.list_profiles() - it will filter out all MAC address-specific profiles when called, unless a MAC matches a profile or filter_irrelevant_macs=False is given. | |||
2020-07-21 | Added a set_timezone() and fixed set_locale() in the Installer() class. Also ↵ | Anton Hvornum | |
added a mirrors.py helper to rudimentary set mirror data on the installer host | |||
2020-07-07 | Added pythons -m module support. __main__.py is the main module entry path, ↵ | Anton Hvornum | |
and setup.py now includes the examples (which as been renamed for more convenient module importing) which - enables __main__.py to locate the examples and import them via importlib and execute them. | |||
2020-07-07 | Added colored output. Also tested non-encrypted installations and added ext4 ↵ | Anton Hvornum | |
support. | |||
2020-07-06 | Reworked final preparations for working with profiles and installing them. | Anton Hvornum | |
2020-07-06 | Converted the lib to a pip supported structure to make packaging easier. ↵ | Anton Hvornum | |
Also tweaked some minor issues and added the AUR function |