-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 📚 docs (contributions): VS Code Extension Recommendation – Commit Messages Template (#43) * 📚 docs (contributions): VS Code Extension Recommendation by @TadeSF branch: vs-code-commit-extension * 🧼 format & lint (MUNify) by @TadeSF branch: vs-code-commit-extension * 🧹 chore (MUNify): add git commit config to vcs branch: vs-code-commit-extension * 📚 docs (MUNify): Contributing Update branch: vs-code-commit-extension * 📚 docs (MUNify): Contributing Update branch: vs-code-commit-extension * 📚 docs (MUNify): Contributing Update branch: vs-code-commit-extension --------- Co-authored-by: m1212e <[email protected]> * Locale detection and language selection (#45) * 🐞 fix: Fix title in base layout * ✨feature: Chair Page Setup, Navigation and Speakers List * ✨feature: Attendance Page * ✨feature: i18n * ✨feature: Whiteboard Update and Chair Editing Support * 🐞 fix: Formatting * 🔵 other: Color Pallet update * 🐞 fix: any -> unknown * 📄 docs: Clearer Documentation * ✨feature: Dark Mode * ✨feature: System Color Mode detection & High Contrast Mode * ✨feature: Changing Speech times * ✨feature: Navbar Button Titles & New Chair Presentation Window Button in Navbar * ✨feature: Navbar Button Titles & New Chair Presentation Window Button in Navbar * 🐞 fix: Few Theme related design changes * ✨feature: Fuse.js Fuzzy Search for Countries * ✨feature: Add Country to List Toast and other minor changes * ✨feature: Change Speakers Time: Show warning if wrong format and show success toast on success * ✨feature: Chair Voting Page * 🐞 fix: I18n Type Error fix * 🐞 fix: I18n Type Error fix * 🐞 fix: install fuse in the frontend project * ✨ feat (CHASE Frontend): Local Storage Locale Detection and Settings option for selecting language / Local Storing of current theme preferance branch: locale-detection-and-language-selection * 🧼 format & lint (CHASE Frontend) branch: locale-detection-and-language-selection * 🐞 fix (CHASE Frontend): Window Build Error branch: locale-detection-and-language-selection * 🧼 format & lint (CHASE Frontend): Removing (or ignoring) all console.log to make linter test pass branch: locale-detection-and-language-selection * Revert "🐞 fix (CHASE Frontend): Window Build Error" This reverts commit 51ceeef. * Revert "Revert "🐞 fix (CHASE Frontend): Window Build Error"" This reverts commit 95c04e6. * Revert "🧼 format & lint (CHASE Frontend): Removing (or ignoring) all console.log to make linter test pass" This reverts commit 4920427. * 🧼 format & lint (CHASE Frontend): Removing (or ignoring) all console.log to make linter test pass branch: locale-detection-and-language-selection * 🐞 fix (CHASE Frontend): using useState and useEffect in layout file branch: locale-detection-and-language-selection * 🐞 fix (CHASE-Frontend): SSR and localStorage branch: locale-detection-and-language-selection * 🧼 format & lint (CHASE-Frontend): lint branch: locale-detection-and-language-selection * 🐞 fix (CHASE-Frontend): Adding Localisation branch: locale-detection-and-language-selection --------- Co-authored-by: m1212e <[email protected]> * Update README.md --------- Co-authored-by: m1212e <[email protected]>
- Loading branch information
Showing
21 changed files
with
363 additions
and
84 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"recommendations": ["rome.rome"] | ||
"recommendations": ["rome.rome", "rioukkevin.vscode-git-commit"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,90 @@ | ||
{ | ||
"files.eol": "\n" | ||
"files.eol": "\n", | ||
"vscodeGitCommit.template": [ | ||
"{prefix} ({scope}): {message}", | ||
"branch: {branch}" | ||
], | ||
"vscodeGitCommit.variables": { | ||
"prefix": [ | ||
{ | ||
"label": "✨ feat", | ||
"detail": "A new feature" | ||
}, | ||
{ | ||
"label": "🐞 fix", | ||
"detail": "A bugfix" | ||
}, | ||
{ | ||
"label": "🎨 style", | ||
"detail": "Stylistic changes to the App" | ||
}, | ||
{ | ||
"label": "🚧 wip", | ||
"detail": "Work in progress" | ||
}, | ||
{ | ||
"label": "🧼 format & lint", | ||
"detail": "Formatting and linting changes" | ||
}, | ||
{ | ||
"label": "🔤 typing", | ||
"detail": "Changes to fulfill typing requirements" | ||
}, | ||
{ | ||
"label": "📚 docs", | ||
"detail": "A documentation update" | ||
}, | ||
{ | ||
"label": "🚀 perf", | ||
"detail": "A code change that improves performance" | ||
}, | ||
{ | ||
"label": "🧪 test", | ||
"detail": "A test update" | ||
}, | ||
{ | ||
"label": "🧹 chore", | ||
"detail": "Project housekeeping" | ||
}, | ||
{ | ||
"label": "♻️ refactor", | ||
"detail": "Refactor of the code without change in functionality" | ||
}, | ||
{ | ||
"label": "🏗️ build", | ||
"detail": "Changes that affect the build system or external dependencies" | ||
}, | ||
{ | ||
"label": "🚦 ci", | ||
"detail": "Changes to CI configuration files and scripts" | ||
}, | ||
{ | ||
"label": "↩️ revert", | ||
"detail": "Reverts a previous commit" | ||
}, | ||
{ | ||
"label": "🔀 merge", | ||
"detail": "Use when merging branches" | ||
} | ||
], | ||
"scope": [ | ||
{ | ||
"label": "CHASE Frontend", | ||
"detail": "Changes to the Chase Frontend" | ||
}, | ||
{ | ||
"label": "CHASE Backend", | ||
"detail": "Changes to the Chase Backend" | ||
}, | ||
{ | ||
"label": "AUTH", | ||
"detail": "Changes to the auth system" | ||
}, | ||
{ | ||
"label": "MUNify", | ||
"detail": "Changes to MUNify in general" | ||
} | ||
], | ||
"branch": "branch" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.