diff --git a/README.md b/README.md index 29ad958..df2cb9a 100644 --- a/README.md +++ b/README.md @@ -4,12 +4,12 @@ README LANGUAGES [ [**English**](README.md) | [中文](README_CN.md) ] -![CodeSize](https://img.shields.io/github/languages/code-size/ArtformGames/TemplateSinglePlugin) -[![Download](https://img.shields.io/github/downloads/ArtformGames/TemplateSinglePlugin/total)](https://github.com/ArtformGames/TemplateSinglePlugin/releases) -[![Java CI with Maven](https://github.com/ArtformGames/TemplateSinglePlugin/actions/workflows/maven.yml/badge.svg?branch=master)](https://github.com/ArtformGames//actions/workflows/maven.yml) +![CodeSize](https://img.shields.io/github/languages/code-size/ArtformGames/TempFlight) +[![Download](https://img.shields.io/github/downloads/ArtformGames/TempFlight/total)](https://github.com/ArtformGames/TempFlight/releases) +[![Java CI with Maven](https://github.com/ArtformGames/TempFlight/actions/workflows/maven.yml/badge.svg?branch=master)](https://github.com/ArtformGames//actions/workflows/maven.yml) ![Support](https://img.shields.io/badge/Minecraft-Java%201.16--Latest-green) -# **TemplateSinglePlugin** +# **TempFlight** > Slogan @@ -24,11 +24,11 @@ Descriptions - **[Recommend]** Placeholders based on [PlaceholderAPI](https://www.spigotmc.org/resources/6245/) . For development dependencies, please -see [Dependencies](https://github.com/ArtformGames/TemplateSinglePlugin/network/dependencies) . +see [Dependencies](https://github.com/ArtformGames/TempFlight/network/dependencies) . ## Commands -The main command is `/TemplateSinglePlugin` or `/tsp`. +The main command is `/TempFlight` or `/tsp`. ```text @@ -51,7 +51,7 @@ Will be generated on the first boot up. ## Permissions ```text -# TemplateSinglePlugin.admin +# TempFlight.admin - The permissions for all admin commands and functions. ``` @@ -68,5 +68,5 @@ The source code of this project adopts the [GNU General Public License v3.0](htt This project is mainly developed by the [Artfrom Games](https://github.com/ArtformGames/) . Many thanks to Jetbrains for kindly providing a license for us to work on this and other open-source projects. -[![](https://resources.jetbrains.com/storage/products/company/brand/logos/jb_beam.svg)](https://www.jetbrains.com/?from=https://github.com/ArtformGames/TemplateSinglePlugin) +[![](https://resources.jetbrains.com/storage/products/company/brand/logos/jb_beam.svg)](https://www.jetbrains.com/?from=https://github.com/ArtformGames/TempFlight) diff --git a/pom.xml b/pom.xml index 870adcf..cea0fd8 100644 --- a/pom.xml +++ b/pom.xml @@ -14,14 +14,14 @@ 1.0.0 com.artformgames - TemplateSinglePlugin + tempflight 1.0.0 - TemplateSinglePlugin + TempFlight - https://github.com/ArtformGames/TemplateSinglePlugin + https://github.com/ArtformGames/TempFlight @@ -50,20 +50,20 @@ GitHub Actions - https://github.com/ArtformGames/TemplateSinglePlugin/actions/workflows/maven.yml + https://github.com/ArtformGames/TempFlight/actions/workflows/maven.yml - https://github.com/ArtformGames/TemplateSinglePlugin/releases + https://github.com/ArtformGames/TempFlight/releases github GitHub Packages - https://maven.pkg.github.com/ArtformGames/TemplateSinglePlugin + https://maven.pkg.github.com/ArtformGames/TempFlight github GitHub Packages - https://maven.pkg.github.com/ArtformGames/TemplateSinglePlugin + https://maven.pkg.github.com/ArtformGames/TempFlight diff --git a/src/main/java/com/artformgames/plugin/template/Main.java b/src/main/java/com/artformgames/plugin/tempflight/Main.java similarity index 91% rename from src/main/java/com/artformgames/plugin/template/Main.java rename to src/main/java/com/artformgames/plugin/tempflight/Main.java index 1005ba0..b0b4507 100644 --- a/src/main/java/com/artformgames/plugin/template/Main.java +++ b/src/main/java/com/artformgames/plugin/tempflight/Main.java @@ -1,10 +1,10 @@ -package com.artformgames.plugin.template; +package com.artformgames.plugin.tempflight; import cc.carm.lib.easyplugin.EasyPlugin; import cc.carm.lib.mineconfiguration.bukkit.MineConfiguration; import com.artformgames.core.utils.GHUpdateChecker; -import com.artformgames.plugin.template.conf.PluginConfig; -import com.artformgames.plugin.template.conf.PluginMessages; +import com.artformgames.plugin.tempflight.conf.PluginConfig; +import com.artformgames.plugin.tempflight.conf.PluginMessages; import org.bstats.bukkit.Metrics; public class Main extends EasyPlugin { diff --git a/src/main/java/com/artformgames/plugin/template/conf/PluginConfig.java b/src/main/java/com/artformgames/plugin/tempflight/conf/PluginConfig.java similarity index 96% rename from src/main/java/com/artformgames/plugin/template/conf/PluginConfig.java rename to src/main/java/com/artformgames/plugin/tempflight/conf/PluginConfig.java index 0a5bbd1..52e2529 100644 --- a/src/main/java/com/artformgames/plugin/template/conf/PluginConfig.java +++ b/src/main/java/com/artformgames/plugin/tempflight/conf/PluginConfig.java @@ -1,4 +1,4 @@ -package com.artformgames.plugin.template.conf; +package com.artformgames.plugin.tempflight.conf; import cc.carm.lib.configuration.core.ConfigurationRoot; import cc.carm.lib.configuration.core.annotation.HeaderComment; diff --git a/src/main/java/com/artformgames/plugin/template/conf/PluginMessages.java b/src/main/java/com/artformgames/plugin/tempflight/conf/PluginMessages.java similarity index 70% rename from src/main/java/com/artformgames/plugin/template/conf/PluginMessages.java rename to src/main/java/com/artformgames/plugin/tempflight/conf/PluginMessages.java index 9b524fa..68c641a 100644 --- a/src/main/java/com/artformgames/plugin/template/conf/PluginMessages.java +++ b/src/main/java/com/artformgames/plugin/tempflight/conf/PluginMessages.java @@ -1,4 +1,4 @@ -package com.artformgames.plugin.template.conf; +package com.artformgames.plugin.tempflight.conf; import cc.carm.lib.configuration.core.ConfigurationRoot;