Skip to content

Commit 19a0e8a

Browse files
elarrobapablo
andauthored
v0.7.7 (#269)
* v.0.7.7 * Enhance account list views and update icon styles. Implemented dynamic page titles and subtitles for account pages by overriding `get_context_data`. Updated template text and classes for greater consistency, including standardizing icon colors for active, locked, and default roles. * Adding TransactionModel attributes during commit_txs. * Fixed a couple of hard coded dollar "$" symbols and changed them with `{% currency_symbol %}` tag to render the correct symbol when `DJANGO_LEDGER_CURRENCY_SYMBOL` is other than default ("$"). (#265) * Dependency update * Update contribution guidelines in README and Contribute.md Clarified the types of pull requests that are encouraged, emphasizing those that address bug fixes, enhancements, or valuable additions. Added a note discouraging submissions focused only on cosmetic changes like linting or refactoring. --------- Co-authored-by: Pablo Santa Cruz <[email protected]>
1 parent f99ad51 commit 19a0e8a

File tree

18 files changed

+591
-460
lines changed

18 files changed

+591
-460
lines changed

Contribute.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
Thank you for your interest in contributing to Django Ledger. Before submitting your contribution, please review the following guidelines:
44

5+
All pull requests are welcome, as long as they address bugfixes, enhancements, new ideas, or add value to the project in any shape or form.
6+
Please refrain from submitting pull requests that focus solely on code linting, refactoring, or similar cosmetic changes.
7+
58
## 1. Contributor License Agreement (CLA)
69
All contributors must sign our Contributor License Agreement. This agreement ensures that:
710
- You grant us a perpetual, worldwide, non-exclusive, royalty-free license to use your contributions.

Pipfile.lock

Lines changed: 95 additions & 85 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@ Created and developed by [Miguel Sanda](https://www.miguelsanda.com).
3131

3232
## Getting Involved
3333

34+
All pull requests are welcome, as long as they address bugfixes, enhancements, new ideas, or add value to the project in any shape or form.
35+
Please refrain from submitting pull requests that focus solely on code linting, refactoring, or similar cosmetic changes.
36+
3437
- **Feature Requests/Bug Reports**: Open an issue in the repository
3538
- **For software customization, advanced features and consulting services**:
3639
[Contact us](https://www.miguelsanda.com/work-with-me/) or email [email protected]

assets/package.json

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,37 @@
11
{
22
"dependencies": {
3-
"iconify-icon": "^2.2.0",
4-
"@types/lodash": "^4.14.202",
3+
"@types/lodash": "^4.17.16",
4+
"@vue/compiler-sfc": "^3.5.13",
55
"animate.css": "^4.1.1",
6-
"axios": "^1.7.9",
7-
"bulma": "^1.0.3",
8-
"chart.js": "^4.4.7",
6+
"axios": "^1.9.0",
7+
"bulma": "^1.0.4",
8+
"chart.js": "^4.4.9",
9+
"iconify-icon": "^2.3.0",
910
"json-schema": "^0.4.0",
1011
"pikaday": "^1.8.2",
1112
"scss-tokenizer": "^0.4.3",
12-
"trim-newlines": "^4.0.2",
13+
"trim-newlines": "^4.1.1",
1314
"vue": "^3.5.13",
14-
"@vue/compiler-sfc": "^3.5.13",
1515
"vue-loader": "^17.4.2"
1616
},
1717
"devDependencies": {
1818
"css-loader": "^7.1.2",
1919
"file-loader": "^6.2.0",
20-
"less": "^4.2.1",
21-
"less-loader": "^12.2.0",
22-
"sass": "^1.83.1",
23-
"sass-loader": "^13.3.2",
20+
"less": "^4.3.0",
21+
"less-loader": "^12.3.0",
22+
"sass": "^1.88.0",
23+
"sass-loader": "^13.3.3",
2424
"style-loader": "^4.0.0",
25-
"ts-loader": "^9.5.1",
26-
"typescript": "^5.7.2",
25+
"ts-loader": "^9.5.2",
26+
"typescript": "^5.8.3",
2727
"url-loader": "^4.1.1",
28-
"webpack": "^5.97.1",
28+
"webpack": "^5.99.8",
2929
"webpack-cli": "^6.0.1"
3030
},
3131
"scripts": {
3232
"build": "webpack",
3333
"watch": "webpack --watch"
3434
},
35-
"main": "../django_ledger/static/django_ledger/bundle/djetler.bundle.js"
35+
"main": "../django_ledger/static/django_ledger/bundle/djetler.bundle.js",
36+
"packageManager": "[email protected]+sha512.0e82714d1b5b43c74610193cb20734897c1d00de89d0e18420aebc5977fa13d780a9cb05734624e81ebd81cc876cd464794850641c48b9544326b5622ca29971"
3637
}

0 commit comments

Comments
 (0)