Skip to content

Commit 104cd82

Browse files
committed
Updated wiki to match core update
1 parent 292bdd5 commit 104cd82

File tree

115 files changed

+5445
-9932
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

115 files changed

+5445
-9932
lines changed

.github/workflows/deploy.yml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: Deploy to GitHub Pages
2+
3+
on:
4+
push:
5+
branches:
6+
# - source
7+
# Review gh actions docs if you want to further define triggers, paths, etc
8+
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#on
9+
10+
jobs:
11+
deploy:
12+
name: Deploy to GitHub Pages
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v3
16+
- uses: actions/setup-node@v3
17+
with:
18+
node-version: 18
19+
cache: yarn
20+
21+
- name: Install dependencies
22+
run: yarn install --frozen-lockfile
23+
- name: Build website
24+
run: yarn build
25+
26+
# Popular action to deploy to GitHub Pages:
27+
# Docs: https://github.com/peaceiris/actions-gh-pages#%EF%B8%8F-docusaurus
28+
- name: Deploy to GitHub Pages
29+
uses: peaceiris/actions-gh-pages@v3
30+
with:
31+
github_token: ${{ secrets.GITHUB_TOKEN }}
32+
# Build output to publish to the `gh-pages` branch:
33+
publish_dir: ./build
34+
# The following lines assign commit authorship to the official
35+
# GH-Actions bot for deploys to `gh-pages` branch:
36+
# https://github.com/actions/checkout/issues/13#issuecomment-724415212
37+
# The GH actions bot is used by default if you didn't specify the two fields.
38+
# You can swap them out with your own user credentials.
39+
user_name: github-actions[bot]
40+
user_email: 41898282+github-actions[bot]@users.noreply.github.com

.github/workflows/documentation.yml

Lines changed: 0 additions & 55 deletions
This file was deleted.

.github/workflows/test-deploy.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Test deployment
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- source
7+
push:
8+
branches:
9+
- source
10+
# Review gh actions docs if you want to further define triggers, paths, etc
11+
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#on
12+
13+
jobs:
14+
test-deploy:
15+
name: Test deployment
16+
runs-on: ubuntu-latest
17+
steps:
18+
- uses: actions/checkout@v3
19+
- uses: actions/setup-node@v3
20+
with:
21+
node-version: 18
22+
cache: yarn
23+
24+
- name: Install dependencies
25+
run: yarn install --frozen-lockfile
26+
- name: Test build website
27+
run: yarn build

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,3 @@
1818
npm-debug.log*
1919
yarn-debug.log*
2020
yarn-error.log*
21-

README.md

Lines changed: 22 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,41 @@
1-
# Plugily Projects Page
2-
3-
This repository represents https://wiki.plugily.xyz
4-
51
# Website
62

7-
This website is built using [Docusaurus 2](https://v2.docusaurus.io/), a modern static website generator.
3+
This website is built using [Docusaurus 2](https://docusaurus.io/), a modern static website generator.
84

9-
## Installation
5+
### Installation
106

11-
```console
12-
yarn install
7+
```
8+
$ yarn
139
```
1410

15-
## Local Development
11+
### Local Development
1612

17-
```console
18-
yarn start
13+
```
14+
$ yarn start
1915
```
2016

21-
This command starts a local development server and open up a browser window. Most changes are reflected live without having to restart the server.
17+
This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.
2218

23-
## Build
19+
### Build
2420

25-
```console
26-
yarn build
21+
```
22+
$ yarn build
2723
```
2824

2925
This command generates static content into the `build` directory and can be served using any static contents hosting service.
3026

31-
## Deployment
27+
### Deployment
28+
29+
Using SSH:
3230

33-
```console
34-
GIT_USER=<Your GitHub username> USE_SSH=true yarn deploy
31+
```
32+
$ USE_SSH=true yarn deploy
33+
```
34+
35+
Not using SSH:
36+
37+
```
38+
$ GIT_USER=<Your GitHub username> yarn deploy
3539
```
3640

3741
If you are using GitHub pages for hosting, this command is a convenient way to build the website and push to the `gh-pages` branch.

blog/2021-02-28-new-wiki.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
---
22
slug: new-wiki
33
title: Introducing our new Wiki
4-
author: Tigerpanzer_02
5-
author_title: Manager of Plugily Projects
6-
author_url: https://github.com/Tigerpanzer02
7-
author_image_url: https://avatars.githubusercontent.com/u/37453987?s=460&v=4
4+
authors: [tigerpanzer_02]
85
tags: [welcome, plugily projects, new wiki]
96
---
107

blog/2021-08-20-summerbreak2021.mdx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
---
22
slug: summerbreak2021
33
title: Summerbreak 21
4-
author: Tigerpanzer_02
5-
author_title: Manager of Plugily Projects
6-
author_url: https://github.com/Tigerpanzer02
7-
author_image_url: https://avatars.githubusercontent.com/u/37453987?s=460&v=4
4+
authors: [tigerpanzer_02]
85
hide_table_of_contents: false
96
tags: [summerbreak, plugily projects, plugily, news, betatester, planned]
107
---
Lines changed: 102 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,102 @@
1+
---
2+
slug: next-generation
3+
title: Next Generation - Minigame Core
4+
authors: [tigerpanzer_02]
5+
tags: [minigame core, 1.20 update, 1.19 update, 1.18 update, plugily projects, plugily, news, betatester, planned]
6+
---
7+
:::info Minecraft version compatibility
8+
The core update introduces 1.18 to 1.20 added support while maintaining our legacy versions still. Our plugins supports 1.8.8+ and java8!
9+
10+
We strongly recommend to update your minecraft and java versions shortly as we are (like the spigot community) dropping support requests for 1.18 and lower versions. They will still remain but may not work in the future! May you would need a spigot fork to be compatible with a more recent version of java!
11+
12+
It won't take long and java 17 will be a requirement!
13+
:::
14+
15+
:::danger Plugin Updating - New arena configuration needed
16+
On updating your plugins with the new core update you should make sure to take a **backup**! Our plugin tries to save all old configurations to a new folder, but you need to manually set it up again (**especially the arena setup!**).
17+
18+
**WE STRONGLY *RECOMMEND* TO HANDLE THE PLUGIN UPDATES AS YOU WOULD INSTALL A NEW PLUGIN!**
19+
:::
20+
21+
:::danger CORE UPDATE ROLLOUT - FULL ROLLOUT UNTIL AUGUST!
22+
We published Release Candidates to SPIGOTMC which will be there until tutorial videos, wiki and patreon addons gets fully updated.
23+
:::
24+
25+
**Throwback**
26+
27+
We started 2021 with the transformation to the core. At the end its a one man development why it takes so long. (You want to help, Write me fast, Now). Its free-time basis which sometimes in life got limited due to obvious reasons happen in life such as uni, illness, whatever you know better than me ;).
28+
29+
**Minigame Core**
30+
31+
As you have already seen above, we implemented the core finally! yeah. Its now way more easier to maintain and update all of our minigame plugins!
32+
33+
34+
**Planned**
35+
:::note In short
36+
Currently we want to enhance the experience with our plugins by adding new stuff to them and make the user experience easier.
37+
:::
38+
39+
import Tabs from '@theme/Tabs';
40+
41+
import TabItem from '@theme/TabItem';
42+
43+
:::tip We got several stuff on our todo
44+
45+
<Tabs
46+
defaultValue="feedbacky"
47+
values={[
48+
{label: 'Feedbacky - Plugin Updates', value: 'feedbacky'},
49+
{label: 'New Beta Programm', value: 'beta'},
50+
{label: 'Tails v3', value: 'tails'},
51+
{label: 'Websites', value: 'web'},
52+
]}>
53+
<TabItem value="feedbacky">
54+
Goal: Convert your posted ideas into actual code!
55+
56+
How: Next updates will be focused on user requests provided from you by feedbacky.
57+
</TabItem>
58+
<TabItem value="beta">
59+
The beta program is now going (again) into **summer break.** We thank you for all the help over the last years! Currently we don't like the beta program anymore. It does not meet our quality standards anymore. We are thinking deeply and will start with a completely new system in the future. This new system will improve the contact between testers and plugily. It will optimize processes and the usefulness of a beta release.
60+
61+
*Current process:*
62+
1 A beta is released
63+
2 Almost no feedback
64+
65+
*Use at the moment:*
66+
- Almost none for both sides
67+
68+
**Future flow:**
69+
70+
1 Different roles of testers (currently there are internal and beta testers - future: DEV TESTERS and BETA TESTERS)
71+
72+
2a DEV TESTERS will work hand in hand with Plugily in direct contact (more effort)
73+
74+
2b BETA TESTERS will work in close contact with Plugily (less effort)
75+
76+
3 Feedback will be collected through one point of contact
77+
78+
4 Feedback will be evaluated or assessed
79+
80+
5 Feedback will be implemented
81+
82+
**Future benefit:**
83+
- mutual commitment to a common goal
84+
- Feedback flows directly into development
85+
86+
87+
**Will I be a beta tester in the future?**
88+
- Currently the new system is still in the thinking phase, so we plan that all beta testers can also be a beta tester in the new system.
89+
- There will be a choice of roles in the new system, so it will be your own interest
90+
- It will be extensively documented, from which you can deduce if you want to be a beta tester in the new system.
91+
92+
93+
**How can I help atm until new platform get released?**
94+
- You can always try a automatically generated SNAPSHOT version and tell us if the feature for the SNAPSHOT version works or not on the correct discord channel
95+
- SNAPSHOT versions can be downloaded (soon) by using latest channel on https://download.plugily.xyz
96+
97+
</TabItem>
98+
<TabItem value="tails">Currently our Bot Tails is at his 2. Generation. We will try to start the 3. Generation of Tails with a lot of new and additional stuff that was never seen anywhere before. It doesn't only contain ticket improvements and a working verification system. It also includes some currency module to earn points with activity that can be used to claim one patreon addon as prize.</TabItem>
99+
<TabItem value="web">We are creating and redesigning all our web pages to be more simple and modern. There will be a lot of internal and external new platforms that will help with the communication beetween you and us</TabItem>
100+
</Tabs>
101+
102+
:::

blog/authors.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
tigerpanzer_02:
2+
name: Tigerpanzer_02
3+
title: Manager of Plugily Projects
4+
url: https://github.com/Tigerpanzer02
5+
image_url: https://avatars.githubusercontent.com/u/37453987?s=460&v=4

docs/buildbattle/addon/cmdsandperms.md

Lines changed: 0 additions & 20 deletions
This file was deleted.

0 commit comments

Comments
 (0)