Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Section nested under page must respect its slug in the URL path #2369

Open
wants to merge 36 commits into
base: next
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
8d16d17
Next version
Keats Mar 19, 2023
b00ae42
print error message when no config file found (#2168)
iEverX Apr 6, 2023
1ed722c
Speedup "zola check" command by reusing the Client (#2171)
MTRNord Apr 6, 2023
6a5c241
Implement replace_re filter (#2163)
cydave Apr 20, 2023
c48b61a
templates: add base URL for feed content (#2190)
jk-ozlabs Apr 23, 2023
7edf92b
Fix multi-lingual json index (#2197)
Jieiku Apr 28, 2023
7448309
Add search.index_format into the serialized config (#2165) (#2196)
Raymi306 May 1, 2023
4f77980
Fix typo in error message
Keats May 2, 2023
1321a83
Hard link serve panic fix (#2210)
Raymi306 May 6, 2023
b5a90db
Add support for lazy loading images (#2211)
sinofp May 6, 2023
1778707
Prevent spans crossing line boundaries in class-based code block form…
TheOnlyMrCat Jul 10, 2023
afc0e2c
always sort assets by filename (Windows/Linux difference) (#2236)
wold5 Jul 10, 2023
66f5bf5
Atom template authors (#2259)
heitorPB Jul 26, 2023
f962370
Add attributes to base_url link in atom template (#2261)
savq Jul 27, 2023
d3793cd
Fixes #2250; Error instead of panic when root directory or config fil…
Raymi306 Jul 30, 2023
fe1967f
Fix LFI in `zola serve` (#2258)
adeadfed Aug 4, 2023
b97a1d5
Update changelog
Keats Aug 4, 2023
f0b984d
Update edition
Keats Aug 4, 2023
57968be
Update deps
Keats Aug 4, 2023
c4341b1
Add ignored_static to config (#2209)
Raymi306 Aug 13, 2023
4474afa
template:feeds: add extra block (#2263)
heitorPB Aug 13, 2023
e81e139
Add Checking and Force Flag for Directory in Serve Command (#2265)
SquirrelHub Aug 17, 2023
674c433
fix: suppress highlight language warnings if highlight_code is false …
welpo Aug 30, 2023
1b423fb
Avoid unnecessary checking for already checked links (#2305)
biodranik Sep 24, 2023
2da4981
Clippy
Keats Sep 24, 2023
a41547c
Update changelog
Keats Sep 24, 2023
c8cc5f3
Update `grass` to 0.13 (#2321)
ISSOtm Sep 29, 2023
5d5d76e
Update deps
Keats Oct 19, 2023
d3cab30
Add apple arm (#2324)
technimad Oct 21, 2023
2e3fe2d
ignore kate-swp files (#2353)
selfisekai Nov 3, 2023
f20a1ba
elasticlunr-rs 3.0.2, hu language support (#2151)
sapati Nov 20, 2023
9afa349
Update changelog and deps
Keats Nov 20, 2023
252bbe0
Superfluous mut.
virtualritz Jul 24, 2023
fa254ca
Actually remove code blocks from search index
Keats Dec 7, 2023
b883c49
Remove dummy file
Keats Dec 7, 2023
b98420e
Spence section nested under page uses parent slug in url path (#1)
asimpletune Dec 10, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## 0.18.0 (unreleased)

- Fix LFI in `zola serve`
- Do not panic when root directory or config file not found
- Fix base_url link attributes in atom templates
- Use all authors for atom templates
- Always sort page/section assets by filename
- Allow setting attributes to lazy load all images from Config.toml
- Fix HTML generated in class based highlighting with line numbers
- Add a `replace_re` filter
- Speed up `zola check` and only checks external links once, even if present in multiple languages
- Add `search.index_format` into the serialized config in the templates
- Add --force flag in `zola serve` if the directory is not empty
- Add `ignored_static` to the config to ignore specific files from the static directory
- Add Hungarian support for search

## 0.17.2 (2023-03-19)

- Fix one more invalid error with colocated directories
Expand Down
Loading