From 485be3e57cc3e59b86221c118af31410cf3adeba Mon Sep 17 00:00:00 2001 From: Shautvast Date: Thu, 20 Nov 2025 15:10:32 +0100 Subject: [PATCH] new version --- README.md | 2 +- build.gradle.kts | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d6ca285..821c8c1 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Autoprefix-commit A simple intellij plugin that puts the current branch name in front of the commit message * Updates the branch every time the commit dialog is focussed -* Puts the branch name in front of any pre-existing text (unless the branch name was already there) +* Puts #[branchname] in front of any pre-existing text (unless the branch name was already there) * No config for other fixed characters * Tested on IntelliJ 2025.x \ No newline at end of file diff --git a/build.gradle.kts b/build.gradle.kts index a427f20..2985820 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -5,7 +5,7 @@ plugins { } group = "com.github.shautvast" -version = "1.3" +version = "1.4" repositories { mavenCentral() @@ -32,6 +32,7 @@ intellijPlatform { 1.1 Initial version: insert branchname in commit dialog. No configuration needed. 1.2 No code changes. Plugin was mistakenly compiled using jdk22 so it didn't work. 1.3 minor fix for redundant space after the branch name + 1.4 put # in front of the branch """.trimIndent() } }