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
10 changes: 0 additions & 10 deletions .changeset/feat-ux-improvements.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fix-analytics-sheets-respect-filters.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fix-multi-file-password-state-loss.md

This file was deleted.

4 changes: 0 additions & 4 deletions .changeset/fix-security-audit.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fix-silent-empty-success.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fix-timeout-kills-java.md

This file was deleted.

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

## 0.14.0

### Minor Changes

- [#67](https://github.com/davidamunga/mpesa2csv/pull/67) [`159e467`](https://github.com/davidamunga/mpesa2csv/commit/159e467a4672cdf425a3b4abcc83a6151edde763) Thanks [@davidamunga](https://github.com/davidamunga)! - - Clickable drop zone
- Cancel button during processing
- Transaction preview before export
- Re-export without Start Again
- XLSX blob only on Export click
- Visible webhook result badge.

### Patch Changes

- [#65](https://github.com/davidamunga/mpesa2csv/pull/65) [`65c8984`](https://github.com/davidamunga/mpesa2csv/commit/65c8984b738ad2b2d67b8f3dcb66397e2eec7b3e) Thanks [@davidamunga](https://github.com/davidamunga)! - Fix analytics sheets ignoring active export filters (e.g. exclude charges, sort order).

- [#65](https://github.com/davidamunga/mpesa2csv/pull/65) [`98f56be`](https://github.com/davidamunga/mpesa2csv/commit/98f56be85d73804181da370bfbb4a3eff1f38670) Thanks [@davidamunga](https://github.com/davidamunga)! - Fix multi-file batch losing already-processed statements when a mid-batch file requires a password.

- [#66](https://github.com/davidamunga/mpesa2csv/pull/66) [`1dfacf4`](https://github.com/davidamunga/mpesa2csv/commit/1dfacf4e67f72335730c6427e209063c23ab1e41) Thanks [@davidamunga](https://github.com/davidamunga)! - fix : dependencies security

- [#65](https://github.com/davidamunga/mpesa2csv/pull/65) [`98f56be`](https://github.com/davidamunga/mpesa2csv/commit/98f56be85d73804181da370bfbb4a3eff1f38670) Thanks [@davidamunga](https://github.com/davidamunga)! - Treat a parsed PDF with zero transactions as an error instead of showing a silent success screen.

- [#65](https://github.com/davidamunga/mpesa2csv/pull/65) [`98f56be`](https://github.com/davidamunga/mpesa2csv/commit/98f56be85d73804181da370bfbb4a3eff1f38670) Thanks [@davidamunga](https://github.com/davidamunga)! - Kill the Java/Tabula process when PDF extraction times out instead of leaving it running in the background.

## 0.13.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.13.0-blue.svg)](https://github.com/DavidAmunga/mpesa2csv/releases)
[![Version](https://img.shields.io/badge/version-0.14.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.13.0",
"version": "0.14.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.13.0"
version = "0.14.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.13.0",
"version": "0.14.0",
"identifier": "com.amunga.david.mpesa2csv",
"build": {
"beforeDevCommand": "pnpm dev",
Expand Down
Loading