Skip to content

Commit

Permalink
Release 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ikanago committed Apr 21, 2022
1 parent 3ab5619 commit ef78f4c
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "omekasy"
version = "0.1.0"
version = "0.2.0"
authors = ["ikanago <[email protected]>"]
description = "Decorate latin alphabet and numbers in your input with various font; special characters in Unicode"
description = "Decorate alphanumeric characters in your input with various font; special characters in Unicode"
license = "MIT"
readme = "README.md"
homepage = "https://github.com/ikanago/omekasy"
Expand Down
38 changes: 38 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,42 @@

[![CI](https://github.com/ikanago/rusty_boilerplate/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/ikanago/rusty_boilerplate/actions/workflows/ci.yml)
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
[![](https://img.shields.io/crates/v/omekasy.svg)](https://crates.io/crates/omekasy)

`omekasy` is a command line application that converts alphanumeric characters in your input to various styles defined in Unicode.
`omekasy` means "dress up" in Japanese.

## Installation
You can download binaries from [Releases](https://github.com/ikanago/omekasy/releases).

Or you can build it by yourself.
```bash
cargo install omekasy
```

## Usage
Just run without any options or arguments, a prompt will be shown up.
You can select the style while watching the result.
```bash
omekasy
```

To convert to a specific font instantly, give the font name and input.
```bash
omekasy --font bold-italic "My new gear..."
```
Characters other than latin alphabets and numbers in your input remain untouched.

Available font for now:
- bold
- italic
- bold-italic
- sans
- sans-bold
- sans-italic
- sans-bold
- italic
- script
- bold-script
- monospace
- blackboard

0 comments on commit ef78f4c

Please sign in to comment.