Skip to content

Commit c79da64

Browse files
committed
prepare for next release
1 parent 10cacbe commit c79da64

File tree

2 files changed

+15
-4
lines changed

2 files changed

+15
-4
lines changed

README.md

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,29 @@ Starting 2019, some Crédit Agricole subsidiaries Websites were updated to a new
77
* Crédit Agricole Ile de France
88
* BforBank (from what I can read, not tested)
99

10-
## How to Build
10+
## How to Build and use
1111

1212
```bash
1313
./gradlew build
1414
```
1515

16-
## How to use
16+
Instead of directly using `CAYYYYMMDD_NUM.ofx` file downloaded from the CA Website, save it locally and fix it.
17+
18+
```bash
19+
java -jar build/libs/credit-agricole-ofx-fix-1.1-SNAPSHOT.jar -f ~/Downloads/CAYYYMMDD_NUM.ofx -o fixed.ofx
20+
```
21+
22+
Then use the fixed version (`fixed.ofx`).
23+
24+
## Using pre-built version
25+
26+
Download the [credit-agricole-ofx-fix-1.0.jar](https://github.com/cjolif/credit-agricole-ofx-fix/releases/download/1.0.0/credit-agricole-ofx-fix-1.0.jar).
27+
1728

1829
Instead of directly using `CAYYYYMMDD_NUM.ofx` file downloaded from the CA Website, save it locally and fix it.
1930

2031
```bash
21-
java -jar build/libs/credit-agricole-ofx-fix-1.0-SNAPSHOT.jar -f ~/Downloads/CAYYYMMDD_NUM.ofx -o fixed.ofx
32+
java -jar credit-agricole-ofx-fix-1.0.jar -f ~/Downloads/CAYYYMMDD_NUM.ofx -o fixed.ofx
2233
```
2334

2435
Then use the fixed version (`fixed.ofx`).

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ plugins {
22
id 'java'
33
}
44

5-
version '1.0-SNAPSHOT'
5+
version '1.1-SNAPSHOT'
66

77
sourceCompatibility = 1.8
88

0 commit comments

Comments
 (0)