github SuperCuber/dotter v0.10.1
Release v0.10.1

latest releases: v0.13.4, v0.13.3, v0.13.2...
4 years ago

BREAKING Changes:

  • Dotter now supports including files in local.toml - read more about it in the wiki and the issue, together with a breaking change to local.tomls:
    local.toml contents are no longer broken down by packages.
    To adjust to the new format, remove the package. from [package.files] and [package.variables], then merge all [files] and [variables] sections.
    For example, before:
packages = ["package1", "package2"]
[package1.files]
file1 = "target1"

[package1.variables]
variable1 = "value1"

[package2.files]
file2 = "target2"

after:

packages = ["package1", "package2"]

[files]
file1 = "target1"
file2 = "target2"

[variables]
variable1 = "value1"
  • Default configuration directory is now .dotter instead of dotter_settings. To migrate:
    • Move dotter_settings to .dotter
    • Change helper paths accordingly (if applicable)
    • Change included.toml paths accordingly (if applicable)
    • Adjust .gitignore

Don't miss a new dotter release

NewReleases is sending notifications on new releases.