Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/fix-bundle-bloat.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/stats-hero-and-ui-polish.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/ux-success-state-simplification.md

This file was deleted.

12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# mpesa2csv

## 1.0.0

### Major Changes

- [#70](https://github.com/davidamunga/mpesa2csv/pull/70) [`9e0ac87`](https://github.com/davidamunga/mpesa2csv/commit/9e0ac873f21a1fb7e76099a3ed34f3e0caa10527) Thanks [@davidamunga](https://github.com/davidamunga)! - Success screen now shows a financial snapshot — date range covered, total money in, total money out, and charges — all derived from the parsed statement before you export. Window height reduced from 850 → 650px, footer simplified to a single line, and dead-zone layout issues resolved.

### Patch Changes

- [#69](https://github.com/davidamunga/mpesa2csv/pull/69) [`0395f66`](https://github.com/davidamunga/mpesa2csv/commit/0395f66944e52e8514257f1a81a8adfee8cdba88) Thanks [@davidamunga](https://github.com/davidamunga)! - Reduce initial JS bundle from 1 466 kB to 487 kB (−67%) by removing 10 unused packages, lazy-loading ExcelJS via dynamic import

- [#70](https://github.com/davidamunga/mpesa2csv/pull/70) [`6c45724`](https://github.com/davidamunga/mpesa2csv/commit/6c45724c32db6fb9d2b54f2af3468af7b8eb3690) Thanks [@davidamunga](https://github.com/davidamunga)! - improved success state ui

## 0.14.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

**Convert M-PESA Statement PDFs to CSV/Excel with Advanced Analytics**

[![Version](https://img.shields.io/badge/version-0.14.0-blue.svg)](https://github.com/DavidAmunga/mpesa2csv/releases)
[![Version](https://img.shields.io/badge/version-1.0.0-blue.svg)](https://github.com/DavidAmunga/mpesa2csv/releases)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![Platform](https://img.shields.io/badge/platform-Windows%20%7C%20macOS%20%7C%20Linux%20%7C%20Android-lightgrey.svg)](https://github.com/DavidAmunga/mpesa2csv/releases)
[![Downloads](https://img.shields.io/github/downloads/DavidAmunga/mpesa2csv/total.svg)](https://github.com/DavidAmunga/mpesa2csv/releases)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "mpesa2csv",
"private": true,
"version": "0.14.0",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mpesa2csv"
version = "0.14.0"
version = "1.0.0"
description = "Convert M-PESA Statements to CSV/Excel Files"
authors = ["David Amunga"]
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "mpesa2csv",
"version": "0.14.0",
"version": "1.0.0",
"identifier": "com.amunga.david.mpesa2csv",
"build": {
"beforeDevCommand": "pnpm dev",
Expand Down
Loading