Skip to content

Commit dacbb5e

Browse files
ddmoney420claude
andcommitted
v1.0.0: Full feature parity with Go version
New features: - Kaomoji categories (expressions, love, animals, etc.) - Text effects (zalgo, flip, reverse, bubble, bold, italic, etc.) - Color filters (rainbow, fire, ice, matrix, lolcat) - Speech bubbles with multiple styles - Fortune cookies and programming jokes - QR code generation with multiple charsets - Directory tree display - Calendar views (month, year, week) - Neofetch-style system info - Pattern, border, and divider generation - Doctor command for diagnostics - Terminal capability detection - JSON output support - Clipboard support New ASCII art database replacing muppets with 30+ art pieces. Added GitHub Actions release workflow for cross-platform builds. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent feeb587 commit dacbb5e

File tree

17 files changed

+3609
-634
lines changed

17 files changed

+3609
-634
lines changed

.github/workflows/release.yml

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
name: Release
2+
3+
on:
4+
push:
5+
tags:
6+
- 'v*'
7+
8+
env:
9+
CARGO_TERM_COLOR: always
10+
11+
jobs:
12+
build:
13+
strategy:
14+
matrix:
15+
include:
16+
- target: x86_64-apple-darwin
17+
os: macos-latest
18+
name: darwin_amd64
19+
- target: aarch64-apple-darwin
20+
os: macos-latest
21+
name: darwin_arm64
22+
- target: x86_64-unknown-linux-gnu
23+
os: ubuntu-latest
24+
name: linux_amd64
25+
- target: aarch64-unknown-linux-gnu
26+
os: ubuntu-latest
27+
name: linux_arm64
28+
29+
runs-on: ${{ matrix.os }}
30+
31+
steps:
32+
- uses: actions/checkout@v4
33+
34+
- name: Install Rust
35+
uses: dtolnay/rust-action@stable
36+
with:
37+
targets: ${{ matrix.target }}
38+
39+
- name: Install cross-compilation tools (Linux ARM64)
40+
if: matrix.target == 'aarch64-unknown-linux-gnu'
41+
run: |
42+
sudo apt-get update
43+
sudo apt-get install -y gcc-aarch64-linux-gnu
44+
echo "CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER=aarch64-linux-gnu-gcc" >> $GITHUB_ENV
45+
46+
- name: Build
47+
run: cargo build --release --target ${{ matrix.target }}
48+
49+
- name: Package
50+
run: |
51+
cd target/${{ matrix.target }}/release
52+
tar -czvf ../../../moji_${{ matrix.name }}.tar.gz moji
53+
cd ../../..
54+
55+
- name: Upload artifact
56+
uses: actions/upload-artifact@v4
57+
with:
58+
name: moji_${{ matrix.name }}
59+
path: moji_${{ matrix.name }}.tar.gz
60+
61+
release:
62+
needs: build
63+
runs-on: ubuntu-latest
64+
permissions:
65+
contents: write
66+
67+
steps:
68+
- name: Download all artifacts
69+
uses: actions/download-artifact@v4
70+
with:
71+
path: artifacts
72+
merge-multiple: true
73+
74+
- name: Create Release
75+
uses: softprops/action-gh-release@v1
76+
with:
77+
files: artifacts/*.tar.gz
78+
generate_release_notes: true

0 commit comments

Comments
 (0)