-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #323 from A5H73Y/7.0
7.0
- Loading branch information
Showing
194 changed files
with
14,044 additions
and
11,151 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
name: Build | ||
|
||
env: | ||
artifact_name: 'Parkour-7.0.0' | ||
release_type: '-SNAPSHOT' | ||
|
||
on: push | ||
|
||
jobs: | ||
build: | ||
name: Build | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repo | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up JDK 11 (LTS) | ||
uses: actions/setup-java@v2 | ||
with: | ||
java-version: '11' | ||
distribution: 'adopt' | ||
cache: maven | ||
|
||
- name: Build with Maven | ||
run: mvn -B clean package | ||
|
||
- name: Create Release | ||
id: create_release | ||
uses: actions/create-release@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
tag_name: v${{ github.ref_name }}${{ env.release_type }}.${{ github.run_number }} | ||
release_name: ${{ env.artifact_name }}${{ env.release_type }}.${{ github.run_number }} | ||
draft: false | ||
prerelease: false | ||
|
||
- name: Upload Release Asset | ||
id: upload-release-asset | ||
uses: actions/upload-release-asset@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_path: target/${{ env.artifact_name }}.jar | ||
asset_name: ${{ env.artifact_name }}${{ env.release_type }}.jar | ||
asset_content_type: application/java-archive | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# 404 - Page Not Found | ||
|
||
!> Sorry about this, the requested page couldn't be found. | ||
Let us know in the Discord, and we will try to fix this asap! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,31 @@ | ||
<!-- docs/_sidebar.md --> | ||
|
||
- [Home](index.md) | ||
|
||
- Essential Information | ||
- Getting Started | ||
- [Introduction](index.md) | ||
- [Commands](essential/commands.md) | ||
- [Permissions](essential/permissions.md) | ||
- [Placeholders](essential/placeholders.md) | ||
- [FAQ](essential/faq.md) | ||
|
||
- Tutorials | ||
- Guides | ||
- [Fresh Install Setup](guides/fresh-install.md) | ||
- [Creating a Course](guides/creating-course.md) | ||
- [Compatible Plugins](guides/compatible-plugins.md) | ||
- [Rewarding the Player](guides/rewarding-player.md) | ||
|
||
- [Fresh Install](tutorials/fresh-install.md) | ||
- [Creating a Course](tutorials/creating-course.md) | ||
- [Configuring a Course](tutorials/configuring-course.md) | ||
- Tutorials | ||
- [Courses](tutorials/parkour-courses.md) | ||
- [ParkourKits](tutorials/parkour-kits.md) | ||
- [Sign Commands](tutorials/sign-commands.md) | ||
- [Rewarding the Player](tutorials/rewarding-player.md) | ||
- [Challenge Mode](tutorials/challenge-mode.md) | ||
- [Lobbies](tutorials/parkour-lobby.md) | ||
- [Players](tutorials/parkour-players.md) | ||
- [ParkourModes](tutorials/parkour-modes.md) | ||
- [Level & Ranks](tutorials/parkour-level-ranks.md) | ||
- [AutoStarts](tutorials/parkour-autostart.md) | ||
- [Administration](tutorials/administration.md) | ||
- [Plugin Configuration](tutorials/plugin-config.md) | ||
- [Compatible Plugins](tutorials/compatible-plugins.md) | ||
- [Challenge Mode](tutorials/challenge-mode.md) | ||
- [Sign Commands](tutorials/sign-commands.md) | ||
- [Leaderboard Database](tutorials/parkour-database.md) | ||
- [Plugin Configuration](tutorials/parkour-config.md) | ||
|
||
- [Developer Tutorials](developer.md) | ||
- [Changelogs](changelogs.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,65 +1,85 @@ | ||
.markdown-section h1 { | ||
font-size: 3rem; | ||
} | ||
/* html tags */ | ||
|
||
.markdown-section h5 { | ||
font-size: 1.1rem; | ||
img { | ||
max-width: 60%; | ||
} | ||
|
||
.markdown-section h1, .markdown-section h2 { | ||
border-bottom: 1px solid #ccc; | ||
h1.app-name { | ||
display: none; | ||
} | ||
|
||
.markdown-section p { | ||
line-height: 1.6rem; | ||
margin: 1em 0; | ||
font-size: 18px; | ||
h5 { | ||
margin: 0; | ||
} | ||
|
||
.markdown-section details p { | ||
margin: 0.5em auto; | ||
details tbody { | ||
width: 100%; | ||
display: table; | ||
} | ||
|
||
.sidebar ul li a { | ||
font-size: 16px; | ||
details th { | ||
width: 15%; | ||
} | ||
|
||
.content { | ||
padding-top: 0; | ||
details > summary { | ||
background-color: #f8f8f8; | ||
padding: 8px; | ||
border: none; | ||
cursor: pointer; | ||
font-size: 18px; | ||
} | ||
|
||
img { | ||
max-width: 60%; | ||
summary.deprecated { | ||
text-decoration: line-through; | ||
} | ||
|
||
/* docsify */ | ||
|
||
.app-name-link img { | ||
max-width: 30%; | ||
} | ||
|
||
h1.app-name { | ||
display: none; | ||
.markdown-section h1 { | ||
font-size: 3rem; | ||
} | ||
|
||
h5 { | ||
margin: 0; | ||
.markdown-section h2 { | ||
margin: 30px 0 .8rem; | ||
} | ||
|
||
details > summary { | ||
background-color: #f8f8f8; | ||
padding: 8px; | ||
border: none; | ||
cursor: pointer; | ||
font-size: 18px; | ||
.markdown-section h3 { | ||
margin: 20px 0 .6rem; | ||
} | ||
details tbody { | ||
width: 100%; | ||
display: table; | ||
|
||
.markdown-section h5 { | ||
font-size: 1.1rem; | ||
margin-top: 15px; | ||
} | ||
|
||
details th { | ||
width: 15%; | ||
.markdown-section h1, .markdown-section h2 { | ||
border-bottom: 1px solid #ccc; | ||
} | ||
|
||
.markdown-section p { | ||
line-height: 1.6rem; | ||
margin: 1em 0; | ||
font-size: 18px; | ||
} | ||
|
||
.markdown-section details p { | ||
margin: 0.5em 1em; | ||
} | ||
|
||
.markdown-section code { | ||
margin: 0; | ||
} | ||
|
||
.sidebar ul li a { | ||
font-size: 16px; | ||
} | ||
|
||
.content { | ||
padding-top: 0; | ||
} | ||
|
||
|
Oops, something went wrong.