Skip to content

Commit

Permalink
Release Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
itsprs committed May 26, 2024
1 parent 26a380a commit 7956182
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__pycache__/
build-temp/
output/
release/

*.ui
*.iss
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
- **Stamp Duty and Registration Fees**: Calculate the required stamp duty and registration fees based on the input values.
- **User Profile Management**: Allows users to save and manage their profiles.
- **Comprehensive Summary**: Provides a detailed summary of all calculations including net stamp duty, registration fees, and other financial metrics.
- **Save as PDF**: Save the detailed summary and other information as a PDF document.
- **Print Feature**: Print the detailed summary and other information directly from the application.

## Interface Overview

Expand All @@ -20,6 +22,8 @@
- **Proportionate Share in Land**: Displays the calculated proportionate share in land.
- **Government Value**: Fields to input and calculate the government value of the flat, parking, and land share.
- **Stamp Duty and Registration Fees**: Fields to input the stamp duty and registration fee percentages.
- **Save as PDF**: Button to save the detailed summary as a PDF.
- **Print**: Button to print the detailed summary.

### User Profile

Expand Down Expand Up @@ -53,7 +57,7 @@ Please follow these steps to contribute:

## License

Distributed under the MIT License. See `LICENSE` for more information.
Distributed under the MIT License. See [LICENSE](https://github.com/itsprs/Details-Calculator-SDRF/blob/main/LICENSE) for more information.

## Acknowledgements

Expand Down
4 changes: 3 additions & 1 deletion app.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Creator: Pratham Raj Singh

import sys, os, json, shutil
from PIL import Image, ImageDraw
from xhtml2pdf import pisa
Expand All @@ -15,7 +17,7 @@
class AppDetails:
def __init__(self):
self.app_name = "Details Calculator SDRF"
self.app_version = "1.0.0"
self.app_version = "1.1.0"
self.app_developer = "Pratham Raj Singh"
self.app_developer_website = "imprs.vercel.app"
self.app_description = "Details Calculator SDRF is a desktop application designed to calculate and manage detailed property and financial information related to real estate transactions. It provides a user-friendly interface for inputting and calculating various parameters such as the land area, built-up area, government values, stamp duty, and registration fees."
Expand Down

0 comments on commit 7956182

Please sign in to comment.