From 2762abd4b5c85979cdc3a3bea642d20e5a42aa34 Mon Sep 17 00:00:00 2001 From: iliyangermanov Date: Wed, 11 Oct 2023 18:51:36 +0300 Subject: [PATCH] Fix broken repo transfer links --- README.md | 2 +- TEMPLATE.md | 4 ++-- gradle.properties | 2 +- .../com/ivyapps/composehammer/DescriptionFormatterTest.kt | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 1d83c14..048c03c 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Compose Hammer -![Build](https://github.com/ILIYANGERMANOV/compose-material3-helper-plugin/workflows/Build/badge.svg) +![Build](https://github.com/Ivy-Apps/compose-hammer/workflows/Build/badge.svg) [![Version](https://img.shields.io/jetbrains/plugin/v/PLUGIN_ID.svg)](https://plugins.jetbrains.com/plugin/PLUGIN_ID) [![Downloads](https://img.shields.io/jetbrains/plugin/d/PLUGIN_ID.svg)](https://plugins.jetbrains.com/plugin/PLUGIN_ID) diff --git a/TEMPLATE.md b/TEMPLATE.md index a875817..be19868 100644 --- a/TEMPLATE.md +++ b/TEMPLATE.md @@ -1,6 +1,6 @@ # Compose Hammer -![Build](https://github.com/ILIYANGERMANOV/compose-material3-helper-plugin/workflows/Build/badge.svg) +![Build](https://github.com/Ivy-Apps/compose-hammer/workflows/Build/badge.svg) [![Version](https://img.shields.io/jetbrains/plugin/v/21912-compose-hammer.svg)](https://plugins.jetbrains.com/plugin/21912-compose-hammer) [![Downloads](https://img.shields.io/jetbrains/plugin/d/21912-compose-hammer.svg)](https://plugins.jetbrains.com/plugin/21912-compose-hammer) @@ -33,7 +33,7 @@ To keep everything working, do not remove `` sections. - Manually: - Download the [latest release](https://github.com/ILIYANGERMANOV/compose-material3-helper-plugin/releases/latest) and install it manually using + Download the [latest release](https://github.com/Ivy-Apps/compose-hammer/releases/latest) and install it manually using Settings/Preferences > Plugins > ⚙️ > Install plugin from disk... diff --git a/gradle.properties b/gradle.properties index 3c75064..5d0b2f1 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,7 +1,7 @@ # IntelliJ Platform Artifacts Repositories -> https://plugins.jetbrains.com/docs/intellij/intellij-artifacts.html pluginGroup=com.ivyapps.composehammer pluginName=compose-hammer-m3-ui-builder -pluginRepositoryUrl=https://github.com/ILIYANGERMANOV/compose-material3-helper-plugin +pluginRepositoryUrl=https://github.com/Ivy-Apps/compose-hammer # SemVer format -> https://semver.org pluginVersion=2023.6.21 # Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html diff --git a/src/test/kotlin/com/ivyapps/composehammer/DescriptionFormatterTest.kt b/src/test/kotlin/com/ivyapps/composehammer/DescriptionFormatterTest.kt index 1c6d51d..dc331d2 100644 --- a/src/test/kotlin/com/ivyapps/composehammer/DescriptionFormatterTest.kt +++ b/src/test/kotlin/com/ivyapps/composehammer/DescriptionFormatterTest.kt @@ -42,13 +42,13 @@ class DescriptionFormatterTest : BasePlatformTestCase() { fun testOneWordAboveMaxChars() { // given - val input = "IliyanGermanov" + val input = "JohnDoe" // when val output = input.formatText(maxLineLength = 5) // then - assertEquals("IliyanGermanov", output) + assertEquals("JohnDoe", output) } fun testFormatsBullets() {