Skip to content

Commit

Permalink
Rebrand application as Finanza
Browse files Browse the repository at this point in the history
  • Loading branch information
sumanmaity112 committed Jan 8, 2024
1 parent 2c2efd0 commit bcb7354
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 21 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Financial Transactions Analyser
# Finanza

---

Utilise charts to analyse CSV financial transactions, such as bank transactions.
This uses browser history to communicate data between pages, but it doesn't exchange any information with third parties.

<img src="https://github.com/sumanmaity112/financial-transactions-analyser/blob/main/screenshots/sample.gif" height="500" alt="financial-transactions-analyser">
<img src="https://github.com/sumanmaity112/finanza/blob/main/screenshots/sample.gif" height="500" alt="finanza">

## Features

Expand All @@ -14,7 +14,7 @@ This uses browser history to communicate data between pages, but it doesn't exch

## Demo

This application can be accessed [here](https://sumanmaity112.github.io/financial-transactions-analyser/#/).
This application can be accessed [here](https://sumanmaity112.github.io/finanza/#/).

## CSV Format

Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Financial Transactions Analyser</title>
<title>Finanza</title>
</head>
<body>
<div id="app"></div>
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "financial-transactions-analyser",
"name": "finanza",
"version": "1.0.0",
"description": "Analyze CSV financial transactions (ex - bank transactions) with charts",
"main": "src/main.js",
Expand Down Expand Up @@ -37,14 +37,14 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/sumanmaity112/financial-transactions-analyser.git"
"url": "git+https://github.com/sumanmaity112/finanza.git"
},
"author": "Suman Maity",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/sumanmaity112/financial-transactions-analyser/issues"
"url": "https://github.com/sumanmaity112/finanza/issues"
},
"homepage": "https://github.com/sumanmaity112/financial-transactions-analyser#readme",
"homepage": "https://github.com/sumanmaity112/finanza#readme",
"eslintConfig": {
"root": true,
"env": {
Expand Down
6 changes: 1 addition & 5 deletions src/App.vue
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
<template>
<v-app>
<v-main>
<v-container
id="financial-transaction-analyzer-container"
class="ma-0 pa-0"
fluid
>
<v-container id="finanza-container" class="ma-0 pa-0" fluid>
<Home />
</v-container>
</v-main>
Expand Down
7 changes: 2 additions & 5 deletions src/components/ApplicationHeader.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,12 @@ export default {
<v-app-bar elevation="5">
<v-app-bar-nav-icon icon="mdi-home" href="#" />
<v-spacer />
<v-app-bar-title
class="font-weight-bold"
text="Financial Transactions Analyser"
/>
<v-app-bar-title class="font-weight-bold" text="Finanza" />
<v-spacer />
<v-btn
target="_blank"
icon="mdi-github"
href="https://github.com/sumanmaity112/financial-transactions-analyser"
href="https://github.com/sumanmaity112/finanza"
/>
</v-app-bar>
</template>
Expand Down
2 changes: 1 addition & 1 deletion src/components/CsvTransactions.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Sample CSV data can be found
<a
class="text-decoration-none text-primary font-weight-medium d-inline-flex align-center"
href="https://github.com/sumanmaity112/financial-transactions-analyser?tab=readme-ov-file#csv-format"
href="https://github.com/sumanmaity112/finanza?tab=readme-ov-file#csv-format"
target="_blank"
>here</a
>
Expand Down

0 comments on commit bcb7354

Please sign in to comment.