Skip to content

Commit

Permalink
Fix broken repo transfer links
Browse files Browse the repository at this point in the history
  • Loading branch information
ILIYANGERMANOV committed Oct 11, 2023
1 parent ae9c3c2 commit 2762abd
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
4 changes: 2 additions & 2 deletions TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down Expand Up @@ -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
<kbd>Settings/Preferences</kbd> > <kbd>Plugins</kbd> > <kbd>⚙️</kbd> > <kbd>Install plugin from disk...</kbd>


Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit 2762abd

Please sign in to comment.