dev: nightly v0.13.15#1908
Merged
Myriad-Dreamin merged 21 commits intoMyriad-Dreamin:nightly/v0.13.15from Jul 23, 2025
Merged
Conversation
fixup 3
1cc942c to
d4c9be4
Compare
3 tasks
Collaborator
Author
Myriad-Dreamin
approved these changes
Jul 23, 2025
Owner
There was a problem hiding this comment.
The LoCs of lock file increases from 6100+ to 6500+, we may check whether there are some diverged common dependencies.
| fn push_color(&mut self, range: Range<usize>, color: Color) -> Option<()> { | ||
| let rng = self.ctx.to_lsp_range(range, &self.source); | ||
| let [r, g, b, a] = color.to_rgb().to_vec4(); | ||
| let (r, g, b, a) = color.to_rgb().into_components(); |
Owner
There was a problem hiding this comment.
todo: investigate to_vec4 is exact into_components
Collaborator
Author
There was a problem hiding this comment.
| ) -> Option<Definition> { | ||
| let label = Label::construct(name.into()); | ||
| let sel = Selector::Label(label); | ||
| let sel = Selector::Label(label.unwrap()); |
| let csl_style = bib_elem | ||
| .style | ||
| .get_ref(StyleChain::default()) | ||
| .derived |
| typst_source: &Source, | ||
| ) -> Option<usize> { | ||
| let lines = typst_source.len_lines() as u32; | ||
| let lines = typst_source.lines().len_lines() as u32; |
Owner
There was a problem hiding this comment.
we could refactor to better utilize lines() apis.
| { | ||
| "isIncomplete": false, | ||
| "items": [ | ||
| { |
| let metadata = doc.introspector().query(&Selector::Label(selector)); | ||
| let metadata = doc | ||
| .introspector() | ||
| .query(&Selector::Label(selector.unwrap())); |
Owner
There was a problem hiding this comment.
todo: we added unwrap here
| let label = Label::new(PicoStr::intern("test-html-example")); | ||
| // todo: error multiple times | ||
| doc.introspector.query_label(label).is_ok() | ||
| doc.introspector.query_label(label.unwrap()).is_ok() |
| World, | ||
| }; | ||
|
|
||
| use crate::{ |
Owner
There was a problem hiding this comment.
use crate::{ was moved forward occasionally.
e3e680e
into
Myriad-Dreamin:nightly/v0.13.15
28 of 29 checks passed
Merged
Myriad-Dreamin
pushed a commit
that referenced
this pull request
Jul 31, 2025
Myriad-Dreamin
pushed a commit
that referenced
this pull request
Aug 2, 2025
Myriad-Dreamin
pushed a commit
that referenced
this pull request
Aug 2, 2025
Myriad-Dreamin
pushed a commit
that referenced
this pull request
Aug 2, 2025
Myriad-Dreamin
pushed a commit
that referenced
this pull request
Aug 2, 2025
Myriad-Dreamin
pushed a commit
that referenced
this pull request
Aug 2, 2025
ParaN3xus
added a commit
to ParaN3xus/tinymist
that referenced
this pull request
Aug 7, 2025
In addition to the work from Myriad-Dreamin#1908, the following have been added: - Attempted to fix the typlite issue, see Myriad-Dreamin#1911 - Updated Rust toolchain to 1.88 to align with upstream Rust version
Myriad-Dreamin
pushed a commit
that referenced
this pull request
Sep 9, 2025
ParaN3xus
added a commit
to ParaN3xus/tinymist
that referenced
this pull request
Sep 24, 2025
In addition to the work from Myriad-Dreamin#1908, the following have been added: - Attempted to fix the typlite issue, see Myriad-Dreamin#1911 - Updated Rust toolchain to 1.88 to align with upstream Rust version
Myriad-Dreamin
pushed a commit
that referenced
this pull request
Oct 21, 2025
Myriad-Dreamin
pushed a commit
that referenced
this pull request
Oct 21, 2025
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
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.
Nightly Release at fix: vesrion in package.json files are wrong (#1834), using ParaN3xus/typst tinymist-nightly-v0.13.15, a.k.a. typst/typst Rephrase docs for truncation of float/decimal to integer (typst/typst#6543).