Skip to content

Commit

Permalink
version to 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ForteScarlet committed Jun 23, 2024
1 parent 98e9363 commit 141b5a2
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/P.kt
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ object P {
override val homepage: String get() = HOMEPAGE


private val baseVersion = v(0, 0, 4)
private val baseVersion = v(0, 1, 0)

val snapshotVersion = baseVersion - Version.SNAPSHOT
override val version = if (isSnapshot()) snapshotVersion else baseVersion
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
package love.forte.simbot.component.telegram.core.actor.internal

import love.forte.simbot.common.collectable.Collectable
import love.forte.simbot.common.collectable.emptyCollectable
import love.forte.simbot.common.id.ID
import love.forte.simbot.common.id.toInt
import love.forte.simbot.component.telegram.core.actor.TelegramChatGroupActor
Expand All @@ -43,7 +44,7 @@ internal abstract class AbstractTelegramChatGroupActor : TelegramChatGroupActor
abstract override val source: Chat

override val roles: Collectable<Role>
get() = TODO("Not yet implemented")
get() = emptyCollectable() // TODO("Not yet implemented")

override suspend fun botAsMember(): TelegramMember {
return bot.queryUserInfo().toTelegramMember(bot)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -322,8 +322,6 @@ public class BotConfiguration {
*/
public var longPolling: LongPolling? = null

// TODO exception handler?

public companion object {
/**
* Default value for long polling timeout: 30 minutes.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@ import kotlin.jvm.JvmOverloads
import kotlin.jvm.JvmStatic
import kotlin.jvm.JvmSynthetic

// TODO Doc

/**
* A [Bot] factory.
*/
Expand Down

0 comments on commit 141b5a2

Please sign in to comment.