mirror of
https://github.com/Myriad-Dreamin/tinymist.git
synced 2025-12-23 08:47:50 +00:00
build: bump version to 0.11.3 (#172)
* build: update readme and changelog for update * build: bump version to 0.11.3 * dev: remove a dirty console log * dev: update changelog
This commit is contained in:
parent
6c8074852f
commit
da70c0d31c
8 changed files with 73 additions and 11 deletions
8
Cargo.lock
generated
8
Cargo.lock
generated
|
|
@ -3595,7 +3595,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "tests"
|
||||
version = "0.11.2"
|
||||
version = "0.11.3"
|
||||
dependencies = [
|
||||
"insta",
|
||||
"lsp-server",
|
||||
|
|
@ -3692,7 +3692,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "tinymist"
|
||||
version = "0.11.2"
|
||||
version = "0.11.3"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"async-trait",
|
||||
|
|
@ -3743,7 +3743,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "tinymist-query"
|
||||
version = "0.11.2"
|
||||
version = "0.11.3"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"comemo 0.4.0",
|
||||
|
|
@ -3779,7 +3779,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "tinymist-render"
|
||||
version = "0.11.2"
|
||||
version = "0.11.3"
|
||||
dependencies = [
|
||||
"base64 0.22.0",
|
||||
"log",
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
[workspace.package]
|
||||
description = "An integrated language service for Typst."
|
||||
authors = ["Myriad-Dreamin <camiyoru@gmail.com>", "Nathan Varner"]
|
||||
version = "0.11.2"
|
||||
version = "0.11.3"
|
||||
edition = "2021"
|
||||
readme = "README.md"
|
||||
license = "Apache-2.0"
|
||||
|
|
|
|||
|
|
@ -42,9 +42,13 @@ Language service (LSP) features:
|
|||
Extra features:
|
||||
|
||||
- Compiles to PDF on save (configurable to as-you-type, or other options)
|
||||
- Provides code lenses for exporting to various formats (PDF, SVG, PNG, etc.)
|
||||
- Provides a status bar item to show the current document's compilation status and words count.
|
||||
- [Editor tools](https://github.com/Myriad-Dreamin/tinymist/tree/main/tools/editor-tools):
|
||||
- View a list of templates in template gallery.
|
||||
- Click a button in template gallery to initialize a new project with a template.
|
||||
- View a list of templates in template gallery. (`tinymist.showTemplateGallery`)
|
||||
- Click a button in template gallery to initialize a new project with a template. (`tinymist.initTemplate` and `tinymist.initTemplateInPlace`)
|
||||
- Trace execution in current document. (`tinymist.traceCurrentFile`)
|
||||
|
||||
|
||||
## Installation
|
||||
|
||||
|
|
|
|||
|
|
@ -4,6 +4,65 @@ All notable changes to the "tinymist" extension will be documented in this file.
|
|||
|
||||
Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.
|
||||
|
||||
## v0.11.3 - [2024-04-06]
|
||||
|
||||
### Editor
|
||||
|
||||
* (Fix) Skipped tabs that have no URIs for reopening pdf in https://github.com/Myriad-Dreamin/tinymist/pull/147
|
||||
|
||||
### Compiler
|
||||
|
||||
* ~~Evicting cache more frequently in https://github.com/Myriad-Dreamin/tinymist/pull/161~~
|
||||
* Reverted in https://github.com/Myriad-Dreamin/tinymist/pull/173.
|
||||
* (Fix) Collecting warning diagnostics correctly in https://github.com/Myriad-Dreamin/tinymist/pull/169
|
||||
|
||||
### Commands/Tools
|
||||
|
||||
* Introduced summary page in https://github.com/Myriad-Dreamin/tinymist/pull/137, https://github.com/Myriad-Dreamin/tinymist/pull/154, https://github.com/Myriad-Dreamin/tinymist/pull/162, and https://github.com/Myriad-Dreamin/tinymist/pull/168
|
||||
* Introduced symbol picker in https://github.com/Myriad-Dreamin/tinymist/pull/155
|
||||
* Introduced periscope mode previewing in https://github.com/Myriad-Dreamin/tinymist/pull/164
|
||||
* Introduced status bar for showing words count, also for compiling status in https://github.com/Myriad-Dreamin/tinymist/pull/158
|
||||
* Supported tracing execution in current document in https://github.com/Myriad-Dreamin/tinymist/pull/166
|
||||
|
||||
### Color Provider (New)
|
||||
|
||||
* Added basic color providers in https://github.com/Myriad-Dreamin/tinymist/pull/171
|
||||
|
||||
### Completion
|
||||
|
||||
* (Fix) Performed correct dynamic analysis on imports in https://github.com/Myriad-Dreamin/tinymist/pull/143
|
||||
* (Fix) Correctly shadowed items for completion in https://github.com/Myriad-Dreamin/tinymist/pull/145
|
||||
* (Fix) Completing parameters in scope in https://github.com/Myriad-Dreamin/tinymist/pull/146
|
||||
* Completing parameters on user functions in https://github.com/Myriad-Dreamin/tinymist/pull/148
|
||||
* Completing parameter values on user functions in https://github.com/Myriad-Dreamin/tinymist/pull/149
|
||||
* Triggering autocompletion again after completing a function in https://github.com/Myriad-Dreamin/tinymist/pull/150
|
||||
* Recovered module completion in https://github.com/Myriad-Dreamin/tinymist/pull/151
|
||||
|
||||
### Syntax/Semantic Highlighting
|
||||
|
||||
* (Fix) Improved grammar on incomplete AST in https://github.com/Myriad-Dreamin/tinymist/pull/140
|
||||
* (Fix) Correctly parsing label and reference markup in https://github.com/Myriad-Dreamin/tinymist/pull/167
|
||||
|
||||
### Definition
|
||||
|
||||
* Supported go to paths to `#include` statement in https://github.com/Myriad-Dreamin/tinymist/pull/156
|
||||
|
||||
### Formatting
|
||||
|
||||
* Bumped to typstyle v0.11.11 by @Enter-tainer in https://github.com/Myriad-Dreamin/tinymist/pull/163
|
||||
* Added common print width configuration for formatters in https://github.com/Myriad-Dreamin/tinymist/pull/170
|
||||
|
||||
### Hover (Tooltip)
|
||||
|
||||
* Joining array of hover contents by divider for neovim clients in https://github.com/Myriad-Dreamin/tinymist/pull/157
|
||||
|
||||
### Internal Optimization
|
||||
|
||||
* Analyzing lexical hierarchy on for loops in https://github.com/Myriad-Dreamin/tinymist/pull/142
|
||||
* depended by autocompletion/definition/references/rename APIs.
|
||||
|
||||
**Full Changelog**: https://github.com/Myriad-Dreamin/tinymist/compare/v0.11.2...v0.11.3
|
||||
|
||||
## v0.11.2 - [2024-03-30]
|
||||
|
||||
### Editor
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "tinymist",
|
||||
"version": "0.11.2",
|
||||
"version": "0.11.3",
|
||||
"description": "An integrated language service for Typst",
|
||||
"categories": [
|
||||
"Programming Languages",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "typst-textmate",
|
||||
"version": "0.11.2",
|
||||
"version": "0.11.3",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"compile": "npx tsc && node ./dist/main.js",
|
||||
|
|
|
|||
|
|
@ -205,7 +205,7 @@ export const Summary = () => {
|
|||
{ style: "margin: 0.8em; margin-left: 0.5em" },
|
||||
div(
|
||||
`Its version is `,
|
||||
a({ href: "javascript:void(0)" }, "0.11.2"),
|
||||
a({ href: "javascript:void(0)" }, "0.11.3"),
|
||||
`.`
|
||||
),
|
||||
div(`It is compiled with optimization level `, "3", `.`),
|
||||
|
|
|
|||
|
|
@ -195,7 +195,6 @@ class FilterState {
|
|||
}
|
||||
|
||||
getIsFavorite(namespace: string, name: string) {
|
||||
console.log(this.packageUserData);
|
||||
return this.packageUserData.val[namespace]?.[name]?.isFavorite;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue