Skip to content

Commit 71c1959

Browse files
authored
Merge pull request #1 from ErenayDev/feat/cross-platform
2 parents f91c26f + bf6adcb commit 71c1959

File tree

10 files changed

+410
-370
lines changed

10 files changed

+410
-370
lines changed

.github/workflows/autoBuild.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -134,19 +134,19 @@ jobs:
134134
uses: softprops/action-gh-release@v1
135135
with:
136136
files: artifacts/**/*
137-
name: "${{ steps.crate_info.outputs.name }} ${{ steps.crate_info.outputs.version }}"
137+
name: "v${{ steps.crate_info.outputs.version }}"
138138
body: |
139139
## Installation
140140
141141
| System / Distribution | File | Description |
142142
|:----------------------|:-----|:------------|
143-
| **Generic Linux** | `${{ steps.crate_info.outputs.name }}-x86_64-unknown-linux-gnu-${{ steps.crate_info.outputs.version }}.tar.gz` | Extract and run the binary |
144-
| **Debian / Ubuntu** | `${{ steps.crate_info.outputs.name }}-${{ steps.crate_info.outputs.version }}-amd64.deb` | Install using `dpkg -i` |
145-
| **Fedora / CentOS / openSUSE** | `${{ steps.crate_info.outputs.name }}-${{ steps.crate_info.outputs.version }}-1.x86_64.rpm` | Install using `rpm -i` or `dnf install` |
146-
| **Windows** | `${{ steps.crate_info.outputs.name }}-x86_64-pc-windows-msvc-${{ steps.crate_info.outputs.version }}.exe` | Standalone executable |
147-
| **Windows (Archive)** | `${{ steps.crate_info.outputs.name }}-x86_64-pc-windows-msvc-${{ steps.crate_info.outputs.version }}.zip` | Extract and run |
148-
| **macOS Intel** | `${{ steps.crate_info.outputs.name }}-x86_64-apple-darwin-${{ steps.crate_info.outputs.version }}.tar.gz` | Extract and run the binary |
149-
| **macOS Apple Silicon** | `${{ steps.crate_info.outputs.name }}-aarch64-apple-darwin-${{ steps.crate_info.outputs.version }}.tar.gz` | Extract and run the binary |
143+
| **Generic Linux** | [${{ steps.crate_info.outputs.name }}-x86_64-unknown-linux-gnu-${{ steps.crate_info.outputs.version }}.tar.gz](https://github.com/${{ github.repository }}/releases/download/v${{ steps.crate_info.outputs.version }}/${{ steps.crate_info.outputs.name }}-x86_64-unknown-linux-gnu-${{ steps.crate_info.outputs.version }}.tar.gz) | Extract and run the binary |
144+
| **Debian / Ubuntu** | [${{ steps.crate_info.outputs.name }}-${{ steps.crate_info.outputs.version }}-amd64.deb](https://github.com/${{ github.repository }}/releases/download/v${{ steps.crate_info.outputs.version }}/${{ steps.crate_info.outputs.name }}-${{ steps.crate_info.outputs.version }}-amd64.deb) | Install using `dpkg -i` |
145+
| **Fedora / CentOS / openSUSE** | [${{ steps.crate_info.outputs.name }}-${{ steps.crate_info.outputs.version }}-1.x86_64.rpm](https://github.com/${{ github.repository }}/releases/download/v${{ steps.crate_info.outputs.version }}/${{ steps.crate_info.outputs.name }}-${{ steps.crate_info.outputs.version }}-1.x86_64.rpm) | Install using `rpm -i` or `dnf install` |
146+
| **Windows** | [${{ steps.crate_info.outputs.name }}-x86_64-pc-windows-msvc-${{ steps.crate_info.outputs.version }}.exe](https://github.com/${{ github.repository }}/releases/download/v${{ steps.crate_info.outputs.version }}/${{ steps.crate_info.outputs.name }}-x86_64-pc-windows-msvc-${{ steps.crate_info.outputs.version }}.exe) | Standalone executable |
147+
| **Windows (Archive)** | [${{ steps.crate_info.outputs.name }}-x86_64-pc-windows-msvc-${{ steps.crate_info.outputs.version }}.zip](https://github.com/${{ github.repository }}/releases/download/v${{ steps.crate_info.outputs.version }}/${{ steps.crate_info.outputs.name }}-x86_64-pc-windows-msvc-${{ steps.crate_info.outputs.version }}.zip) | Extract and run |
148+
| **macOS Intel** | [${{ steps.crate_info.outputs.name }}-x86_64-apple-darwin-${{ steps.crate_info.outputs.version }}.tar.gz](https://github.com/${{ github.repository }}/releases/download/v${{ steps.crate_info.outputs.version }}/${{ steps.crate_info.outputs.name }}-x86_64-apple-darwin-${{ steps.crate_info.outputs.version }}.tar.gz) | Extract and run the binary |
149+
| **macOS Apple Silicon** | [${{ steps.crate_info.outputs.name }}-aarch64-apple-darwin-${{ steps.crate_info.outputs.version }}.tar.gz](https://github.com/${{ github.repository }}/releases/download/v${{ steps.crate_info.outputs.version }}/${{ steps.crate_info.outputs.name }}-aarch64-apple-darwin-${{ steps.crate_info.outputs.version }}.tar.gz) | Extract and run the binary |
150150
151151
## What's Changed
152152

CHANGELOG.md

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,59 @@ All notable changes to this project will be documented in this file.
44

55
## [unreleased]
66

7+
### Bug Fixes
8+
9+
- Removed license-file field
10+
11+
### Documentation
12+
13+
- Fix star history
14+
15+
### Features
16+
17+
- Add package metadata and Debian packaging configuration
18+
- Add package metadata and MIT license
19+
- Add support for different terminal sizes
20+
- Add support for different OS
21+
22+
### Miscellaneous Tasks
23+
24+
- Added terminal_size package, version 0.0.3
25+
26+
### Refactor
27+
28+
- Deleted empty line
29+
30+
### Ci
31+
32+
- Added links to downloads table in releases
33+
34+
## [0.0.2] - 2025-11-01
35+
36+
### Bug Fixes
37+
38+
- Add rpm metadata
39+
40+
### Documentation
41+
42+
- Add README
43+
44+
### Miscellaneous Tasks
45+
46+
- Change version from 0.1.0 to 0.0.2 and fixed binstall format
47+
48+
### Ci
49+
50+
- Created dependabot.yml for cargo ecosystem
51+
- Updated for new build platforms. added Swatinem/rust-cache
52+
- Fix the RPM package error
53+
54+
## [0.0.1] - 2025-10-31
55+
56+
### Documentation
57+
58+
- Update changelog
59+
760
### Features
861

962
- Initial commit

0 commit comments

Comments
 (0)