Compare commits
	
		
			3 Commits
		
	
	
		
			dd0e592cce
			...
			0f187b05a8
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 
						 | 
					0f187b05a8 | ||
| 6040793b67 | |||
| 134bf1c63c | 
@ -11,23 +11,18 @@ working on the basic features we need from this software, and hope to release th
 | 
			
		||||
 | 
			
		||||
The following list includes features that are already developed and ready for use:
 | 
			
		||||
 | 
			
		||||
- Email/password authentication
 | 
			
		||||
- Multitenancy (manage multiple weddings on a single host)
 | 
			
		||||
 | 
			
		||||
### Guest management
 | 
			
		||||
 | 
			
		||||
- Display a list of guests along with their RSVP status.
 | 
			
		||||
- Transition guests between RSVP statuses:
 | 
			
		||||
  - Invited: The guest is (or will be) invited to the wedding, but they have not confirmed or denied attendance yet.
 | 
			
		||||
- List, create, modify, and remove guests along with their RSVP status:
 | 
			
		||||
- Invited: The guest is (or will be) invited to the wedding, but they have not confirmed or denied attendance yet.
 | 
			
		||||
  - Tentative: The guest has confirmed their attendance, but there are external factors (e.g., visas) that may affect their commitment.
 | 
			
		||||
  - Accepted: The guest has confirmed their attendance.
 | 
			
		||||
  - Declined: The guest won't attend to the event.
 | 
			
		||||
  - Considered: The guest has not been invited yet, but they may be depending on a number of factors.
 | 
			
		||||
- Update guests names.
 | 
			
		||||
 | 
			
		||||
### Group management
 | 
			
		||||
 | 
			
		||||
- Display a list of groups along with their color and the number of guests per RSVP status.
 | 
			
		||||
 | 
			
		||||
### Expense management
 | 
			
		||||
 | 
			
		||||
- Display a list of expenses with the amount and type (fixed or per guest).
 | 
			
		||||
 | 
			
		||||
### Seating plan simulations
 | 
			
		||||
@ -39,12 +34,11 @@ The following list includes features that are already developed and ready for us
 | 
			
		||||
 | 
			
		||||
We want to improve existing features as well as build completely new ones. Here are some ideas we have in mind:
 | 
			
		||||
 | 
			
		||||
- Improve the overall experience of managing guests, groups and expenses, allowing the creation, modification and deletion of any element.
 | 
			
		||||
- Dashboard with a summary of all relevant numbers.
 | 
			
		||||
- Authentication. The current version has only been tested locally, and for that reason authentication was not a priority. This is something
 | 
			
		||||
- (WIP) Improve the overall experience of managing guests, groups and expenses, allowing the creation, modification and deletion of any element.
 | 
			
		||||
- (WIP) Dashboard with a summary of all relevant numbers.
 | 
			
		||||
  we will need to sort out before offering a hosted version of Libre Wedding Planner.
 | 
			
		||||
- (WIP) Sign up flow, allowing users to create their own wedding.
 | 
			
		||||
- Allow multiple users to manage the wedding.
 | 
			
		||||
- Multi-tenancy, allowing an instance to manage multiple weddings.
 | 
			
		||||
- Generation of wedding website with public information.
 | 
			
		||||
- Generation of RSVP links and forms to collect dietary restrictions and transport preferences.
 | 
			
		||||
- Internationalization
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										105
									
								
								package-lock.json
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										105
									
								
								package-lock.json
									
									
									
										generated
									
									
									
								
							@ -17,7 +17,7 @@
 | 
			
		||||
        "react-dom": "^18.0.0"
 | 
			
		||||
      },
 | 
			
		||||
      "devDependencies": {
 | 
			
		||||
        "@docusaurus/module-type-aliases": "3.6.1",
 | 
			
		||||
        "@docusaurus/module-type-aliases": "3.6.3",
 | 
			
		||||
        "@docusaurus/tsconfig": "3.6.1",
 | 
			
		||||
        "@docusaurus/types": "3.6.1",
 | 
			
		||||
        "typescript": "~5.6.2"
 | 
			
		||||
@ -2455,12 +2455,13 @@
 | 
			
		||||
      }
 | 
			
		||||
    },
 | 
			
		||||
    "node_modules/@docusaurus/module-type-aliases": {
 | 
			
		||||
      "version": "3.6.1",
 | 
			
		||||
      "resolved": "https://registry.npmjs.org/@docusaurus/module-type-aliases/-/module-type-aliases-3.6.1.tgz",
 | 
			
		||||
      "integrity": "sha512-J+q1jgm7TnEfVIUZImSFeLA1rghb6nwtoB9siHdcgKpDqFJ9/S7xhQL2aEKE7iZMZYzpu+2F390E9A7GkdEJNA==",
 | 
			
		||||
      "version": "3.6.3",
 | 
			
		||||
      "resolved": "https://registry.npmjs.org/@docusaurus/module-type-aliases/-/module-type-aliases-3.6.3.tgz",
 | 
			
		||||
      "integrity": "sha512-MjaXX9PN/k5ugNvfRZdWyKWq4FsrhN4LEXaj0pEmMebJuBNlFeGyKQUa9DRhJHpadNaiMLrbo9m3U7Ig5YlsZg==",
 | 
			
		||||
      "dev": true,
 | 
			
		||||
      "license": "MIT",
 | 
			
		||||
      "dependencies": {
 | 
			
		||||
        "@docusaurus/types": "3.6.1",
 | 
			
		||||
        "@docusaurus/types": "3.6.3",
 | 
			
		||||
        "@types/history": "^4.7.11",
 | 
			
		||||
        "@types/react": "*",
 | 
			
		||||
        "@types/react-router-config": "*",
 | 
			
		||||
@ -2473,6 +2474,43 @@
 | 
			
		||||
        "react-dom": "*"
 | 
			
		||||
      }
 | 
			
		||||
    },
 | 
			
		||||
    "node_modules/@docusaurus/module-type-aliases/node_modules/@docusaurus/types": {
 | 
			
		||||
      "version": "3.6.3",
 | 
			
		||||
      "resolved": "https://registry.npmjs.org/@docusaurus/types/-/types-3.6.3.tgz",
 | 
			
		||||
      "integrity": "sha512-xD9oTGDrouWzefkhe9ogB2fDV96/82cRpNGx2HIvI5L87JHNhQVIWimQ/3JIiiX/TEd5S9s+VO6FFguwKNRVow==",
 | 
			
		||||
      "dev": true,
 | 
			
		||||
      "license": "MIT",
 | 
			
		||||
      "dependencies": {
 | 
			
		||||
        "@mdx-js/mdx": "^3.0.0",
 | 
			
		||||
        "@types/history": "^4.7.11",
 | 
			
		||||
        "@types/react": "*",
 | 
			
		||||
        "commander": "^5.1.0",
 | 
			
		||||
        "joi": "^17.9.2",
 | 
			
		||||
        "react-helmet-async": "^1.3.0",
 | 
			
		||||
        "utility-types": "^3.10.0",
 | 
			
		||||
        "webpack": "^5.95.0",
 | 
			
		||||
        "webpack-merge": "^5.9.0"
 | 
			
		||||
      },
 | 
			
		||||
      "peerDependencies": {
 | 
			
		||||
        "react": "^18.0.0",
 | 
			
		||||
        "react-dom": "^18.0.0"
 | 
			
		||||
      }
 | 
			
		||||
    },
 | 
			
		||||
    "node_modules/@docusaurus/module-type-aliases/node_modules/webpack-merge": {
 | 
			
		||||
      "version": "5.10.0",
 | 
			
		||||
      "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.10.0.tgz",
 | 
			
		||||
      "integrity": "sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==",
 | 
			
		||||
      "dev": true,
 | 
			
		||||
      "license": "MIT",
 | 
			
		||||
      "dependencies": {
 | 
			
		||||
        "clone-deep": "^4.0.1",
 | 
			
		||||
        "flat": "^5.0.2",
 | 
			
		||||
        "wildcard": "^2.0.0"
 | 
			
		||||
      },
 | 
			
		||||
      "engines": {
 | 
			
		||||
        "node": ">=10.0.0"
 | 
			
		||||
      }
 | 
			
		||||
    },
 | 
			
		||||
    "node_modules/@docusaurus/plugin-content-blog": {
 | 
			
		||||
      "version": "3.6.1",
 | 
			
		||||
      "resolved": "https://registry.npmjs.org/@docusaurus/plugin-content-blog/-/plugin-content-blog-3.6.1.tgz",
 | 
			
		||||
@ -2539,6 +2577,25 @@
 | 
			
		||||
        "react-dom": "^18.0.0"
 | 
			
		||||
      }
 | 
			
		||||
    },
 | 
			
		||||
    "node_modules/@docusaurus/plugin-content-docs/node_modules/@docusaurus/module-type-aliases": {
 | 
			
		||||
      "version": "3.6.1",
 | 
			
		||||
      "resolved": "https://registry.npmjs.org/@docusaurus/module-type-aliases/-/module-type-aliases-3.6.1.tgz",
 | 
			
		||||
      "integrity": "sha512-J+q1jgm7TnEfVIUZImSFeLA1rghb6nwtoB9siHdcgKpDqFJ9/S7xhQL2aEKE7iZMZYzpu+2F390E9A7GkdEJNA==",
 | 
			
		||||
      "license": "MIT",
 | 
			
		||||
      "dependencies": {
 | 
			
		||||
        "@docusaurus/types": "3.6.1",
 | 
			
		||||
        "@types/history": "^4.7.11",
 | 
			
		||||
        "@types/react": "*",
 | 
			
		||||
        "@types/react-router-config": "*",
 | 
			
		||||
        "@types/react-router-dom": "*",
 | 
			
		||||
        "react-helmet-async": "*",
 | 
			
		||||
        "react-loadable": "npm:@docusaurus/react-loadable@6.0.0"
 | 
			
		||||
      },
 | 
			
		||||
      "peerDependencies": {
 | 
			
		||||
        "react": "*",
 | 
			
		||||
        "react-dom": "*"
 | 
			
		||||
      }
 | 
			
		||||
    },
 | 
			
		||||
    "node_modules/@docusaurus/plugin-content-pages": {
 | 
			
		||||
      "version": "3.6.1",
 | 
			
		||||
      "resolved": "https://registry.npmjs.org/@docusaurus/plugin-content-pages/-/plugin-content-pages-3.6.1.tgz",
 | 
			
		||||
@ -2734,6 +2791,25 @@
 | 
			
		||||
        "react-dom": "^18.0.0"
 | 
			
		||||
      }
 | 
			
		||||
    },
 | 
			
		||||
    "node_modules/@docusaurus/theme-classic/node_modules/@docusaurus/module-type-aliases": {
 | 
			
		||||
      "version": "3.6.1",
 | 
			
		||||
      "resolved": "https://registry.npmjs.org/@docusaurus/module-type-aliases/-/module-type-aliases-3.6.1.tgz",
 | 
			
		||||
      "integrity": "sha512-J+q1jgm7TnEfVIUZImSFeLA1rghb6nwtoB9siHdcgKpDqFJ9/S7xhQL2aEKE7iZMZYzpu+2F390E9A7GkdEJNA==",
 | 
			
		||||
      "license": "MIT",
 | 
			
		||||
      "dependencies": {
 | 
			
		||||
        "@docusaurus/types": "3.6.1",
 | 
			
		||||
        "@types/history": "^4.7.11",
 | 
			
		||||
        "@types/react": "*",
 | 
			
		||||
        "@types/react-router-config": "*",
 | 
			
		||||
        "@types/react-router-dom": "*",
 | 
			
		||||
        "react-helmet-async": "*",
 | 
			
		||||
        "react-loadable": "npm:@docusaurus/react-loadable@6.0.0"
 | 
			
		||||
      },
 | 
			
		||||
      "peerDependencies": {
 | 
			
		||||
        "react": "*",
 | 
			
		||||
        "react-dom": "*"
 | 
			
		||||
      }
 | 
			
		||||
    },
 | 
			
		||||
    "node_modules/@docusaurus/theme-common": {
 | 
			
		||||
      "version": "3.6.1",
 | 
			
		||||
      "resolved": "https://registry.npmjs.org/@docusaurus/theme-common/-/theme-common-3.6.1.tgz",
 | 
			
		||||
@ -2762,6 +2838,25 @@
 | 
			
		||||
        "react-dom": "^18.0.0"
 | 
			
		||||
      }
 | 
			
		||||
    },
 | 
			
		||||
    "node_modules/@docusaurus/theme-common/node_modules/@docusaurus/module-type-aliases": {
 | 
			
		||||
      "version": "3.6.1",
 | 
			
		||||
      "resolved": "https://registry.npmjs.org/@docusaurus/module-type-aliases/-/module-type-aliases-3.6.1.tgz",
 | 
			
		||||
      "integrity": "sha512-J+q1jgm7TnEfVIUZImSFeLA1rghb6nwtoB9siHdcgKpDqFJ9/S7xhQL2aEKE7iZMZYzpu+2F390E9A7GkdEJNA==",
 | 
			
		||||
      "license": "MIT",
 | 
			
		||||
      "dependencies": {
 | 
			
		||||
        "@docusaurus/types": "3.6.1",
 | 
			
		||||
        "@types/history": "^4.7.11",
 | 
			
		||||
        "@types/react": "*",
 | 
			
		||||
        "@types/react-router-config": "*",
 | 
			
		||||
        "@types/react-router-dom": "*",
 | 
			
		||||
        "react-helmet-async": "*",
 | 
			
		||||
        "react-loadable": "npm:@docusaurus/react-loadable@6.0.0"
 | 
			
		||||
      },
 | 
			
		||||
      "peerDependencies": {
 | 
			
		||||
        "react": "*",
 | 
			
		||||
        "react-dom": "*"
 | 
			
		||||
      }
 | 
			
		||||
    },
 | 
			
		||||
    "node_modules/@docusaurus/theme-search-algolia": {
 | 
			
		||||
      "version": "3.6.1",
 | 
			
		||||
      "resolved": "https://registry.npmjs.org/@docusaurus/theme-search-algolia/-/theme-search-algolia-3.6.1.tgz",
 | 
			
		||||
 | 
			
		||||
@ -24,7 +24,7 @@
 | 
			
		||||
    "react-dom": "^18.0.0"
 | 
			
		||||
  },
 | 
			
		||||
  "devDependencies": {
 | 
			
		||||
    "@docusaurus/module-type-aliases": "3.6.1",
 | 
			
		||||
    "@docusaurus/module-type-aliases": "3.6.3",
 | 
			
		||||
    "@docusaurus/tsconfig": "3.6.1",
 | 
			
		||||
    "@docusaurus/types": "3.6.1",
 | 
			
		||||
    "typescript": "~5.6.2"
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user