Skip to content

Commit

Permalink
Merge pull request #266 from /issues/265/rename-project-to-hirasawa-b…
Browse files Browse the repository at this point in the history
…ancho

Rename project (and repo) to Hirasawa Bancho
  • Loading branch information
cg0 authored Aug 28, 2023
2 parents 72c8aa1 + f67c1f4 commit c56c97c
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .idea/.name

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions .idea/Hirasawa-Server.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Hirasawa Project
[![Unit tests](https://github.com/HirasawaProject/Hirasawa-Server/actions/workflows/tests.yml/badge.svg)](https://github.com/HirasawaProject/Hirasawa-Server/actions/workflows/tests.yml) [![Codacy Security Scan](https://github.com/HirasawaProject/Hirasawa-Server/actions/workflows/codacy.yml/badge.svg)](https://github.com/HirasawaProject/Hirasawa-Server/actions/workflows/codacy.yml)

Hirasawa Project is a WIP Bancho server for osu! supporting custom plugins written in Kotlin
Hirasawa Bancho is a WIP Bancho server for osu! supporting custom plugins written in Kotlin

## The ethos of the project
The project is intended to be an application providing a (close to) vanilla Bancho experience
Expand Down Expand Up @@ -33,15 +33,15 @@ In terms of hardware requirements I've gotten this to run on a Pi Zero
Hirasawa builds can be downloaded [here](https://github.com/cg0/Hirasawa-Project/releases), the version number uses the [semver versioning scheme](https://semver.org/)

## Building
Building Hirasawa is very easy, for building testing builds `gradle shadow` will output to
`build/libs/HirasawaProject-VERSION-all.jar`
Building Hirasawa Bancho is very easy, for building testing builds `gradle shadow` will output to
`build/libs/HirasawaBancho-VERSION-all.jar`

## Contribution
Hirasawa is completely open to contribution, please feel free to open tickets or work on what we currently have in the
Hirasawa Bancho is completely open to contribution, please feel free to open tickets or work on what we currently have in the
backlog

The language used in the project is British English, this won't impact language shown to the user but we'd prefer
keeping the internal language consistent as possible

## Licencing
Hirasawa Project is licenced under the MIT licence so do with it as you please
Hirasawa Bancho is licenced under the MIT licence so do with it as you please
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ test {
shadowJar {
relocate 'junit.framework', 'shadow.junit'
manifest {
attributes 'Main-Class': 'io.hirasawa.server.HirasawaProjectKt'
attributes 'Main-Class': 'io.hirasawa.server.HirasawaBanchoKt'
attributes 'Implementation-Version': project.version
}
}
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
rootProject.name = 'HirasawaProject'
rootProject.name = 'HirasawaBancho'

Original file line number Diff line number Diff line change
@@ -1,12 +1,7 @@
package io.hirasawa.server

import io.hirasawa.server.chat.ChatChannel
import io.hirasawa.server.chat.ChatChannelMetadata
import io.hirasawa.server.chat.GlobalChatChannel
import io.hirasawa.server.chat.channel.ConsoleChannel
import io.hirasawa.server.chat.command.ConsoleCommandSender
import io.hirasawa.server.chat.enums.ChatChannelVisibility
import io.hirasawa.server.objects.UserMap
import io.hirasawa.server.plugin.internalplugins.InternalBanchoPlugin
import io.hirasawa.server.plugin.internalplugins.InternalIrcPlugin
import io.hirasawa.server.threads.CacheInvalidationThread
Expand All @@ -15,7 +10,7 @@ import java.io.File
import java.util.concurrent.Executors

fun main() {
println("Starting Hirasawa v${Hirasawa.version}")
println("Starting Hirasawa Bancho v${Hirasawa.version}")
Hirasawa.initDatabase()
// Register internal plugins, these are used to separate out our functionality so users can disable if needed
Hirasawa.pluginManager.loadPlugin(InternalBanchoPlugin(), InternalBanchoPlugin.descriptor)
Expand Down

0 comments on commit c56c97c

Please sign in to comment.