Skip to content

Commit 28fac17

Browse files
committed
Update project description
1 parent 7e3e88c commit 28fac17

File tree

8 files changed

+12
-10
lines changed

8 files changed

+12
-10
lines changed

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22

33
## Description
44

5-
BetterView is a paper plugin and fabric mod for Minecraft servers. It extends the normal view distance
6-
to extreme lengths using asynchronous player processing, chunk caching and direct chunk reading.
5+
BetterView is a high-performance Paper plugin and Fabric mod for Minecraft servers. It extends the normal view distance
6+
without sacrificing server performance using asynchronous player processing, direct chunk reading from disk, and
7+
caching of chunk data.
78

89
## Features
910

@@ -65,7 +66,8 @@ On the first start, this plugin will automatically create a configuration file.
6566
- `cache-duration`: The cache duration for how long extended chunks should be kept in memory (default: `PT5M`,
6667
5 minutes)
6768

68-
Feel free to play around with the chunk generations and chunk sending limits.
69+
Feel free to play around with the chunk generations and chunk sending limits for
70+
an optimal experience on your server setup.
6971

7072
Make sure to adjust the cache duration based on what you use your server for;
7173
for e.g. static lobby servers, you can use a longer cache duration than for dynamic SMP servers.

common/src/main/resources/fabric.mod.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"name": "BetterView Common",
66

77
"icon": "assets/betterview/icon.png",
8-
"description": "Common logic for extending the normal server view distance to extreme lengths",
8+
"description": "Common logic for extending the normal server view distance without sacrificing server performance",
99
"authors": [
1010
"booky10"
1111
],

fabric-1211/src/main/resources/fabric.mod.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
},
1212

1313
"icon": "assets/betterview/icon.png",
14-
"description": "Extends the normal server view distance to extreme lengths for 1.21.1",
14+
"description": "Extends the normal server view distance without sacrificing server performance for 1.21.1",
1515
"authors": [
1616
"booky10"
1717
],

fabric-1213/src/main/resources/fabric.mod.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
},
1212

1313
"icon": "assets/betterview/icon.png",
14-
"description": "Extends the normal server view distance to extreme lengths for 1.21.3",
14+
"description": "Extends the normal server view distance without sacrificing server performance for 1.21.3",
1515
"authors": [
1616
"booky10"
1717
],

fabric-1214/src/main/resources/fabric.mod.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
},
1212

1313
"icon": "assets/betterview/icon.png",
14-
"description": "Extends the normal server view distance to extreme lengths for 1.21.4",
14+
"description": "Extends the normal server view distance without sacrificing server performance for 1.21.4",
1515
"authors": [
1616
"booky10"
1717
],

fabric-1215/src/main/resources/fabric.mod.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
},
1212

1313
"icon": "assets/betterview/icon.png",
14-
"description": "Extends the normal server view distance to extreme lengths for 1.21.5",
14+
"description": "Extends the normal server view distance without sacrificing server performance for 1.21.5",
1515
"authors": [
1616
"booky10"
1717
],

fabric/src/main/resources/fabric.mod.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
},
1212

1313
"icon": "assets/betterview/icon.png",
14-
"description": "Extends the normal server view distance to extreme lengths",
14+
"description": "Extends the normal server view distance without sacrificing server performance",
1515
"authors": [
1616
"booky10"
1717
],

paper/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ tasks.named("assemble") {
5252
configure<BukkitPluginDescription> {
5353
name = rootProject.name
5454
main = "${project.group}.BetterViewPlugin"
55-
description = "Extends the normal server view distance to extreme lengths"
55+
description = "Extends the normal server view distance without sacrificing server performance"
5656
authors = listOf("booky10")
5757
website = "https://minceraft.dev/betterview"
5858
apiVersion = "1.21.1"

0 commit comments

Comments
 (0)