summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-04-19wip - qcssparabolabill-auger
2020-04-19housekeeping and styling tweaksbill-auger
2020-04-17merging tag v3.2.22 into parabolabill-auger
2020-04-14revert WIP package-chooser constraintsv3.2.20-parabola2bill-auger
2020-04-08[libcalamares] Format floats with trailing digitsAdriaan de Groot
- When writing YAML, given a float **always** write some decimal digits (e.g. "1.0" rather than "1") so that the type of the written-out thing stays float. - Avoids test failure with the sample `welcome.conf` file which reads 1.0 and would write out 1, which then led to type differences.
2020-04-08[libcalamares] Handle qlonglong when writing YAMLAdriaan de Groot
- Handle qlonglong explicitly - Add a fallbackfor things that convert to qulonglong, to avoid these remaining integer types from hitting the very end of the if-chain, and being written out as the **string** "<typename>"
2020-04-08[libcalamares] Be far more detailed in comparing mapsAdriaan de Groot
- just comparing a==b (both QVariantMap) gives a not-so-informative message, so go through the keys looking for differences.
2020-04-08i18n: [python] Automatic merge of Transifex translationsCalamares CI
2020-04-08i18n: [calamares] Automatic merge of Transifex translationsCalamares CI
2020-04-08Changes: pre-release housekeepingAdriaan de Groot
2020-04-07i18n: [python] Automatic merge of Transifex translationsCalamares CI
2020-04-07i18n: [dummypythonqt] Automatic merge of Transifex translationsCalamares CI
2020-04-07i18n: [calamares] Automatic merge of Transifex translationsCalamares CI
2020-04-07i18n: update English textsAdriaan de Groot
2020-04-07[partition] Apply coding style to core/Adriaan de Groot
2020-04-07Merge branch 'issue-1175'Adriaan de Groot
2020-04-07[partition] Mark /boot or / as bootableAdriaan de Groot
FIXES #1175
2020-04-07[partition] No "jobs/" needed in jobs includesAdriaan de Groot
2020-04-07[partition] Coding style on JobsAdriaan de Groot
2020-04-07[finished] Don't translate placeholder textAdriaan de Groot
2020-04-06Changes: notes on the module-polishing up to nowAdriaan de Groot
2020-04-06[netinstall] Expand the table of common-stringsAdriaan de Groot
When one of these common names for the netinstall page is used, it gets pulled out of the standard translations, so that it doesn't have to be translated in the per-distro config file. These labels are common enough that they make sense for everyone to have lying around. FIXES #1367 (I say "fixed" but of course it's going to depend on the translation workflow to make these available)
2020-04-06Merge branch 'issue-1335'Adriaan de Groot
FIXES #1335
2020-04-06[unpackfs] Counting works better when you update the variableAdriaan de Groot
2020-04-06[unpackfs] Update progress around every 1%Adriaan de Groot
2020-04-06[unpackfs] Don't jump back in progress while countingAdriaan de Groot
2020-04-06[unpackfs] Report progress more carefullyAdriaan de Groot
- Mark entries as totally-done - Show a message when counting an entry
2020-04-06[libcalamares] Pretty debug formattingAdriaan de Groot
- toggle nospace() and noquote() part-way through the line, so that they only affect the output obtained from the external command.
2020-04-06[libcalamares] Improve reporting on process failuresAdriaan de Groot
- In production, cDebug() might not show up, so the log will not contain the lines saying what program is being run; - Errors should at least mention the program name, but "env" or "chroot" is not useful, so pull that from *args*, which is the command we actually want to run.
2020-04-06[libcalamares] Error out on empty commandAdriaan de Groot
- an empty command isn't going to work (although it might successfully run chroot or env in the target system, that's not useful) - while here, move variable declarations closer to their use.
2020-04-06[libcalamares] Simplify program-arguments creationAdriaan de Groot
2020-04-06[unpackfs] Check for squashfs tools earlierAdriaan de Groot
2020-04-06[unpackfs] An entry knows where it is mountedAdriaan de Groot
- `imgmountdir` no longer defined in `UnpackOperation.run()`
2020-04-05Merge branch 'netinstall-columns'Adriaan de Groot
Fix issue reported on Telegram that netinstall columns are not wide enough to see the product names.
2020-04-05[netinstall] Resize name columnAdriaan de Groot
- Once group data is loaded and pre-expanded groups are open, adjust the column width so that all the names are visible.
2020-04-05[calamares] Fix test-loader for modules after ViewManager APIAdriaan de Groot
- The ViewManager needs to be told when loading is done now (because of the quit-at-end settings) See 7393198f7bdba5b4539a842dde54c34555cc269e
2020-04-04[netinstall] Add a group with long namesAdriaan de Groot
2020-04-04[unpackfs] Rework progress reportingAdriaan de Groot
- Slice overall progress into chunks, with each chunk of equal size (as long as we have no overall count information) and place the progress of the current chunk into its own slice.
2020-04-04[unpackfs] Refactor mounting for an entryAdriaan de Groot
- The entry knows where it should be mounted, and can remember that - mount_entry() didn't use self, so made no sense as a method of the Operation class
2020-04-04[unpackfs] Refactor counting an entryAdriaan de Groot
- This does not have to live in the Operation - Uses only the local imgmountdir (where the entry is mounted)
2020-04-04Merge pull request #1368 from demmm/masterAdriaan de Groot
[localeq] Repeater with zonesModel crashes cala
2020-04-04[localeq] Repeater with zonesModel crashes calademmm
probably due to dynamically loading items regionModel now lists, zonesModel only lists one delegate, but working on QML modules can now continue without crashing cala
2020-04-03Merge branch 'qml-keyboard'Adriaan de Groot
This doesn't actually **work** though, the QML uses older Calamares-internal APIs and uses a ResponsiveBase that we don't have. Merge it mostly for the Config and model changes. FIXES #1355
2020-04-03[libcalamaresui] Move lambda to a "real" slot.Adriaan de Groot
2020-04-03[libcalamaresui] Tell the manager explicitly when loading is doneAdriaan de Groot
- Add some extra checks for validity of m_currentStep (an index) - Start off with explicitly invalid index, and keep it so until loading is complete; this prevents the situation where quit-at-end gets triggered after loading the very first module.
2020-04-03[calamares] Minor clean-upsAdriaan de Groot
2020-04-03Merge panel-layout code: choose where to place sidebar + navAdriaan de Groot
2020-04-03[localeq] Hit QML file with a hammerAdriaan de Groot
- io.calamares.modules doesn't exist - ResponsiveBase doesn't exist The module is now non-functional, but at least it loads and renders a list of regions and zones.
2020-04-03[localeq] Fix loading default QMLAdriaan de Groot
- need our own copy of the QRC, that includes the QML
2020-04-03[keyboardq] Make QML availableAdriaan de Groot
- name default / example QML conventionally - copy QRC from keyboard -- the QML needs to be included in the QRC -- since we don't want to have the QML in the keyboard module.