Skip to content

Commit

Permalink
chore(manifest): added new keywords
Browse files Browse the repository at this point in the history
New keywords:
- ルビ
- 振り仮名
- ふりがな
  • Loading branch information
Andrew15-5 committed Dec 1, 2023
1 parent acf7187 commit a7af654
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 4 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,18 @@ Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to

## [Unreleased]

## [0.10.1] - 2023-12-01

### Changed

- Hid the default recipe (from `just -l`) in the `.justfile`.
- Removed `tag` argument wherever it's not needed in the `.justfile`.

### Added

- Added `Development` and `Publishing a Typst package` sections in the `README.md`.
- Added keywords in the `typst.toml`: `ルビ`, `振り仮名`, `ふりがな`.

## [0.10.0] - 2023-11-24

### Changed
Expand Down Expand Up @@ -46,6 +58,8 @@ Now kebab case is used instead of snake case.

Initial release.

[0.10.1]: https://github.com/Andrew15-5/rubby/releases/tag/v0.10.1

[0.10.0]: https://github.com/Andrew15-5/rubby/releases/tag/v0.10.0

[0.9.2]: https://github.com/Andrew15-5/rubby/releases/tag/v0.9.2
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## Usage

```typ
#import "@preview/rubby:0.10.0": get-ruby
#import "@preview/rubby:0.10.1": get-ruby
#let ruby = get-ruby(
size: 0.5em, // Ruby font size
Expand Down
2 changes: 1 addition & 1 deletion example.typ
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
font: ("Liberation Sans", "Noto Sans CJK JP")
) // Optional

#import "@preview/rubby:0.10.0": get-ruby
#import "@preview/rubby:0.10.1": get-ruby
#let ruby = get-ruby()

```typst
Expand Down
14 changes: 12 additions & 2 deletions typst.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,21 @@
[package]
name = "rubby"
version = "0.10.0"
version = "0.10.1"
entrypoint = "rubby.typ"
authors = ["Andrew Voynov"]
license = "AGPL-3.0-only"
description = "Add ruby (furigana) next to base text."
repository = "https://github.com/Andrew15-5/rubby"
keywords = ["ruby", "furigana", "CJK", "Chinese", "Japanese", "Korean"]
keywords = [
"ruby",
"ルビ",
"furigana",
"振り仮名",
"ふりがな",
"CJK",
"Chinese",
"Japanese",
"Korean",
]
compiler = "0.8.0"
exclude = ["example.typ"]

0 comments on commit a7af654

Please sign in to comment.