Skip to content

Commit 0b9a175

Browse files
committed
hoc081098 -> Kotlin-Multiplatform-Foundation
1 parent 505d6b2 commit 0b9a175

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,6 @@
5050

5151
[0.1.0]: https://github.com/Kotlin-Multiplatform-Foundation/kotlin-channel-event-bus/releases/tag/0.1.0
5252

53-
[0.0.2]: https://github.com/hoc081098/kotlin-channel-event-bus/releases/tag/0.0.2
53+
[0.0.2]: https://github.com/Kotlin-Multiplatform-Foundation/kotlin-channel-event-bus/releases/tag/0.0.2
5454

55-
[0.0.1]: https://github.com/hoc081098/kotlin-channel-event-bus/releases/tag/0.0.1
55+
[0.0.1]: https://github.com/Kotlin-Multiplatform-Foundation/kotlin-channel-event-bus/releases/tag/0.0.1

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
[![maven-central](https://img.shields.io/maven-central/v/io.github.hoc081098/channel-event-bus)](https://search.maven.org/search?q=g:io.github.hoc081098%20channel-event-bus)
44
[![codecov](https://codecov.io/github/hoc081098/kotlin-channel-event-bus/graph/badge.svg?token=o5JcvqkEsR)](https://codecov.io/github/hoc081098/kotlin-channel-event-bus)
5-
[![Build and publish snapshot](https://github.com/hoc081098/kotlin-channel-event-bus/actions/workflows/build.yml/badge.svg)](https://github.com/hoc081098/kotlin-channel-event-bus/actions/workflows/build.yml)
6-
[![Build sample](https://github.com/hoc081098/kotlin-channel-event-bus/actions/workflows/sample.yml/badge.svg)](https://github.com/hoc081098/kotlin-channel-event-bus/actions/workflows/sample.yml)
7-
[![Publish Release](https://github.com/hoc081098/kotlin-channel-event-bus/actions/workflows/publish-release.yml/badge.svg)](https://github.com/hoc081098/kotlin-channel-event-bus/actions/workflows/publish-release.yml)
5+
[![Build and publish snapshot](https://github.com/Kotlin-Multiplatform-Foundation/kotlin-channel-event-bus/actions/workflows/build.yml/badge.svg)](https://github.com/Kotlin-Multiplatform-Foundation/kotlin-channel-event-bus/actions/workflows/build.yml)
6+
[![Build sample](https://github.com/Kotlin-Multiplatform-Foundation/kotlin-channel-event-bus/actions/workflows/sample.yml/badge.svg)](https://github.com/Kotlin-Multiplatform-Foundation/kotlin-channel-event-bus/actions/workflows/sample.yml)
7+
[![Publish Release](https://github.com/Kotlin-Multiplatform-Foundation/kotlin-channel-event-bus/actions/workflows/publish-release.yml/badge.svg)](https://github.com/Kotlin-Multiplatform-Foundation/kotlin-channel-event-bus/actions/workflows/publish-release.yml)
88
[![Kotlin version](https://img.shields.io/badge/Kotlin-1.9.21-blueviolet?logo=kotlin&logoColor=white)](http://kotlinlang.org)
99
[![KotlinX Coroutines version](https://img.shields.io/badge/Kotlinx_Coroutines-1.7.3-blueviolet?logo=kotlin&logoColor=white)](https://github.com/Kotlin/kotlinx.coroutines/releases/tag/1.7.3)
1010
[![Hits](https://hits.seeyoufarm.com/api/count/incr/badge.svg?url=https%3A%2F%2Fi.8713187.xyz%2Fhoc081098%2Fkotlin-channel-event-bus&count_bg=%2379C83D&title_bg=%23555555&icon=&icon_color=%23E7E7E7&title=hits&edge_flat=false)](https://hits.seeyoufarm.com)
@@ -24,7 +24,7 @@
2424
![badge][badge-apple-silicon]
2525

2626
<p align="center">
27-
<img src="https://github.com/hoc081098/kotlin-channel-event-bus/raw/master/logo.png" width="400">
27+
<img src="https://github.com/Kotlin-Multiplatform-Foundation/kotlin-channel-event-bus/raw/master/logo.png" width="400">
2828
</p>
2929

3030
## Multi-keys, multi-producers, single-consumer event bus backed by `kotlinx.coroutines.channels.Channel`s.
@@ -147,7 +147,7 @@ bus
147147

148148
## Sample
149149

150-
- [Android Compose sample](https://github.com/hoc081098/kotlin-channel-event-bus/tree/master/sample/app):
150+
- [Android Compose sample](https://github.com/Kotlin-Multiplatform-Foundation/kotlin-channel-event-bus/tree/master/sample/app):
151151
an Android app using Compose UI to show how to use the library.
152152
It has two nested navigation graphs: `Register` and `Home`.
153153

@@ -170,7 +170,7 @@ bus
170170
- The `Detail` screen will send events to the `ChannelEventBus` when the user clicks on the button.
171171
The `HomeViewModel` will receive those events and update the state.
172172

173-
https://github.com/hoc081098/kotlin-channel-event-bus/assets/36917223/80015232-d5b5-4fb2-a779-4e6113ddb8f8
173+
https://github.com/Kotlin-Multiplatform-Foundation/kotlin-channel-event-bus/assets/36917223/80015232-d5b5-4fb2-a779-4e6113ddb8f8
174174

175175
## Roadmap
176176

channel-event-bus/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ kotlin {
3939
browser()
4040
nodejs()
4141
}
42-
@OptIn(org.jetbrains.kotlin.gradle.targets.js.dsl.ExperimentalWasmDsl::class)
42+
@OptIn(org.jetbrains.kotlin.gradle.ExperimentalWasmDsl::class)
4343
wasmJs {
4444
// Module name should be different from the one from JS
4545
// otherwise IC tasks that start clashing different modules with the same module name
@@ -137,7 +137,7 @@ tasks.withType<org.jetbrains.dokka.gradle.DokkaTask>().configureEach {
137137

138138
sourceLink {
139139
localDirectory.set(projectDir.resolve("src"))
140-
remoteUrl.set(URL("https://github.com/hoc081098/kotlin-channel-event-bus/tree/master/channel-event-bus/src"))
140+
remoteUrl.set(URL("https://github.com/Kotlin-Multiplatform-Foundation/kotlin-channel-event-bus/tree/master/channel-event-bus/src"))
141141
remoteLineSuffix.set("#L")
142142
}
143143
}

gradle.properties

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ GROUP=io.github.hoc081098
2828
VERSION_NAME=0.1.1-SNAPSHOT
2929
POM_INCEPTION_YEAR=2023
3030

31-
POM_URL=https://github.com/hoc081098/kotlin-channel-event-bus
32-
POM_SCM_URL=https://github.com/hoc081098/kotlin-channel-event-bus
33-
POM_SCM_CONNECTION=scm:git:git://github.com/hoc081098/kotlin-channel-event-bus
34-
POM_SCM_DEV_CONNECTION=scm:git:ssh://[email protected]/hoc081098/kotlin-channel-event-bus.git
31+
POM_URL=https://github.com/Kotlin-Multiplatform-Foundation/kotlin-channel-event-bus
32+
POM_SCM_URL=https://github.com/Kotlin-Multiplatform-Foundation/kotlin-channel-event-bus
33+
POM_SCM_CONNECTION=scm:git:git://github.com/Kotlin-Multiplatform-Foundation/kotlin-channel-event-bus
34+
POM_SCM_DEV_CONNECTION=scm:git:ssh://[email protected]/Kotlin-Multiplatform-Foundation/kotlin-channel-event-bus.git
3535

3636
POM_LICENCE_NAME=MIT License
3737
POM_LICENCE_URL=https://opensource.org/licenses/mit-license.php

0 commit comments

Comments
 (0)