diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ea7188e --- /dev/null +++ b/.gitignore @@ -0,0 +1,48 @@ +# Windows image file caches +Thumbs.db +ehthumbs.db + +# Folder config file +Desktop.ini + +# Recycle Bin used on file shares +$RECYCLE.BIN/ + +# Windows Installer files +*.cab +*.msi +*.msm +*.msp + +# ========================= +# Operating System Files +# ========================= + +# OSX +# ========================= + +.DS_Store +.AppleDouble +.LSOverride + +# Icon must end with two \r +Icon + +# Thumbnails +._* + +# Files that might appear on external disk +.Spotlight-V100 +.Trashes + +# Directories potentially created on remote AFP share +.AppleDB +.AppleDesktop +Network Trash Folder +Temporary Items +.apdisk + +*.classpath +*.project +*.prefs +/target/ \ No newline at end of file diff --git a/resources/plugin.yml b/resources/plugin.yml index 1c2fe26..a24eb47 100644 --- a/resources/plugin.yml +++ b/resources/plugin.yml @@ -2,7 +2,7 @@ name: MinePacks author: GeorgH93 website: http://dev.bukkit.org/bukkit-plugins/minepacks/ main: at.pcgamingfreaks.georgh.MinePacks.MinePacks -version: 1.1.0.0 +version: ${version} commands: backpack: description: Main command diff --git a/src/at/pcgamingfreaks/georgh/MinePacks/Backpack.java b/src/at/pcgamingfreaks/georgh/MinePacks/Backpack.java index 07408f3..b3e7fe4 100644 --- a/src/at/pcgamingfreaks/georgh/MinePacks/Backpack.java +++ b/src/at/pcgamingfreaks/georgh/MinePacks/Backpack.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2014 GeorgH93 + * Copyright (C) 2014-2015 GeorgH93 * * 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 diff --git a/src/at/pcgamingfreaks/georgh/MinePacks/Database/Config.java b/src/at/pcgamingfreaks/georgh/MinePacks/Database/Config.java index 7f53861..bd3993c 100644 --- a/src/at/pcgamingfreaks/georgh/MinePacks/Database/Config.java +++ b/src/at/pcgamingfreaks/georgh/MinePacks/Database/Config.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2014 GeorgH93 + * Copyright (C) 2014-2015 GeorgH93 * * 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 diff --git a/src/at/pcgamingfreaks/georgh/MinePacks/Database/Database.java b/src/at/pcgamingfreaks/georgh/MinePacks/Database/Database.java index 980554f..ec8e206 100644 --- a/src/at/pcgamingfreaks/georgh/MinePacks/Database/Database.java +++ b/src/at/pcgamingfreaks/georgh/MinePacks/Database/Database.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2014 GeorgH93 + * Copyright (C) 2014-2015 GeorgH93 * * 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 diff --git a/src/at/pcgamingfreaks/georgh/MinePacks/Database/Language.java b/src/at/pcgamingfreaks/georgh/MinePacks/Database/Language.java index 7562d06..0ae8442 100644 --- a/src/at/pcgamingfreaks/georgh/MinePacks/Database/Language.java +++ b/src/at/pcgamingfreaks/georgh/MinePacks/Database/Language.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2014 GeorgH93 + * Copyright (C) 2014-2015 GeorgH93 * * 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 diff --git a/src/at/pcgamingfreaks/georgh/MinePacks/Database/MySQL.java b/src/at/pcgamingfreaks/georgh/MinePacks/Database/MySQL.java index dee1cc6..863913e 100644 --- a/src/at/pcgamingfreaks/georgh/MinePacks/Database/MySQL.java +++ b/src/at/pcgamingfreaks/georgh/MinePacks/Database/MySQL.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2014 GeorgH93 + * Copyright (C) 2014-2015 GeorgH93 * * 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 diff --git a/src/at/pcgamingfreaks/georgh/MinePacks/Database/SQLite.java b/src/at/pcgamingfreaks/georgh/MinePacks/Database/SQLite.java index e091b94..575c7e4 100644 --- a/src/at/pcgamingfreaks/georgh/MinePacks/Database/SQLite.java +++ b/src/at/pcgamingfreaks/georgh/MinePacks/Database/SQLite.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2014 GeorgH93 + * Copyright (C) 2014-2015 GeorgH93 * * 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 diff --git a/src/at/pcgamingfreaks/georgh/MinePacks/Database/UUIDConverter.java b/src/at/pcgamingfreaks/georgh/MinePacks/Database/UUIDConverter.java index cffa020..967f4c2 100644 --- a/src/at/pcgamingfreaks/georgh/MinePacks/Database/UUIDConverter.java +++ b/src/at/pcgamingfreaks/georgh/MinePacks/Database/UUIDConverter.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2014 GeorgH93 + * Copyright (C) 2014-2015 GeorgH93 * * 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 diff --git a/src/at/pcgamingfreaks/georgh/MinePacks/EventListener.java b/src/at/pcgamingfreaks/georgh/MinePacks/EventListener.java index a86d4b2..b6138dc 100644 --- a/src/at/pcgamingfreaks/georgh/MinePacks/EventListener.java +++ b/src/at/pcgamingfreaks/georgh/MinePacks/EventListener.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2014 GeorgH93 + * Copyright (C) 2014-2015 GeorgH93 * * 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 diff --git a/src/at/pcgamingfreaks/georgh/MinePacks/MinePacks.java b/src/at/pcgamingfreaks/georgh/MinePacks/MinePacks.java index eb4d759..194c89a 100644 --- a/src/at/pcgamingfreaks/georgh/MinePacks/MinePacks.java +++ b/src/at/pcgamingfreaks/georgh/MinePacks/MinePacks.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2014 GeorgH93 + * Copyright (C) 2014-2015 GeorgH93 * * 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 diff --git a/src/at/pcgamingfreaks/georgh/MinePacks/OnCommand.java b/src/at/pcgamingfreaks/georgh/MinePacks/OnCommand.java index 1a13ede..b5075fc 100644 --- a/src/at/pcgamingfreaks/georgh/MinePacks/OnCommand.java +++ b/src/at/pcgamingfreaks/georgh/MinePacks/OnCommand.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2014 GeorgH93 + * Copyright (C) 2014-2015 GeorgH93 * * 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