Skip to content

Commit

Permalink
chore: migrate 1.1.1 from typst/packages
Browse files Browse the repository at this point in the history
  • Loading branch information
imatpot committed Mar 24, 2024
1 parent 03baea7 commit b4d85ba
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Changelog of `ascii-ipa`

follows [semantic versionin][semver]
follows [semantic versioning][semver]

## 1.1.1

- Fixed a bug in X-SAMPA where ``` ` ``` falsely took precedence over ``` @` ``` (https://github.com/imatpot/typst-packages/issues/1)

## 1.1.0

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ They all return the converted value as either [`string`][typst-str] or [`content
All examples use the Russian word ⟨привет⟩ [prʲɪvʲet] for the conversion.

```typst
#import "@preview/ascii-ipa:1.1.0": *
#import "@preview/ascii-ipa:1.1.1": *
// Branner
#branner("prj^Ivj^et") // prʲɪvʲet
Expand Down Expand Up @@ -69,7 +69,7 @@ Not everything could be implemented fully compliant with the information in the
You can easily mark your notation text as phonetic, phonemic, orthographic, or prosodic.

```typst
#import "@preview/ascii-ipa:1.1.0": *
#import "@preview/ascii-ipa:1.1.1": *
#phonetic("prʲɪˈvʲet") // [prʲɪˈvʲet]
#phnt("prʲɪˈvʲet") // [prʲɪˈvʲet]
Expand Down
2 changes: 1 addition & 1 deletion src/translations/xsampa.typ
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@
("X", "χ"),
("Y", "ʏ"),
("Z", "ʒ"),
("@`", "ɚ"),

// diacritics part 2.
("_\"", "̈"),
Expand All @@ -153,7 +154,6 @@
(":\\", "ˑ"),
(":", "ː"),
("@\\", "ɘ"),
("@`", "ɚ"),
("@", "ə"),
("{", "æ"),
("}", "ʉ"),
Expand Down
1 change: 1 addition & 0 deletions test/test.typ
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
("mn", "mn"),
("r", "r"),
("l5jw", "lɫjw"),
("E@`pO@`t", "ɛɚpɔɚt"),
)

#let praat-tests = (
Expand Down
2 changes: 1 addition & 1 deletion typst.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ascii-ipa"
version = "1.1.0"
version = "1.1.1"
entrypoint = "ascii-ipa.typ"
authors = ["imatpot"]
license = "MIT"
Expand Down

0 comments on commit b4d85ba

Please sign in to comment.