Skip to content

Commit

Permalink
Merge pull request #188 from beanbeanjuice/development
Browse files Browse the repository at this point in the history
v0.5.2 Integration
  • Loading branch information
beanbeanjuice committed Jun 19, 2024
2 parents 20e2f2d + 03e2502 commit a11288b
Show file tree
Hide file tree
Showing 80 changed files with 509 additions and 888 deletions.
9 changes: 9 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#
# https://help.github.com/articles/dealing-with-line-endings/
#
# Linux start script should use lf
/gradlew text eol=lf

# These are Windows script files and should use crlf
*.bat text eol=crlf

2 changes: 1 addition & 1 deletion .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,4 @@ Fixes # (issue)
- [ ] New and existing Maven CI tests have passed.
- [ ] The pull request is properly merging into the correct branch.
- [ ] All existing local code has been pushed to the GitHub repository.
- [ ] Changes have been documented in the current draft [ProxyChat Releases](https://github.com/beanbeanjuice/SimpleProxyChat/releases) update.
- [ ] Changes have been documented in the current draft [SimpleProxyChat Releases](https://github.com/beanbeanjuice/SimpleProxyChat/releases) update.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -127,3 +127,9 @@ modules.order
Module.symvers
Mkfile.old
dkms.conf

# Ignore Gradle project-specific cache directory
.gradle

# Ignore Gradle build output directory
build
23 changes: 19 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,10 @@
# True if you will be using Discord. The reload command does not work with this.
use-discord: false

# Discord Bot Token (IGNORE IF use_discord = false). The reload command does not work with this.
# Discord Bot Token (IGNORE IF use_discord = false).
BOT-TOKEN: "TOKEN_HERE"

# Channel to send Discord messages to (IGNORE IF use_discord = false). The reload command does not work with this.
# Channel to send Discord messages to (IGNORE IF use_discord = false).
CHANNEL-ID: "GLOBAL_CHANNEL_ID"

bot-activity:
Expand Down Expand Up @@ -122,6 +122,7 @@ aliases:
# simpleproxychat.ban - Ban a player from the proxy. ➕
# simpleproxychat.unban - Unban a player from the proxy. ➕
# simpleproxychat.whisper - Whisper to another player on the proxy. ➕
# simpleproxychat.broadcast - Broadcast a message to everyone on the server. ➕
use-permissions: false

# Only messages that start with this character will be sent through the plugin.
Expand Down Expand Up @@ -156,6 +157,13 @@ update-notifications: true
# A FULL PROXY RESTART IS REQUIRED TO USE THIS.
use-simple-proxy-chat-banning-system: false

# This will store and re-send the last few chat messages when a player switches servers.
# This is here because sometimes Velocity/Bungee does not keep the previous messages when switching.
# This WILL retain old formatting if you change the formatting prior to reloading.
send-previous-messages-on-switch:
enabled: false
amount: 15

# These require a restart in order to take place.
commands:
whisper-aliases:
Expand All @@ -164,7 +172,7 @@ commands:
- "spc-r"

# DO NOT TOUCH THIS
file-version: 12
file-version: 13
```

**messages.yml**
Expand Down Expand Up @@ -226,6 +234,9 @@ minecraft:
banned: "%plugin-prefix% &c%player% &7has been banned."
unbanned: "%plugin-prefix% &c%player% &7has been unbanned."
login-message: "&cYou have been banned from the proxy."
broadcast:
usage: "%plugin-prefix% &c/spc-broadcast (message)"
message: "%plugin-prefix% &8[&a&lBROADCAST&r&8] &6%message%"

# Discord Stuff
discord:
Expand Down Expand Up @@ -272,7 +283,7 @@ console:
update-message: "&7There is an update! You are on &c%old%. New version is &a%new%&7: &6%link%"

# DO NOT TOUCH THIS
file-version: 8
file-version: 9
```

---
Expand All @@ -285,6 +296,9 @@ file-version: 8
* `/spc-chat` - Lock/unlock the chat.
* `/spc-whipser` - Send a private message to someone.
* `/spc-reply` - Reply to a private message without specifying a user.
* `/spc-ban` - Ban a player from the proxy.
* `/spc-unban` - Unban a player from the proxy.
* `/spc-broadcast` - Broadcast a message to every player on the network.

---

Expand All @@ -304,6 +318,7 @@ file-version: 8
* `simpleproxychat.ban` - Ban someone.
* `simpleproxychat.unban` - Unban someone.
* `simpleproxychat.whisper` - Private messaging permissions.
* `simpleproxychat.broadcast` - Broadcast a message to everyone on the server.

---

Expand Down
129 changes: 0 additions & 129 deletions SimpleProxyChatHelper/.gitignore

This file was deleted.

9 changes: 0 additions & 9 deletions SimpleProxyChatHelper/README.md

This file was deleted.

79 changes: 0 additions & 79 deletions SimpleProxyChatHelper/build.gradle.kts

This file was deleted.

Empty file.
Binary file not shown.

This file was deleted.

Loading

0 comments on commit a11288b

Please sign in to comment.