Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2023-10-05 | Qt UI: Don't update date/time inputs while focused | A. Wilcox | 1 | -2/+2 | |
This makes for poor UX. If the user can't type fast, it will keep updating underneath them, which is very frustrating. Saw in IRL test. Fixes: #358 | |||||
2023-10-05 | image: ISO backend: Probe GRUB version as well | A. Wilcox | 1 | -0/+6 | |
Fixes: #335 | |||||
2023-10-05 | Qt UI: Remove LibreOffice from custom package list | A. Wilcox | 1 | -1/+0 | |
Fixes: #356 Ref: adelie/packages#859 | |||||
2023-10-05 | Qt UI: Respawn DHCP page from NetworkingPage, too | A. Wilcox | 2 | -0/+17 | |
We are already recreating the DHCP page every time the interface chooser is shown. However, if we don't do this from the main network page, then systems with a single interface will never recreate the DHCP page. This means failures are "sticky" / "forever". Fixes: #354 | |||||
2023-10-05 | Qt UI: QoI improvements to launching tools | A. Wilcox | 5 | -6/+34 | |
* Terminal now uses dark background with light text, which makes root prompt readable when started from Install CD. * Tools are now spawned instead of run modally. This means you can interact with the Horizon wizard while using the Terminal or Web browser. If a tool is still running at the end, Horizon will prompt the user before allowing them to commit to disk. | |||||
2023-10-01 | ISO: Simplify aarch64 creation | A. Wilcox | 2 | -5/+2 | |
2023-09-05 | image: ISO backend: Add Arm64 files | A. Wilcox | 2 | -0/+71 | |
These seem to work, but our GRUB kernel isn't being built properly yet, so this isn't quite release-ready. | |||||
2023-09-05 | image: ISO backend: Probe xorriso before starting | A. Wilcox | 1 | -0/+6 | |
Ensures that the user's time isn't wasted if xorriso is missing. | |||||
2023-09-05 | image: Tar backend: Fix ups | A. Wilcox | 1 | -10/+26 | |
* Use <filesystem> portably. * Create the target directory if it doesn't exist. * Fix symlink detection bug that could cause target mtab to halt image creation. | |||||
2023-09-05 | Qt UI: Add MIPS lines back to keygen | A. Wilcox | 1 | -0/+13 | |
Otherwise, we error out building from missing those cases. | |||||
2023-06-15 | Qt UI: Update signing keys | Zach van Rijn | 1 | -25/+12 | |
We rotated our keys in 2022 and need to use them. | |||||
2023-03-26 | CMake: Disable use of std::filesystem | A. Wilcox | 1 | -5/+5 | |
Causes Valgrind to report memory errors on GCC 8.5.0. | |||||
2023-03-26 | CMake: Set CWD for Valgrind tests | A. Wilcox | 2 | -2/+4 | |
This ensures that our .valgrindrc is picked up. | |||||
2023-03-25 | Qt UI: Use Plasma as the default | A. Wilcox | 1 | -0/+1 | |
Prevents us from falling off the end of the function. | |||||
2023-03-25 | Qt UI: Support DE choice, current as default | A. Wilcox | 4 | -24/+94 | |
In the Runtime Environment, we default to Plasma. In the Install Environment, we use the current desktop. Closes: #340 | |||||
2023-03-25 | image: C++2x and Boost.Filesystem fixes | A. Wilcox | 3 | -10/+11 | |
* Ensure that Boost.Filesystem is still usable. * Don't use a reference to a temporary in loops. Fixes: #333 | |||||
2023-03-25 | meta: Tidy code | A. Wilcox | 1 | -3/+4 | |
* Use <cassert> instead of <assert.h>. * Include <cstring> for ::strerror in install env. * Consistently use ::strerror. * Remove superfluous duplicate semicolon. Fixes: #334 | |||||
2022-09-04 | Release version 0.9.70.9.7 | Zach van Rijn | 1 | -1/+56 | |
2022-09-04 | Remove Dockerized documentation generator. | Zach van Rijn | 2 | -17/+0 | |
2022-07-05 | tests: Fix, once and for all | A. Wilcox | 1 | -1/+1 | |
2022-07-05 | tests: Add an stdout check to the simulator check | A. Wilcox | 1 | -0/+1 | |
There's a weird failure that is hard to debug, and this will help. Additionally, this shouldn't cause any issues on passing builds. | |||||
2022-07-05 | tests: Ensure Ruby is always in UTF-8 mode | A. Wilcox | 3 | -0/+7 | |
This ensures that tests pass even when run in other locales. | |||||
2022-07-05 | CI: Make test environment more predictible | A. Wilcox | 1 | -2/+2 | |
Set LANG to C.UTF-8 to ensure that UTF-8 tests don't fail (such as the username example that has 'Adélie User'). | |||||
2022-07-05 | hscript: Better, more portable net conf reading | A. Wilcox | 1 | -2/+2 | |
Checking in_avail doesn't work correctly on Darwin due to the way file caches work there. This method is not only more portable, but also more performant. A win-win! | |||||
2022-07-05 | Qt UI: Handle salt material correctly | A. Wilcox | 1 | -3/+3 | |
Found by Clang 13. We should have been doing it this way all along. | |||||
2022-07-05 | hscript: Portability fixes for libc++ | A. Wilcox | 2 | -2/+3 | |
2022-07-04 | Qt UI: Use correct SkipEmptyParts based on Qt SDK | A. Wilcox | 1 | -1/+5 | |
2022-07-04 | Qt UI: Refactor mount dialog partition display | A. Wilcox | 1 | -5/+9 | |
*once again*, do things the more complex way instead of the simple way. (Sensing a pattern yet?!) | |||||
2022-07-04 | Qt UI: Port to using heavier buttonClicked signal | A. Wilcox | 5 | -21/+21 | |
Once again, Qt has taken our simple API away and left us only with the more complex one. At least this one isn't too hard to work around. Move to using QOverload instead of static_cast for all of them as well. | |||||
2022-07-04 | Qt UI: Use newer QPalette name | A. Wilcox | 1 | -1/+1 | |
QPalette::background was deprecated a long time ago, and QPalette::window has existed since at least 5.7. | |||||
2022-07-04 | Qt UI: Use alternative QProcess API | A. Wilcox | 3 | -4/+4 | |
Qt 5.15 deprecates the simpler API, but luckily the more complicated API is supported back to Qt 5.0. | |||||
2022-07-04 | Qt UI: Use 'tain' instead of 'tain_t' | A. Wilcox | 2 | -3/+3 | |
This is required to support the newer skalibs releases. We don't need to have good support for older versions because this code is only used in the Install Environment, which we control. | |||||
2022-01-23 | Merge branch 'offer-sddm-option' into 'current' | Zach van Rijn | 1 | -0/+1 | |
Qt UI: Offer SDDM as an option for Custom installs See merge request adelie/horizon!6 | |||||
2022-01-23 | Qt UI: Offer SDDM as an option for Custom installs | A. Wilcox | 1 | -0/+1 | |
2022-01-23 | Merge branch 'docs-by-default' into 'current' | Zach van Rijn | 1 | -1/+1 | |
Qt UI: Select 'docs' package for Standard/Mobile See merge request adelie/horizon!5 | |||||
2022-01-23 | Qt UI: Select 'docs' package for Standard/Mobile | A. Wilcox | 1 | -1/+1 | |
2022-01-15 | README: and, finally, the real fix | A. Wilcox | 1 | -1/+1 | |
2022-01-15 | README: Ordering is important | A. Wilcox | 1 | -1/+1 | |
2022-01-15 | README: Fix build badge | A. Wilcox | 1 | -1/+1 | |
2022-01-15 | README: Update branch name | A. Wilcox | 1 | -2/+2 | |
2022-01-15 | Update documentation for new URLs etc | A. Wilcox | 4 | -22/+14 | |
2021-10-21 | bump alpine base image { 3.13 --> 3.14 } | Zach van Rijn | 1 | -1/+1 | |
2021-06-01 | Dockerize Horizon docs too, but TODO fix CORS nonsense (or migrate these ↵ | Zach van Rijn | 4 | -4/+22 | |
docs and forget that). | |||||
2021-05-05 | Fix links (move from 'horizon.a.o' --> 'a.o/horizon'). | Zach van Rijn | 1 | -13/+13 | |
2020-11-07 | Update CHANGELOG0.9.6 | A. Wilcox | 1 | -0/+35 | |
2020-10-15 | image: Tar backend: Fix symlink issues | A. Wilcox | 1 | -4/+11 | |
2020-10-15 | tests: Don't depend on any ordering of /e/c/net | A. Wilcox | 1 | -8/+8 | |
2020-10-15 | hscript: bootloader: Hopefully fix EFI once and for all | A. Wilcox | 1 | -6/+7 | |
2020-10-15 | Add many more various test cases | A. Wilcox | 20 | -25/+220 | |
2020-10-15 | hscript: PPPoE: Ensure values are read properly | A. Wilcox | 1 | -1/+1 | |