Skip to content

Commit

Permalink
New version: Enter-tainer.typstyle version 0.12.8 (microsoft#196885)
Browse files Browse the repository at this point in the history
  • Loading branch information
spectopo authored Dec 7, 2024
1 parent c67d105 commit b82aa1b
Show file tree
Hide file tree
Showing 4 changed files with 91 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Created with YamlCreate.ps1 Dumplings Mod
# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json

PackageIdentifier: Enter-tainer.typstyle
PackageVersion: 0.12.8
InstallerType: portable
Commands:
- typstyle
ReleaseDate: 2024-12-07
Installers:
- Architecture: x64
InstallerUrl: https://github.com/Enter-tainer/typstyle/releases/download/v0.12.8/typstyle-x86_64-pc-windows-msvc.exe
InstallerSha256: 8271B5D4F6CFF86D66829AB7825821D84A5400DE20057E4AC448178DC075E104
Dependencies:
PackageDependencies:
- PackageIdentifier: Microsoft.VCRedist.2015+.x64
- Architecture: arm64
InstallerUrl: https://github.com/Enter-tainer/typstyle/releases/download/v0.12.8/typstyle-aarch64-pc-windows-msvc.exe
InstallerSha256: C9F41FD77CEB6C1BE133E7830FBF68C978A0F5EC9DDCE072AC2AA65B2F0ACB47
Dependencies:
PackageDependencies:
- PackageIdentifier: Microsoft.VCRedist.2015+.arm64
ManifestType: installer
ManifestVersion: 1.9.0
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
# Created with YamlCreate.ps1 Dumplings Mod
# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json

PackageIdentifier: Enter-tainer.typstyle
PackageVersion: 0.12.8
PackageLocale: en-US
Publisher: Wenzhuo Liu
PublisherUrl: https://mgt.moe/
PublisherSupportUrl: https://github.com/Enter-tainer/typstyle/issues
Author: Wenzhuo Liu
PackageName: typstyle
PackageUrl: https://enter-tainer.github.io/typstyle/
License: Apache-2.0
LicenseUrl: https://github.com/Enter-tainer/typstyle/blob/HEAD/LICENSE
Copyright: Copyright © 2023 - 2024 Typstyle Contributors
ShortDescription: Beautiful and reliable typst code formatter
Tags:
- typst
ReleaseNotes: |-
- Typstyle will format binary expressions as operator chains. Parentheses are added if necessary.
- Formatting chains with comments is supported now. This is the last piece of formatting with comments.
- Dot chains in markup with parentheses will be broken into multiple lines, if the it contains at least two dots and one function calls.
For example, the following code:
#let _is_block(e,fn)=fn==heading or (fn==math.equation and e.block) or (fn==raw and e.has("block") and e.block) or fn==figure or fn==block or fn==list.item or fn==enum.item or fn==table or fn==grid or fn==align or (fn==quote and e.has("block") and e.block)
Will be formatted as this in previous versions:
#let _is_block(e, fn) = (
fn == heading or (fn == math.equation and e.block) or (
fn == raw and e.has("block") and e.block
) or fn == figure or fn == block or fn == list.item or fn == enum.item or fn == table or fn == grid or fn == align or (
fn == quote and e.has("block") and e.block
)
)
Now it will be formatted as:
#let _is_block(e, fn) = (
fn == heading
or (fn == math.equation and e.block)
or (fn == raw and e.has("block") and e.block)
or fn == figure
or fn == block
or fn == list.item
or fn == enum.item
or fn == table
or fn == grid
or fn == align
or (fn == quote and e.has("block") and e.block)
)
ReleaseNotesUrl: https://github.com/Enter-tainer/typstyle/releases/tag/v0.12.8
ManifestType: defaultLocale
ManifestVersion: 1.9.0
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Created with YamlCreate.ps1 Dumplings Mod
# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.9.0.schema.json

PackageIdentifier: Enter-tainer.typstyle
PackageVersion: 0.12.8
PackageLocale: zh-CN
ShortDescription: 美观可靠的 typst 代码格式化工具
ReleaseNotesUrl: https://github.com/Enter-tainer/typstyle/releases/tag/v0.12.8
ManifestType: locale
ManifestVersion: 1.9.0
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Created with YamlCreate.ps1 Dumplings Mod
# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json

PackageIdentifier: Enter-tainer.typstyle
PackageVersion: 0.12.8
DefaultLocale: en-US
ManifestType: version
ManifestVersion: 1.9.0

0 comments on commit b82aa1b

Please sign in to comment.