Skip to content

Commit

Permalink
Update Readme with more info
Browse files Browse the repository at this point in the history
  • Loading branch information
NotMyFault committed Jun 8, 2021
1 parent 8af33a3 commit 5278058
Show file tree
Hide file tree
Showing 10 changed files with 820 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ body:
attributes:
label: PlotHider Version
description: What version of PlotHider are you running? (`/version PlotHider`)
placeholder: "For example: PlotHider version 4.0.1"
placeholder: "For example: PlotHider version 5.0.0"
validations:
required: true

Expand Down
21 changes: 21 additions & 0 deletions HEADER.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
_ _ _ _____ _ _
| | | | | | | __ \| | | |
| |__| | ___ | | ___ | |__) | | ___ | |_ ___
| __ |/ _ \| |/ _ \| ___/| |/ _ \| __/ __|
| | | | (_) | | (_) | | | | (_) | |_\__ \
|_| |_|\___/|_|\___/|_| |_|\___/ \__|___/
HoloPlots PlotSquared addon for Minecraft
Copyright (C) 2021 IntellectualSites

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
674 changes: 674 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

Binary file modified README.md
Binary file not shown.
9 changes: 9 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
import net.minecrell.pluginyml.bukkit.BukkitPluginDescription
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
import org.cadixdev.gradle.licenser.LicenseExtension
import org.cadixdev.gradle.licenser.Licenser

plugins {
java
`java-library`

id("net.minecrell.plugin-yml.bukkit") version "0.4.0"
id("com.github.johnrengelman.shadow") version "7.0.0"
id("org.cadixdev.licenser") version "0.6.0"
}

the<JavaPluginExtension>().toolchain {
Expand Down Expand Up @@ -34,6 +37,12 @@ dependencies {
implementation("org.bstats:bstats-base:2.2.1")
}

configure<LicenseExtension> {
header.set(resources.text.fromFile(file("HEADER.txt")))
include("**/*.java")
newLine.set(false)
}

bukkit {
name = "PlotHider"
main = "com.plotsquared.plothider.PlotHiderPlugin"
Expand Down
23 changes: 23 additions & 0 deletions src/main/java/com/plotsquared/plothider/BlockStorage.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
/*
* _ _ _ _____ _ _
* | | | | | | | __ \| | | |
* | |__| | ___ | | ___ | |__) | | ___ | |_ ___
* | __ |/ _ \| |/ _ \| ___/| |/ _ \| __/ __|
* | | | | (_) | | (_) | | | | (_) | |_\__ \
* |_| |_|\___/|_|\___/|_| |_|\___/ \__|___/
* HoloPlots PlotSquared addon for Minecraft
* Copyright (C) 2021 IntellectualSites
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package com.plotsquared.plothider;

import org.apache.commons.lang.mutable.MutableInt;
Expand Down
23 changes: 23 additions & 0 deletions src/main/java/com/plotsquared/plothider/FlexibleStorage.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
/*
* _ _ _ _____ _ _
* | | | | | | | __ \| | | |
* | |__| | ___ | | ___ | |__) | | ___ | |_ ___
* | __ |/ _ \| |/ _ \| ___/| |/ _ \| __/ __|
* | | | | (_) | | (_) | | | | (_) | |_\__ \
* |_| |_|\___/|_|\___/|_| |_|\___/ \__|___/
* HoloPlots PlotSquared addon for Minecraft
* Copyright (C) 2021 IntellectualSites
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package com.plotsquared.plothider;

import java.util.Arrays;
Expand Down
23 changes: 23 additions & 0 deletions src/main/java/com/plotsquared/plothider/HideFlag.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
/*
* _ _ _ _____ _ _
* | | | | | | | __ \| | | |
* | |__| | ___ | | ___ | |__) | | ___ | |_ ___
* | __ |/ _ \| |/ _ \| ___/| |/ _ \| __/ __|
* | | | | (_) | | (_) | | | | (_) | |_\__ \
* |_| |_|\___/|_|\___/|_| |_|\___/ \__|___/
* HoloPlots PlotSquared addon for Minecraft
* Copyright (C) 2021 IntellectualSites
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package com.plotsquared.plothider;

import com.plotsquared.core.configuration.caption.TranslatableCaption;
Expand Down
23 changes: 23 additions & 0 deletions src/main/java/com/plotsquared/plothider/PacketHandler.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
/*
* _ _ _ _____ _ _
* | | | | | | | __ \| | | |
* | |__| | ___ | | ___ | |__) | | ___ | |_ ___
* | __ |/ _ \| |/ _ \| ___/| |/ _ \| __/ __|
* | | | | (_) | | (_) | | | | (_) | |_\__ \
* |_| |_|\___/|_|\___/|_| |_|\___/ \__|___/
* HoloPlots PlotSquared addon for Minecraft
* Copyright (C) 2021 IntellectualSites
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package com.plotsquared.plothider;

import com.comphenix.protocol.PacketType;
Expand Down
23 changes: 23 additions & 0 deletions src/main/java/com/plotsquared/plothider/PlotHiderPlugin.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
/*
* _ _ _ _____ _ _
* | | | | | | | __ \| | | |
* | |__| | ___ | | ___ | |__) | | ___ | |_ ___
* | __ |/ _ \| |/ _ \| ___/| |/ _ \| __/ __|
* | | | | (_) | | (_) | | | | (_) | |_\__ \
* |_| |_|\___/|_|\___/|_| |_|\___/ \__|___/
* HoloPlots PlotSquared addon for Minecraft
* Copyright (C) 2021 IntellectualSites
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package com.plotsquared.plothider;

import com.plotsquared.bukkit.util.BukkitUtil;
Expand Down

0 comments on commit 5278058

Please sign in to comment.