Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Multiversion support #13

Merged
merged 3 commits into from
May 11, 2024
Merged

Multiversion support #13

merged 3 commits into from
May 11, 2024

Conversation

btwonion
Copy link
Owner

No description provided.

Copy link

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Remaining comments which cannot be posted as a review comment to avoid GitHub Rate Limit

ktlint

src/main/kotlin/dev/nyon/autodrop/AutoDrop.kt|71 col 58| Argument should be on a separate line (unless all arguments can fit a single line)
src/main/kotlin/dev/nyon/autodrop/AutoDrop.kt|71 col 61| Argument should be on a separate line (unless all arguments can fit a single line)
src/main/kotlin/dev/nyon/autodrop/AutoDrop.kt|71 col 78| Argument should be on a separate line (unless all arguments can fit a single line)
src/main/kotlin/dev/nyon/autodrop/config/ConfigHandler.kt|5 col 1| Wildcard import
src/main/kotlin/dev/nyon/autodrop/config/ConfigHandler.kt|28 col 28| Parameter should start on a newline
src/main/kotlin/dev/nyon/autodrop/config/ConfigHandler.kt|28 col 28| Parameter should start on a newline
src/main/kotlin/dev/nyon/autodrop/config/ConfigHandler.kt|32 col 17| A multiline expression should start on a new line
src/main/kotlin/dev/nyon/autodrop/config/YaclScreen.kt|3 col 1| Wildcard import
src/main/kotlin/dev/nyon/autodrop/config/YaclScreen.kt|58 col 17| A multiline expression should start on a new line
src/main/kotlin/dev/nyon/autodrop/config/YaclScreen.kt|91 col 66| Argument should be on a separate line (unless all arguments can fit a single line)
src/main/kotlin/dev/nyon/autodrop/config/YaclScreen.kt|91 col 83| Argument should be on a separate line (unless all arguments can fit a single line)
src/main/kotlin/dev/nyon/autodrop/config/YaclScreen.kt|102 col 15| A multiline expression should start on a new line
src/main/kotlin/dev/nyon/autodrop/config/YaclScreen.kt|102 col 15| Missing newline after "("
src/main/kotlin/dev/nyon/autodrop/config/YaclScreen.kt|104 col 22| Missing newline after "("
src/main/kotlin/dev/nyon/autodrop/config/YaclScreen.kt|104 col 22| Argument should be on a separate line (unless all arguments can fit a single line)
src/main/kotlin/dev/nyon/autodrop/config/YaclScreen.kt|110 col 17| Missing newline before ")"
src/main/kotlin/dev/nyon/autodrop/config/YaclScreen.kt|110 col 18| Missing newline before ")"
src/main/kotlin/dev/nyon/autodrop/config/YaclScreen.kt|110 col 105| Missing newline before ")"
src/main/kotlin/dev/nyon/autodrop/config/models/Archive.kt|10 col 27| Expected newline
src/main/kotlin/dev/nyon/autodrop/config/models/Archive.kt|10 col 27| Expected newline before annotation
src/main/kotlin/dev/nyon/autodrop/config/models/Archive.kt|10 col 77| Expected newline after last annotation
src/main/kotlin/dev/nyon/autodrop/config/models/Archive.kt|10 col 94| Expected newline
src/main/kotlin/dev/nyon/autodrop/util/IdentifierSerializer.kt|15 col 27| Parameter should start on a newline
src/main/kotlin/dev/nyon/autodrop/util/IdentifierSerializer.kt|15 col 27| Parameter should start on a newline
stonecutter.gradle.kts|4 col 29| A single line block comment after a code element on the same line must be replaced with an EOL comment
stonecutter.gradle.kts|4 col 29| Replace the block comment with an EOL comment
stonecutter.gradle.kts|6 col 30| A multiline expression should start on a new line
stonecutter.gradle.kts|11 col 30| A multiline expression should start on a new line
stonecutter.gradle.kts|14 col 2| Redundant newline (\n) at the end of file

import kotlinx.coroutines.delay
import kotlinx.coroutines.launch
import kotlinx.coroutines.runBlocking
import kotlinx.coroutines.*

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🚫 [ktlint] standard:no-wildcard-imports reported by reviewdog 🐶
Wildcard import

GLFW.GLFW_KEY_J,
"autodrop"
)
private val toggleKeyBind = KeyBindingHelper.registerKeyBinding(

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🚫 [ktlint] standard:multiline-expression-wrapping reported by reviewdog 🐶
A multiline expression should start on a new line

)
private val toggleKeyBind = KeyBindingHelper.registerKeyBinding(
KeyMapping(
"Toggle AutoDrop", InputConstants.Type.KEYSYM, GLFW.GLFW_KEY_J, "autodrop"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🚫 [ktlint] standard:argument-list-wrapping reported by reviewdog 🐶
Argument should be on a separate line (unless all arguments can fit a single line)

)
private val toggleKeyBind = KeyBindingHelper.registerKeyBinding(
KeyMapping(
"Toggle AutoDrop", InputConstants.Type.KEYSYM, GLFW.GLFW_KEY_J, "autodrop"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🚫 [ktlint] standard:argument-list-wrapping reported by reviewdog 🐶
Argument should be on a separate line (unless all arguments can fit a single line)

)
private val toggleKeyBind = KeyBindingHelper.registerKeyBinding(
KeyMapping(
"Toggle AutoDrop", InputConstants.Type.KEYSYM, GLFW.GLFW_KEY_J, "autodrop"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🚫 [ktlint] standard:argument-list-wrapping reported by reviewdog 🐶
Argument should be on a separate line (unless all arguments can fit a single line)

GLFW.GLFW_KEY_O,
"autodrop"
)
private val menuKeyBind = KeyBindingHelper.registerKeyBinding(

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🚫 [ktlint] standard:multiline-expression-wrapping reported by reviewdog 🐶
A multiline expression should start on a new line

)
private val menuKeyBind = KeyBindingHelper.registerKeyBinding(
KeyMapping(
"Open GUI", InputConstants.Type.KEYSYM, GLFW.GLFW_KEY_O, "autodrop"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🚫 [ktlint] standard:argument-list-wrapping reported by reviewdog 🐶
Argument should be on a separate line (unless all arguments can fit a single line)

)
private val menuKeyBind = KeyBindingHelper.registerKeyBinding(
KeyMapping(
"Open GUI", InputConstants.Type.KEYSYM, GLFW.GLFW_KEY_O, "autodrop"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🚫 [ktlint] standard:argument-list-wrapping reported by reviewdog 🐶
Argument should be on a separate line (unless all arguments can fit a single line)

)
private val menuKeyBind = KeyBindingHelper.registerKeyBinding(
KeyMapping(
"Open GUI", InputConstants.Type.KEYSYM, GLFW.GLFW_KEY_O, "autodrop"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🚫 [ktlint] standard:argument-list-wrapping reported by reviewdog 🐶
Argument should be on a separate line (unless all arguments can fit a single line)

)
.withColor(0xF99147),
false
).withStyle(Style.EMPTY.withColor(0xF99147)), false

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🚫 [ktlint] standard:indent reported by reviewdog 🐶
Unexpected indentation (20) (should be 16)

Repository owner deleted a comment from github-actions bot May 11, 2024
Repository owner deleted a comment from github-actions bot May 11, 2024
Repository owner deleted a comment from github-actions bot May 11, 2024
Repository owner deleted a comment from github-actions bot May 11, 2024
Repository owner deleted a comment from github-actions bot May 11, 2024
Repository owner deleted a comment from github-actions bot May 11, 2024
Repository owner deleted a comment from github-actions bot May 11, 2024
Repository owner deleted a comment from github-actions bot May 11, 2024
Repository owner deleted a comment from github-actions bot May 11, 2024
Repository owner deleted a comment from github-actions bot May 11, 2024
Repository owner deleted a comment from github-actions bot May 11, 2024
Repository owner deleted a comment from github-actions bot May 11, 2024
Repository owner deleted a comment from github-actions bot May 11, 2024
Repository owner deleted a comment from github-actions bot May 11, 2024
Repository owner deleted a comment from github-actions bot May 11, 2024
Repository owner deleted a comment from github-actions bot May 11, 2024
Repository owner deleted a comment from github-actions bot May 11, 2024
Repository owner deleted a comment from github-actions bot May 11, 2024
Repository owner deleted a comment from github-actions bot May 11, 2024
Repository owner deleted a comment from github-actions bot May 11, 2024
@btwonion btwonion merged commit b5098d5 into main May 11, 2024
2 checks passed
@btwonion btwonion deleted the multiversion branch May 11, 2024 22:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant