Skip to content
This repository was archived by the owner on Jul 24, 2024. It is now read-only.

Commit f6978cf

Browse files
authored
Update README.md
1 parent 9296d6e commit f6978cf

File tree

1 file changed

+62
-2
lines changed

1 file changed

+62
-2
lines changed

README.md

Lines changed: 62 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,62 @@
1-
# clientviewer
2-
A Paper plugin to see the type clients that players use to play on servers
1+
# ClientViewer
2+
[![](https://jitpack.io/v/aivruu/clientviewer.svg)](https://jitpack.io/#aivruu/clientviewer)
3+
![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/aivruu/clientviewer/build)
4+
![GitHub Release](https://img.shields.io/github/v/release/aivruu/clientviewer)
5+
![GitHub Downloads (all assets, all releases)](https://img.shields.io/github/downloads/aivruu/clientviewer/total)
6+
![Modrinth Downloads](https://img.shields.io/modrinth/dt/clientviewer)
7+
8+
`clientviewer` is a Paper plugin that allows to see the information about the client of any player use on your server.
9+
10+
> [!NOTE]\
11+
> As the client is who provide this information, there's the possibility that some clients can modify this
12+
> information to deceive, like provide a non-suspicious brand-name or protocol number, The plugin can block clients with
13+
> invalid, or specific brand-names, but yet there's the possibility that a client can bypass this.
14+
15+
### Documentation
16+
- [Javadoc](https://jitpack.io/com/github/aivruu/clientviewer/latest/javadoc/)
17+
18+
### Features
19+
- Check what clients types and versions use the players.
20+
- Prevent that clients with non-provided brand names can join.
21+
- Prevent that specified clients can join.
22+
23+
## Requirements
24+
- [Paper](https://papermc.io/downloads/paper) 1.19+
25+
- Java 17+
26+
27+
### Download
28+
You can visualize the latest version on the document header, or at the GitHub releases page.
29+
```kotlin
30+
repositories {
31+
maven("https://jitpack.io/")
32+
}
33+
34+
dependencies {
35+
compileOnly("com.github.aivruu:clientviewer:VERSION")
36+
}
37+
```
38+
39+
```xml
40+
<repositories>
41+
<repository>
42+
<id>jitpack-repo</id>
43+
<url>https://jitpack.io/</url>
44+
</repository>
45+
</repositories>
46+
47+
<dependency>
48+
<groupId>com.github.aivruu</groupId>
49+
<artifactId>clientviewer</artifactId>
50+
<version>VERSION</version>
51+
</dependency>
52+
```
53+
54+
### Building
55+
This library use Gradle-Kotlin for project structuration and building.
56+
```
57+
git clone https://github.com/aivruu/clientviewer.git
58+
cd clientviewer
59+
./gradlew build
60+
```
61+
62+
JDK 17 or newer is fully required.

0 commit comments

Comments
 (0)