Skip to content

Commit 35e27c4

Browse files
committed
words
1 parent d0a3f38 commit 35e27c4

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.2.0] - 2026-04-05
9+
10+
### Added
11+
- Custom category directories: override where `lua`, `macros`, or `plugins` install via `CATEGORY_PATHS` in `settings.local.toml`.
12+
- Clearer messages for users on why certain resources are skipped or blocked.
13+
14+
### Changed
15+
- Rewrote the sync pipeline with separate discovery, planning, and execution stages.
16+
817
## [1.1.2] - 2026-02-16
918

1019
### Fixed

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,18 @@ If there are local files you don't want overwritten by a resource, you can add t
130130
navmesh = ["befallen.navmesh", "innothuleb.navmesh"]
131131
```
132132

133+
### Custom category directories
134+
135+
If you share `lua`, `macros`, or `plugins` directories across multiple MQ environments, you can override where an entire category is installed. Add a `CATEGORY_PATHS` section to your `settings.local.toml`:
136+
137+
```toml
138+
[DEFAULT.CATEGORY_PATHS]
139+
lua = 'D:\\shared\\lua'
140+
macros = 'D:\\shared\\macros'
141+
```
142+
143+
Absolute paths are used as-is. Relative paths are joined to `DOWNLOAD_FOLDER`. You can set this globally in `[DEFAULT]` or per-environment (`[LIVE.CATEGORY_PATHS]`, `[TEST.CATEGORY_PATHS]`, etc.).
144+
133145
## Tinkerers
134146

135147
If you self-compile MacroQuest or use a discord friend's copy, you can still keep your scripts and plugins in sync with redfetch by opting out of Very Vanilla:

0 commit comments

Comments
 (0)