diff --git a/.vscode/settings.json b/.vscode/settings.json index 049708c..ec2c883 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -45,8 +45,17 @@ "activityBar.inactiveForeground": "#15202b99", "activityBarBadge.background": "#136c1a", "activityBarBadge.foreground": "#e7e7e7", - "tab.activeBorder": "#e36b61", - "sash.hoverBorder": "#e36b61" + "sash.hoverBorder": "#e36b61", + "commandCenter.border": "#e7e7e799", + "statusBar.background": "#db4236", + "statusBar.foreground": "#e7e7e7", + "statusBarItem.hoverBackground": "#e36b61", + "statusBarItem.remoteBackground": "#db4236", + "statusBarItem.remoteForeground": "#e7e7e7", + "titleBar.activeBackground": "#db4236", + "titleBar.activeForeground": "#e7e7e7", + "titleBar.inactiveBackground": "#db423699", + "titleBar.inactiveForeground": "#e7e7e799" }, "peacock.color": "#DB4236" } diff --git a/BASE.md b/BASE.md index 2b14cff..d49b7a6 100644 --- a/BASE.md +++ b/BASE.md @@ -1,9 +1,5 @@ ![demo](./assets/demo.gif) -![version](https://vsmarketplacebadge.apphb.com/version-short/rioukkevin.vscode-git-commit.svg?style=for-the-badge&color=dd4739) -![install](https://vsmarketplacebadge.apphb.com/installs/rioukkevin.vscode-git-commit.svg?style=for-the-badge&color=dd4739) -![rating](https://vsmarketplacebadge.apphb.com/rating-star/rioukkevin.vscode-git-commit.svg?style=for-the-badge&color=dd4739) - # What is it ? This extension is an extension made to formalize git commit messages. By using a template and variables, you can define how the commit message needs to looks and which data you want in this message. diff --git a/CHANGELOG.md b/CHANGELOG.md index 2be7648..d1450f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +#### **3.2.0** (_01-30-2024_) + +- ✨feature: Trim messages when finished +- ✨feature: Ability to define titles on prompts +- ✨feature: Ability to define default values on prompts + #### **3.1.1** (_09-30-2022_) - ✨feature: Trim messages when finished diff --git a/README.md b/README.md index 2b3b107..3432699 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,5 @@ ![demo](./assets/demo.gif) -![version](https://vsmarketplacebadge.apphb.com/version-short/rioukkevin.vscode-git-commit.svg?style=for-the-badge&color=dd4739) -![install](https://vsmarketplacebadge.apphb.com/installs/rioukkevin.vscode-git-commit.svg?style=for-the-badge&color=dd4739) -![rating](https://vsmarketplacebadge.apphb.com/rating-star/rioukkevin.vscode-git-commit.svg?style=for-the-badge&color=dd4739) - # What is it ? This extension is an extension made to formalize git commit messages. By using a template and variables, you can define how the commit message needs to looks and which data you want in this message. @@ -173,6 +169,12 @@ You just have to create a pull-request 😉 with what you want and a clear descr # Changelog +#### **3.2.0** (_01-30-2024_) + +- ✨feature: Trim messages when finished +- ✨feature: Ability to define titles on prompts +- ✨feature: Ability to define default values on prompts + #### **3.1.1** (_09-30-2022_) - ✨feature: Trim messages when finished diff --git a/package.json b/package.json index 5c12f45..d893537 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "vscode-git-commit", "displayName": "VSCode Git Commit Message", "description": "Harmonize your git commit message with your colleagues", - "version": "3.1.1", + "version": "3.2.0", "engines": { "vscode": "^1.60.0" },