Skip to content

Commit a15d3cf

Browse files
committed
Rename io.github.ethersync => org.teamtype
1 parent bccc7f9 commit a15d3cf

26 files changed

Lines changed: 61 additions & 59 deletions

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@ jobs:
3232
uses: softprops/action-gh-release@v2
3333
with:
3434
files: |
35-
./build/distributions/ethersync-0.7.0-SNAPSHOT.zip
35+
./build/distributions/teamtype-0.9.0-SNAPSHOT.zip
3636
tag_name: nightly
3737
prerelease: true

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ plugins {
77
alias(libs.plugins.testLogger)
88
}
99

10-
group = "io.github.ethersync"
10+
group = "org.teamtype"
1111

12-
version = "0.7.0-SNAPSHOT"
12+
version = "0.9.0-SNAPSHOT"
1313

1414
repositories {
1515
mavenCentral()

src/main/kotlin/io/github/ethersync/EthersyncService.kt renamed to src/main/kotlin/org/teamtype/EthersyncService.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package io.github.ethersync
1+
package org.teamtype
22

33
import kotlinx.coroutines.Job
44

src/main/kotlin/io/github/ethersync/EthersyncServiceImpl.kt renamed to src/main/kotlin/org/teamtype/EthersyncServiceImpl.kt

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package io.github.ethersync
1+
package org.teamtype
22

33
import com.intellij.execution.configurations.GeneralCommandLine
44
import com.intellij.execution.process.ColoredProcessHandler
@@ -24,11 +24,11 @@ import com.intellij.util.io.BaseOutputReader
2424
import com.intellij.util.io.await
2525
import com.intellij.util.io.awaitExit
2626
import com.intellij.util.io.readLineAsync
27-
import io.github.ethersync.protocol.*
28-
import io.github.ethersync.settings.AppSettings
29-
import io.github.ethersync.sync.Changetracker
30-
import io.github.ethersync.sync.Cursortracker
31-
import io.github.ethersync.ui.ToolWindow
27+
import org.teamtype.ethersync.protocol.*
28+
import org.teamtype.settings.AppSettings
29+
import org.teamtype.sync.Changetracker
30+
import org.teamtype.sync.Cursortracker
31+
import org.teamtype.ui.ToolWindow
3232
import kotlinx.coroutines.*
3333
import kotlinx.coroutines.channels.Channel
3434
import kotlinx.coroutines.channels.consumeEach
@@ -42,20 +42,22 @@ import java.nio.file.Files
4242
import java.nio.file.attribute.PosixFilePermissions
4343
import java.util.concurrent.Executors
4444

45-
private val LOG = logger<EthersyncServiceImpl>()
45+
private val LOG = logger<org.teamtype.EthersyncServiceImpl>()
4646

4747
@Service(Service.Level.PROJECT)
4848
class EthersyncServiceImpl(
4949
private val project: Project,
5050
private val cs: CoroutineScope,
51-
) : EthersyncService {
51+
) : org.teamtype.EthersyncService {
5252

53-
private var launcher: Launcher<RemoteEthersyncClientProtocol>? = null
53+
private var launcher: Launcher<org.teamtype.protocol.RemoteEthersyncClientProtocol>? = null
5454
private var daemonProcess: ColoredProcessHandler? = null
5555
private var clientProcess: Process? = null
5656

57-
private val changetracker: Changetracker = Changetracker(project, cs)
58-
private val cursortracker: Cursortracker = Cursortracker(project, cs)
57+
private val changetracker: org.teamtype.sync.Changetracker =
58+
_root_ide_package_.org.teamtype.sync.Changetracker(project, cs)
59+
private val cursortracker: org.teamtype.sync.Cursortracker =
60+
_root_ide_package_.org.teamtype.sync.Cursortracker(project, cs)
5961

6062
/** test-only! */
6163
var attachDaemonOutputToUi: Boolean = true

src/main/kotlin/io/github/ethersync/Icons.kt renamed to src/main/kotlin/org/teamtype/Icons.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package io.github.ethersync
1+
package org.teamtype
22

33
import com.intellij.openapi.util.IconLoader
44

src/main/kotlin/io/github/ethersync/StartEthersyncDaemonAction.kt renamed to src/main/kotlin/org/teamtype/StartEthersyncDaemonAction.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package io.github.ethersync
1+
package org.teamtype
22

33
import com.intellij.icons.AllIcons
44
import com.intellij.openapi.actionSystem.AnAction

src/main/kotlin/io/github/ethersync/StartEthersyncDaemonTerminalShellCommandHandler.kt renamed to src/main/kotlin/org/teamtype/StartEthersyncDaemonTerminalShellCommandHandler.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
package io.github.ethersync
1+
package org.teamtype
22

33
import com.intellij.execution.Executor
44
import com.intellij.openapi.components.service
55
import com.intellij.openapi.project.Project
66
import com.intellij.terminal.TerminalShellCommandHandler
7-
import io.github.ethersync.settings.AppSettings
7+
import org.teamtype.settings.AppSettings
88

99
class StartEthersyncDaemonTerminalShellCommandHandler : TerminalShellCommandHandler {
1010
override fun execute(

src/main/kotlin/io/github/ethersync/StopEthersyncDaemonAction.kt renamed to src/main/kotlin/org/teamtype/StopEthersyncDaemonAction.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package io.github.ethersync
1+
package org.teamtype
22

33
import com.intellij.icons.AllIcons
44
import com.intellij.openapi.actionSystem.AnAction

src/main/kotlin/io/github/ethersync/protocol/CursorEvent.kt renamed to src/main/kotlin/org/teamtype/protocol/CursorEvent.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package io.github.ethersync.protocol
1+
package org.teamtype.protocol
22

33
import com.google.gson.annotations.SerializedName
44
import org.eclipse.lsp4j.Range

src/main/kotlin/io/github/ethersync/protocol/CursorRequest.kt renamed to src/main/kotlin/org/teamtype/protocol/CursorRequest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package io.github.ethersync.protocol
1+
package org.teamtype.protocol
22

33
import com.google.gson.annotations.SerializedName
44
import org.eclipse.lsp4j.Range

0 commit comments

Comments
 (0)