Skip to content

Commit

Permalink
1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
SirDank committed Feb 21, 2025
1 parent 0baa21f commit 73e153d
Show file tree
Hide file tree
Showing 57 changed files with 824 additions and 2,563 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,4 @@
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
replay_pid*
*.jar
15 changes: 7 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,15 @@

## ♦️ commands ♦️

- /chatroom-login
- /chatroom-connect
- /chatroom-disconnect

## ♦️ direct download ♦️

URL: https://github.com/SirDank/dank.chatroom-plugin/raw/main/Visual%20Bukkit%20Project/Build/target/dankchatroom.jar
- /chatroom-username
- /chatroom-users

## ♦️ diagram ♦️

<br><p align="center"><img width="800" alt="image" src="https://github.com/SirDank/dank.chatroom-plugin/assets/52797753/bdc4ebc0-2028-4b13-8967-b09be943b9d9"></p><br>
<br><p align="center"><img width="800" alt="image" src="https://github.com/user-attachments/assets/b4930430-17c6-4d26-a292-bbc92ea64f43"></p><br>

## ♦️ dank.chatroom-plugin preview ♦️

Expand All @@ -30,16 +29,16 @@ URL: https://github.com/SirDank/dank.chatroom-plugin/raw/main/Visual%20Bukkit%20

## ♦️ dank.tool preview ♦️

<br><p align="center"><a href="https://github.com/SirDank/dank.tool"><img width="800" alt="image" src="https://github.com/SirDank/dank.tool/assets/52797753/ded02b28-8e3a-4a0b-aae0-1d09ba72e8e0"></p></a><br>
<br><p align="center"><a href="https://github.com/SirDank/dank.tool"><img width="800" alt="image" src="https://github.com/SirDank/dank.tool/assets/52797753/99caab6e-68ee-4d8e-91f1-b85b6df7220e"></p></a><br>

## ♦️ visual bukkit preview ♦️

<br><p align="center"><a href="https://github.com/OfficialDonut/VisualBukkit"><img width="800" alt="image" src="https://camo.githubusercontent.com/f124fc198b8e16d1c4e7ebf540e19491e5db60bfbae014d05c4e537e568e55c8/68747470733a2f2f692e696d6775722e636f6d2f365039685237762e706e67"></p></a><br>
<br><p align="center"><a href="https://github.com/OfficialDonut/VisualBukkit"><img width="800" alt="image" src="https://i.imgur.com/NvKdV9G.png"></p></a><br>

## ♦️ bStats ♦️

<br><p align="center">[![BStats Metrics](https://bstats.org/signatures/bukkit/dank-chatroom.svg)](https://bstats.org/plugin/bukkit/dank-chatroom/19689)</p><br>

## ♦️ Also check out dank.resourcepack! ♦️

- https://github.com/SirDank/dank.resource-pack
- <https://github.com/SirDank/dank.resource-pack>
45 changes: 9 additions & 36 deletions Visual Bukkit Project/Build/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,57 +6,30 @@

<groupId>vb</groupId>
<artifactId>dankchatroom</artifactId>
<version>1.0.6</version>
<version>1.1.0</version>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
</properties>

<repositories>
<repository>
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>

<repository><id>papermc</id><url>https://repo.papermc.io/repository/maven-public/</url></repository>
</repositories>

<dependencies>
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<version>1.20.1-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>

<dependency><groupId>io.papermc.paper</groupId><artifactId>paper-api</artifactId><version>1.21.4-R0.1-SNAPSHOT</version><scope>provided</scope><exclusions><exclusion><groupId>io.papermc.paper</groupId><artifactId>paper-api</artifactId></exclusion><exclusion><groupId>org.spigotmc</groupId><artifactId>spigot-api</artifactId></exclusion><exclusion><groupId>org.bukkit</groupId><artifactId>bukkit</artifactId></exclusion></exclusions></dependency>
<dependency><groupId>org.bstats</groupId><artifactId>bstats-bukkit</artifactId><version>3.1.0</version><scope>compile</scope><exclusions><exclusion><groupId>io.papermc.paper</groupId><artifactId>paper-api</artifactId></exclusion><exclusion><groupId>org.spigotmc</groupId><artifactId>spigot-api</artifactId></exclusion><exclusion><groupId>org.bukkit</groupId><artifactId>bukkit</artifactId></exclusion></exclusions></dependency>
<dependency><groupId>io.socket</groupId><artifactId>socket.io-client</artifactId><version>2.1.1</version><scope>compile</scope><exclusions><exclusion><groupId>io.papermc.paper</groupId><artifactId>paper-api</artifactId></exclusion><exclusion><groupId>org.spigotmc</groupId><artifactId>spigot-api</artifactId></exclusion><exclusion><groupId>org.bukkit</groupId><artifactId>bukkit</artifactId></exclusion></exclusions></dependency>
</dependencies>

<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<compilerId>eclipse</compilerId>
</configuration>
<dependencies>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-compiler-eclipse</artifactId>
<version>2.8.8</version>
</dependency>
</dependencies>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.4</version>
<version>3.5.1</version>
<executions>
<execution>
<phase>package</phase>
Expand All @@ -68,4 +41,4 @@
</plugin>
</plugins>
</build>
</project>
</project>
Loading

0 comments on commit 73e153d

Please sign in to comment.