8523 Commits (1e0295dc652ec2166a7f2acee1fcb38868c2f1e1)
 

Author SHA1 Message Date
Gaël PORTAY 3967cfe0eb [partition] Group EFI things together 4 years ago
Adriaan de Groot 9d930ad9cc
Docs: fix the table 4 years ago
Gaël PORTAY a1d45122eb [partition] Update partition.conf 4 years ago
Adriaan de Groot 8bfc4dfcd2 Docs: try to get the table of links right 4 years ago
Gaël PORTAY dad9587c3e [partition] Allow a configurable swap Partition name
This commit adds the new configuration `swapPartitionName` to the file
partition.conf.

This option sets the partition name to the swap partition that is
created. If this option is unset, the partition is left unnamed.
4 years ago
Adriaan de Groot 4387b8061e [keyboard] Move responsibility for retranslation to Config
- only widgets get language change events, so we need to
  hook that up to the ViewSteps and inform the Config
  object so that it can (re)load translations for the
  keyboard data.
4 years ago
Adriaan de Groot 71e0081fce [keyboard] SPDX-tagging 4 years ago
Adriaan de Groot 7db398cfdf
Merge pull request #1558 from gportay/partition-cleanups
[partition] cleanups
4 years ago
Adriaan de Groot 89a04e0fa3
Merge pull request #1559 from gportay/libcalamres-cleanups
[libcalamres] cleanups
4 years ago
Adriaan de Groot 89a180ee58 [keyboard] Initial support for translated keyboard names 4 years ago
Adriaan de Groot b72eba8157 [libcalamares] Extend the Deleter-helper with "preserve"
Sometimes you want to keep the thing around after all.
4 years ago
Adriaan de Groot 7659dfdb9d [libcalamares] Expose a translations-loading function 4 years ago
Gaël PORTAY f03ae06deb [partition] Rename execute to createPartitions 4 years ago
Gaël PORTAY f2bfe2bd6a [partition] Fix coding style 4 years ago
Gaël PORTAY cd725fbb4b Fix missing SPDX-FileCopyrightText in header 4 years ago
Gaël PORTAY 2007335865 [partition] Rename the KPMCore Partition local to part 4 years ago
Gaël PORTAY 32c1f81fbf [partition] Rename iterator in for loop to entry 4 years ago
Gaël PORTAY 3016b93c8f [partition] Simplify the method execute
- Rename the "size" locals using "sectors" in their name. Size may be
  confusing or not enough specific as it can be interpreted a size in
  Byte.
    partSizeMap -> partSectorsMap,
    totalSize -> totalSectors,
    availablesize -> availableSectors,
    size -> sectors,
    minSize -> minSectors
    maxSize -> maxSectors
- Create a the new local currentSector to iterate over the sectors;
  instead of using the parameter firstSector.
- Remove the variable end that does not help much; too many variable
  already. Expand its expression instead.
4 years ago
Gaël PORTAY 81bec68b3d [partition] Introduce new constructors for PartitionEntry
- Introduces new constructors for PartitionEntry: copy constructory and
  constructor with all attributes.
- Use the new constructor in method addEntry().
4 years ago
Gaël PORTAY 3f2dd516d3 [partition] Simplify the retrieval of the size attributes
- The variant helper toString() takes a default value since commit
  c9f942ad6 ([libcalamares] Add default value to variant helpers).
- Set the default value to 0 and simplify the retreival of size values
  by calling the helper toString() and removing the temporary variables.
4 years ago
Gaël PORTAY 03df5f6891 [libcalamares] Fix constness of functions 4 years ago
Gaël PORTAY aec066359a [libcalamares] Fix coding style 4 years ago
Gaël PORTAY db7cf74034 [partition] Remove the call the method contains
- The variant helper getString() calls contains() already.
4 years ago
Gaël PORTAY d6ea30b23e [partition] Move initLayout logic to object PartitionLayout
- The logic of the method initLayout belongs to the object
  PartitionLayout. Move logic to that object.
- Use a single method initLayout in object PartitionCoreModule.
- Member m_partLayout in object PartitionCoreModule is no longer
  allocated.
4 years ago
Gaël PORTAY eae1e90dce [partition] Remove unused PartitionLayout constructor
- The constructor PartitionLayout with PartitionEntry appears to be
  unused since its always. Drop it!
4 years ago
Gaël PORTAY f2960366c8 [partition] Remove unused addEntry method
- The method addEntry with PartitionEntry appears to be unused since its
  always. Drop it!
4 years ago
Adriaan de Groot ac6c9fae4a [libcalamares] Do not use moved-from object 4 years ago
Adriaan de Groot 063fb24f3a i18n: add translations source for keyboards 4 years ago
Adriaan de Groot 2e9a44269c [keyboard] Extracted strings from keyboard list 4 years ago
Adriaan de Groot 5a378090c2 [keyboard] Do not munge keyboard model name
The translation happens whenever this code is run, which may
not match the language the user subsequently selects.
It also causes general problems with the translation,
since we end up with a possibly-partly-translated name.
4 years ago
Adriaan de Groot 7ec8c454bd [keyboard] Ukranian needs a switcher, too 4 years ago
Adriaan de Groot 8457a00ad0 [keyboard] Fix group-switcher multiplying
FIXES #1556
4 years ago
Adriaan de Groot daaf16d331 Merge branch 'calamares' into issue-1523 4 years ago
Adriaan de Groot c36aa43f86 CI: use a larger tmpfs for the build (my local build/ is 112M) 4 years ago
Calamares CI f822856441 i18n: [python] Automatic merge of Transifex translations 4 years ago
Calamares CI 3e57979e73 i18n: [desktop] Automatic merge of Transifex translations 4 years ago
Calamares CI e4a8b8358f i18n: [calamares] Automatic merge of Transifex translations 4 years ago
Adriaan de Groot aeeb4332b0 Changes: add Vietnamese translation 4 years ago
Adriaan de Groot 018788ddc0 Changes: document Artem's work 4 years ago
Adriaan de Groot 8fd66933ee Merge branch 'fix-keyboardq' into calamares
This lands Artem's work on supporting non-ASCII layouts better,
which currently only applies to Russian layouts -- it works with
a table, so it is easy to extend for other layouts.

The QML and Widget steps now completely share the Config backend,
which is why there's so many commits here: the Widget page needed
to have most of its code ripped out, and the models for
keyboard data were broken in various ways and needed fixing.

FIXES #1211
4 years ago
Adriaan de Groot cd9c0ea781 [keyboard] Reduce debugging output 4 years ago
Adriaan de Groot 2e5301c5c9 [keyboard] Simplify back down to lambdas
- With debugging and untangling done, the lambdas are simple
  and short, so return to using them. One point of improvement
  might be to give the models suitable slots themselves,
  to avoid even this indirection.
4 years ago
Adriaan de Groot 0bf28b0b94 [keyboard] Sanity in setCurrentIndex() parameters 4 years ago
Adriaan de Groot 9e141636c5 [keyboard] Tidy up the debugging output, add docs 4 years ago
Adriaan de Groot 14a76a386a [keyboard] Replace broken-ish variants model with k-v list
- Use the just-refactored XKBListModel to store the xkb key-value
  pairs for variants, drop most of the complicated implementation,
  store just a single list of values.
4 years ago
Adriaan de Groot d536173d66 [keyboard] Factor out a 2-column k-v list 4 years ago
Adriaan de Groot 5afe54132b [keyboard] Use the models from Config
- Remove code that is duplicated in Config.
- Hook up UI for physical keyboard model, and back.
- For now, introduce some named slots with debugging output.
  This makes debugging a lot easier since we have function names
  to work with rather than anonymous lambdas
4 years ago
Adriaan de Groot 168be02c96 [keyboard] Hook up the model-selection again 4 years ago
Adriaan de Groot 87aafb2442 [keyboard] Tear up connections between widgets and model 4 years ago
Adriaan de Groot 193efe1710 [keyboard] Restore the notion of PC105 default index 4 years ago