-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Next version #2925
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
Open
Keats
wants to merge
16
commits into
master
Choose a base branch
from
next
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Next version #2925
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* Metainfo: Add 0.21.0 * Metainfo: Replace <developer_name> with <developer> The developer_name tag is deprecated[1]. [1]: https://freedesktop.org/software/appstream/docs/chap-Validation.html#asv-developer-name-tag-deprecated
Fixes #2892 (hopefully)
…non-existent syntax (#2932)
* Update to 2024 edition Includes fixing all `cargo clippy --workspace` warnings. * Fix toml formatting
* Correctly remove footnote-reference from summary This commit updates and fixes the regular expression to find and delete footnote references in the pages' summaries. fecc3cf introduces the desired behaviour. 6a2b890 broke the suppression of footnote-reference in the summary by adding an id parameter to the <sup> elements for back-reference. Fixes #2961. Ref: fecc3cf Ref: 6a2b890 Ref: #2961 Ref: https://zola.discourse.group/t/drop-footnote-references-from-summary-if-bottom-footnotes-true/2841/2 * Test suppression of footnote-reference w/ back-ref Ref: 74fa93d Ref: 6a2b890
- This is a required field for flathub metainfo check Signed-off-by: Ayush Singh <[email protected]>
* Fix unwrap on checking timeout * Cargo fmt first when testing (fail fast to save time)
* Add option to attach rel=external to external links Ref: #2717 * Write test for external_link_external option Ref: #2717 * Document external_links_external option Ref: #2717 * Mark external links with rel=external by default Signed-off-by: Vincent Prouillet <[email protected]> Ref: #2969 * Update snapshots to reflect rel=external default Ref: #2969 --------- Signed-off-by: Vincent Prouillet <[email protected]>
Currently, a page filename beginning with a date must include a delimiter (`_` or `-`) followed by a slug. That means `2018-10-10-hello-world.md` works, but a date-only filename like `2018-10-10.md` is rejected. This commit makes date-only filenames (e.g. `2018-10-10.md`) valid. There is one configuration option that affects page name behavior: `paths_keep_dates`. Here is the new behavior with this commit: - paths_keep_dates = false - 2018-10-10.md -> [base_url]/2018-10-10 - 2018-10-10-hello-world.md -> [base_url]/hello-world - paths_keep_dates = true - 2018-10-10.md -> [base_url]/2018-10-10 - 2018-10-10-hello-world.md -> [base_url]/2018-10-10-hello-world Signed-off-by: Yasushi SHOJI <[email protected]>
* Introduce -d|--debounce <VALUE> flag for serve Let the file watcher use a configurable debounce value. This commit preserves the (until now hard-coded) 1-second debounce value as the default, but adds a new flag for the `serve` command, which lets the user configure a debounce duration for consecutive rebuilds in watch mode. Closes #2937. Ref: #2937 Ref: https://zola.discourse.group/t/watch-debounce-configuration/2666 * Document serve's --debounce flag in cli-usage.md Ref: 6737349 Ref: #2937 Ref: https://zola.discourse.group/t/watch-debounce-configuration/2666 * Explicitly prohibit --debounce 0 The `tick_rate` at which the debouncer library checks whether any events should now be dispatched shouldn't be 0. It cannot either be any greater than the debounce rate itself. Ideally, we may want to *disable* debouncing altogether when the user passes --debounce 0, but that'd require a special case to be made in the instrumentation, where we'd bypass the debouncer: that's another package to depend on, and ultimately deemed no worth the hassle. Ref: #2937 Ref: https://zola.discourse.group/t/watch-debounce-configuration/2666 * Fix formatting style The line was too long. I pruned the /*tick_rate=*/ inline comment that was indicating the name of the argument it was annotating, since it was *the exception*: there are zero other occurrences of such notation throughout this codebase.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.