Skip to content

Commit

Permalink
styles are now compressed, clarified readme
Browse files Browse the repository at this point in the history
  • Loading branch information
ma4nn committed Mar 26, 2024
1 parent 9ab916e commit 57e63b8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ dist: clean
[ "$${INCLUDE_TREE_JS}" ] || exit 1 && \
export INCLUDE_MAIN_JS=`$(TERSER_BIN) dist/main.js` && \
[ "$${INCLUDE_MAIN_JS}" ] || exit 1 && \
export STYLES_CSS=`npx sass --no-source-map src/styles.scss` && \
export STYLES_CSS=`npx sass --no-source-map --style=compressed src/style.scss` && \
[ "$${STYLES_CSS}" ] || exit 1 && \
envsubst < src/SankeyChart.lua > dist/SankeyChart.lua && \
chmod +x dist/SankeyChart.lua && \
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ This is an extension for the great [MoneyMoney app](https://moneymoney-app.com/)
## Installing

This MoneyMoney extension must be installed as follows:
1. In the MoneyMoney app open menu Help → Show database in Finder
2. Download the `SankeyChart.lua` from the [latest release](https://github.com/ma4nn/moneymoney-sankey/releases/latest/download/SankeyChart.lua) file into that folder.
1. Download the file `SankeyChart.lua` from the [latest release](https://github.com/ma4nn/moneymoney-sankey/releases/latest/download/SankeyChart.lua)
2. In the MoneyMoney app open menu _Help → Show database in Finder_ and copy the downloaded file into the sub-folder "Extensions".

## Usage 💡

The Sankey Chart can be generated by selecting or filtering the appropriate transactions or accounts in MoneyMoney and choose menu Account → Export Transactions.
Afterwards choose "Sankey-Chart (.html)" as the export format and open the generated file in your browser of choice.
The Sankey Chart can be generated by selecting or filtering the appropriate transactions or accounts in MoneyMoney and choose menu _Account → Export Transactions_.
Afterwards select "Sankey-Chart (.html)" as the export format and open the generated file in your browser of choice.

For more information see also [my blog post](https://dev-investor.de/finanz-apps/money-money/kategorien-budgets-nutzen/).

Expand Down
3 changes: 2 additions & 1 deletion src/styles.scss → src/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ text.highcharts-data-label {

.highcharts-data-label.main-node text {
font-size: x-large;
text-decoration: underline;
text-decoration-line: underline;
text-decoration-style: double;
}

.highcharts-link {
Expand Down

0 comments on commit 57e63b8

Please sign in to comment.