2 Commits
v0.6.5 ... main

Author SHA1 Message Date
d6efa72745 updated README.md 2026-04-11 00:42:53 +03:00
2ce47ee305 updated README.md 2026-04-11 00:40:14 +03:00
4 changed files with 30 additions and 99 deletions

View File

@@ -1,41 +0,0 @@
name: Build Linux
on:
workflow_dispatch:
push:
tags:
- 'v*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
- name: Publish
run: |
dotnet publish Clario.Desktop/Clario.Desktop.csproj \
-r linux-x64 \
-c Release \
--self-contained true \
-p:PublishSingleFile=false \
-o ./publish/linux-x64
- name: Package as tar.gz
run: tar -czf Clario-linux-x64.tar.gz -C ./publish/linux-x64 .
- name: Upload artifact
uses: https://code.forgejo.org/forgejo/upload-artifact@v4
with:
name: Clario-linux-x64
path: ./Clario-linux-x64.tar.gz
retention-days: 7

View File

@@ -1,40 +0,0 @@
name: Build Linux
on:
workflow_dispatch:
push:
tags:
- 'v*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
- name: Publish
run: |
dotnet publish Clario.Desktop/Clario.Desktop.csproj \
-r linux-x64 \
-c Release \
--self-contained true \
-p:PublishSingleFile=true \
-o ./publish/linux-x64
- name: Package as tar.gz
run: tar -czf Clario-linux-x64.tar.gz -C ./publish/linux-x64 .
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: Clario-linux-x64
path: ./publish/linux
retention-days: 7

4
.gitignore vendored
View File

@@ -8,4 +8,6 @@ obj/
publish/
*.tar.gz
Clario/devsettings.json
.env
.env
TODO.md
clario.keystore

View File

@@ -4,7 +4,7 @@
# Clario
**A clean, fast personal finance tracker for the desktop.**
**A clean, fast personal finance tracker for desktop and mobile.**
[![Beta](https://img.shields.io/badge/status-beta-f59e0b?style=flat-square)](https://github.com/yourusername/clario)
[![Built with Avalonia](https://img.shields.io/badge/built%20with-Avalonia%20UI-8b5cf6?style=flat-square)](https://avaloniaui.net/)
@@ -21,7 +21,7 @@
## Overview
Clario is a native desktop app for tracking personal finances expenses, income, and budgets — without the clutter of a browser tab. Built with [Avalonia UI](https://avaloniaui.net/), it runs natively on Windows, macOS, and Linux.
Clario is a native app for tracking personal finances (expenses, income, and budgets). Built with [Avalonia UI](https://avaloniaui.net/), it runs natively on Windows, Linux, and Android.
---
@@ -31,20 +31,25 @@ Clario is a native desktop app for tracking personal finances — expenses, inco
<!-- Uncomment and replace when ready:
![Dashboard](./Assets/Screenshots/dashboard.png)
![Expenses](./Assets/Screenshots/expenses.png)
![Reports](./Assets/Screenshots/reports.png)
![Transactions](./Assets/Screenshots/transactions.png)
![Analytics](./Assets/Screenshots/analytics.png)
![Budget](./Assets/Screenshots/budget.png)
-->
---
## Features
- 📋 **Expense & income tracking** — Log transactions with categories, amounts, dates, and notes
- 📅 **Date range filtering** — Quickly slice your data by day, week, month, or custom range
- 🏷️ **Categories** — Organize transactions with custom categories and icons
- 📊 **Spending overview**At-a-glance summaries of where your money is going
- 🌙 **Dark-first UI**Designed for dark mode from the ground up
- 🖥️ **Cross-platform**Runs natively on Windows, macOS, and Linux
- **Expense & income tracking** — Log transactions with categories, amounts, dates, and notes
- **Date range filtering** — Quickly slice your data by day, week, month, or custom range
- **Categories** — Organize transactions with custom categories and icons
- **Budget goals** — Set spending limits per category with period tracking
- **Analytics** — 6 chart sections covering spending trends, category breakdowns, and more
- **Multi-account support** — Track balances across multiple accounts
- **Multi-currency** — Accounts in different currencies
- **Multiple themes** — Dark, Light, Catppuccin Latte, Macchiato, and Mocha
- **Cross-platform** — Runs natively on Windows, Linux, and Android
- **Real-time sync** — Powered by Supabase with live data updates
---
@@ -54,7 +59,7 @@ Clario is a native desktop app for tracking personal finances — expenses, inco
|---|---|
| UI Framework | [Avalonia UI 11](https://avaloniaui.net/) |
| Language | C# / .NET 8 |
| Architecture | MVVM |
| Architecture | MVVM (CommunityToolkit.MVVM) |
| Icons | [Lucide](https://lucide.dev/) |
---
@@ -68,7 +73,7 @@ If you'd prefer to run from source:
```bash
git clone https://github.com/yourusername/clario.git
cd clario
dotnet run --project Clario
dotnet run --project Clario.Desktop
```
> Requires the [.NET 8 SDK](https://dotnet.microsoft.com/download) when running from source.
@@ -77,15 +82,20 @@ dotnet run --project Clario
## Project Status
Clario is in active development. Core tracking features work, but some things are still being built out:
Clario is in active development. Core features are working:
- [x] Transaction entry & editing
- [x] Category management
- [x] Date range picker
- [x] Expense list with filtering
- [x] Budget goals
- [x] Transaction list with filtering, search & sorting
- [x] Budget goals with period navigation
- [x] Analytics (charts & spending reports)
- [x] Multi-account management
- [x] Multi-currency support
- [x] Settings (profile, theme, currency, savings goal)
- [x] Android support
- [x] Multiple themes (Dark, Light, Catppuccin variants)
- [ ] Budget goal notifications
- [ ] Charts & reports
- [ ] CSV import / export
- [ ] Recurring transactions
@@ -99,6 +109,6 @@ The project isn't formally open to contributions yet while the core is still bei
<div align="center">
Made with ☕ and Avalonia UI.
Made with Avalonia UI.
</div>