deploy: 8e4948d5b3
This commit is contained in:
parent
077d8b5b12
commit
8a1fec1547
13 changed files with 207 additions and 127 deletions
|
|
@ -72,6 +72,7 @@ code {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
overflow-x: auto;
|
overflow-x: auto;
|
||||||
|
font-size: .8em;
|
||||||
}
|
}
|
||||||
|
|
||||||
input, select {
|
input, select {
|
||||||
|
|
@ -93,6 +94,10 @@ hr {
|
||||||
margin-bottom: 1em;
|
margin-bottom: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
h1, h2, h3, h4, h5, h6 {
|
||||||
|
text-shadow: 2px 6px 5px rgba(0,0,0,0.2), 0px -4px 10px rgba(0,0,0,0.3);
|
||||||
|
}
|
||||||
|
|
||||||
#linksBox {
|
#linksBox {
|
||||||
padding: 2em;
|
padding: 2em;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
@ -184,6 +189,16 @@ hr {
|
||||||
-webkit-box-orient: vertical
|
-webkit-box-orient: vertical
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.oneLineClamp {
|
||||||
|
overflow: hidden;
|
||||||
|
width: 100%;
|
||||||
|
display: -webkit-box;
|
||||||
|
height: 1em;
|
||||||
|
line-clamp: 1;
|
||||||
|
-webkit-line-clamp: 1;
|
||||||
|
-webkit-box-orient: vertical
|
||||||
|
}
|
||||||
|
|
||||||
.featuredProjectSubtitle {
|
.featuredProjectSubtitle {
|
||||||
padding-bottom: 0px;
|
padding-bottom: 0px;
|
||||||
}
|
}
|
||||||
|
|
@ -235,6 +250,7 @@ h1, h2, h3 {
|
||||||
color: transparent;
|
color: transparent;
|
||||||
animation: rainbow_animation 6s ease-in-out infinite;
|
animation: rainbow_animation 6s ease-in-out infinite;
|
||||||
background-size: 400% 100%;
|
background-size: 400% 100%;
|
||||||
|
text-shadow: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
@keyframes rainbow_animation {
|
@keyframes rainbow_animation {
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,7 @@
|
||||||
</aside>
|
</aside>
|
||||||
<div id="project">
|
<div id="project">
|
||||||
<div id="projectHeader">
|
<div id="projectHeader">
|
||||||
<img src="logo.png">
|
<img src=".">
|
||||||
<div id="projectTitleSubtitle">
|
<div id="projectTitleSubtitle">
|
||||||
<div id="projectTitleAuthor">
|
<div id="projectTitleAuthor">
|
||||||
<h1 id="projectTitle">tenkuma</h1>
|
<h1 id="projectTitle">tenkuma</h1>
|
||||||
|
|
|
||||||
|
|
@ -52,13 +52,27 @@
|
||||||
<ul>
|
<ul>
|
||||||
<li><em>images</em> - lists of image files names or URLs that will appear in the project page.</li>
|
<li><em>images</em> - lists of image files names or URLs that will appear in the project page.</li>
|
||||||
<li><em>logo</em> - your logo file name or URL.</li>
|
<li><em>logo</em> - your logo file name or URL.</li>
|
||||||
|
<li><em>gameVersions</em> - taget Minecraft versions.</li>
|
||||||
|
<li><em>gameLoaders</em> - supported modloaders.</li>
|
||||||
</ul>
|
</ul>
|
||||||
<h3>Releases metadata</h3>
|
<h3>Releases metadata</h3>
|
||||||
<ul>
|
<ul>
|
||||||
<li><em>releasesType</em> - wheter your project uses <code>local</code> releases or <code>github</code>.
|
<li><em>releasesType</em> - wheter your project uses <code>local</code> releases or <code>github</code>.</li>
|
||||||
For local releases:</li>
|
</ul>
|
||||||
|
<p>For local releases:</p>
|
||||||
|
<ul>
|
||||||
<li><em>releases</em> - a list of relases labels and links.
|
<li><em>releases</em> - a list of relases labels and links.
|
||||||
For GitHub releases:</li>
|
<ul>
|
||||||
|
<li><em>name</em> - name of the release.</li>
|
||||||
|
<li><em>version</em> - version of the release.</li>
|
||||||
|
<li><em>gameVersions</em> - taget Minecraft versions (overrides default value).</li>
|
||||||
|
<li><em>gameLoaders</em> - supported modloaders (overrides default value).</li>
|
||||||
|
<li><em>downloads</em> - list of download links for this release.</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<p>For GitHub releases:</p>
|
||||||
|
<ul>
|
||||||
<li><em>githubRepoOwner</em> - username of the repo owner.</li>
|
<li><em>githubRepoOwner</em> - username of the repo owner.</li>
|
||||||
<li><em>githubReponame</em> - name of the repository.</li>
|
<li><em>githubReponame</em> - name of the repository.</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
@ -81,10 +95,20 @@ For GitHub releases:</li>
|
||||||
"releaseType": "github or local",
|
"releaseType": "github or local",
|
||||||
"githubRepoOwner": "adrianvic",
|
"githubRepoOwner": "adrianvic",
|
||||||
"githubRepoName": "ghostsandstuff",
|
"githubRepoName": "ghostsandstuff",
|
||||||
"releases": {
|
"gameLoaders": ["Craftbukkit"]
|
||||||
"test release": "https://example.com/"
|
"releases": [
|
||||||
|
{
|
||||||
|
"name": "The first release.",
|
||||||
|
"version": "1.0.0",
|
||||||
|
"gameVersions": ["b1.7.3"],
|
||||||
|
"downloads": {
|
||||||
|
"GitHub": "https://example.com",
|
||||||
|
"Modrinth": "https://modrinth.com"
|
||||||
}
|
}
|
||||||
}```</code></pre>
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
</code></pre>
|
||||||
|
|
||||||
</main>
|
</main>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
98
index.html
98
index.html
|
|
@ -81,96 +81,6 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="featuredProject">
|
|
||||||
<a href="/neoBeta/projects/aboukkit">
|
|
||||||
|
|
||||||
<img src="/neoBeta/projects/aboukkit/logo.png">
|
|
||||||
|
|
||||||
</a>
|
|
||||||
<div>
|
|
||||||
<p class="featuredProjectName">Aboukkit</p>
|
|
||||||
<p class="featuredProjectSubtitle">by <a href="/neoBeta/authors/tenkuma/">tenkuma</a></p>
|
|
||||||
<div class="featuredProjectSubtitle dimText">A simple way to add custom commands with custom responses to your server.</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="featuredProject">
|
|
||||||
<a href="/neoBeta/projects/tenkumalib">
|
|
||||||
|
|
||||||
<img src="/neoBeta/projects/tenkumalib/logo.png">
|
|
||||||
|
|
||||||
</a>
|
|
||||||
<div>
|
|
||||||
<p class="featuredProjectName">tenkuma's Library</p>
|
|
||||||
<p class="featuredProjectSubtitle">by <a href="/neoBeta/authors/tenkuma/">tenkuma</a></p>
|
|
||||||
<div class="featuredProjectSubtitle dimText">Library to support my other plugins. Does nothing on it's own.</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="featuredProject">
|
|
||||||
<a href="/neoBeta/projects/hangglidere">
|
|
||||||
|
|
||||||
<img src="/neoBeta/assets/mod-placeholder.png">
|
|
||||||
|
|
||||||
</a>
|
|
||||||
<div>
|
|
||||||
<p class="featuredProjectName">HangGlideRE</p>
|
|
||||||
<p class="featuredProjectSubtitle">by <a href="/neoBeta/authors/tenkuma/">tenkuma</a></p>
|
|
||||||
<div class="featuredProjectSubtitle dimText">Fly with a chicken!</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="featuredProject">
|
<div class="featuredProject">
|
||||||
|
|
@ -264,7 +174,13 @@
|
||||||
</div>
|
</div>
|
||||||
<div id="homeUpdates">
|
<div id="homeUpdates">
|
||||||
<h2>Latest updates</h2>
|
<h2>Latest updates</h2>
|
||||||
<p>2025-10-27: Website redesign!<br>Yaaay! neoBeta got a stylish redesign.</p>
|
|
||||||
|
<p>2025-10-30 Releases support:</p>
|
||||||
|
<p style="opacity: .8;">Now developers can list their software version and automatically list their GitHub releases in their project page!</p>
|
||||||
|
|
||||||
|
<p>2025-10-27 Website redesign!:</p>
|
||||||
|
<p style="opacity: .8;">Yaaay! neoBeta got a stylish redesign.</p>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</main>
|
</main>
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,27 @@
|
||||||
</div>
|
</div>
|
||||||
<p id="projectSubtitle">A simple way to add custom commands with custom responses to your server.</p>
|
<p id="projectSubtitle">A simple way to add custom commands with custom responses to your server.</p>
|
||||||
</div>
|
</div>
|
||||||
<a id="downloadLink" href="releases"><button id="downloadButton">Download</button></a>
|
<a id="downloadLink" href="releases"><button id="downloadButton">Unavailable</button></a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="projectImagesAndInfo">
|
||||||
|
|
||||||
|
<div id="projectInfo">
|
||||||
|
<p>Here's what we found about this project:</p>
|
||||||
|
|
||||||
|
<p>3 links.</p>
|
||||||
|
<ul>
|
||||||
|
|
||||||
|
<li><a href="https://modrinth.com/plugin/aboukkit/versions">Modrinth</a></li>
|
||||||
|
|
||||||
|
<li><a href="https://github.com/adrianvic/aboukkit">GitHub</a></li>
|
||||||
|
|
||||||
|
<li><a href="https://git.disroot.org/adrianvictor/aboukkit">Disroot Git</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<main id="projectDescription">
|
<main id="projectDescription">
|
||||||
|
|
|
||||||
|
|
@ -33,10 +33,68 @@
|
||||||
</aside>
|
</aside>
|
||||||
|
|
||||||
<main>
|
<main>
|
||||||
|
|
||||||
<h1>Releases for Aboukkit</h1>
|
<h1>Releases for Aboukkit</h1>
|
||||||
|
|
||||||
|
|
||||||
<p>Could not find any release for this project...</p>
|
<p>This project depends on:
|
||||||
|
|
||||||
|
|
||||||
|
<a href="/neoBeta/projects/tenkumalib/">tenkumalib.</a>
|
||||||
|
|
||||||
|
</p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<p class="rainbowText">3 releases.</p>
|
||||||
|
<div style="display: flex; flex-direction: column; gap: 1em;">
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<h2>Library update</h2>
|
||||||
|
<p>Version 2.1 for Bukkit b1.7.3</p>
|
||||||
|
|
||||||
|
<div style="padding: .6em; background-color: var(--accent-background); border-radius: 4px;">
|
||||||
|
|
||||||
|
<div class="oneLineClamp">
|
||||||
|
<p><a href="https://modrinth.com/plugin/aboukkit/version/2.1">Modrinth <span class="dimText">https://modrinth.com/plugin/aboukkit/version/2.1</span></a></p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<h2>Color update</h2>
|
||||||
|
<p>Version 2.0 for Bukkit b1.7.3</p>
|
||||||
|
|
||||||
|
<div style="padding: .6em; background-color: var(--accent-background); border-radius: 4px;">
|
||||||
|
|
||||||
|
<div class="oneLineClamp">
|
||||||
|
<p><a href="https://modrinth.com/plugin/aboukkit/version/2.0">Modrinth <span class="dimText">https://modrinth.com/plugin/aboukkit/version/2.0</span></a></p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<h2>Vanilla</h2>
|
||||||
|
<p>Version 1.0 for Bukkit b1.7.3</p>
|
||||||
|
|
||||||
|
<div style="padding: .6em; background-color: var(--accent-background); border-radius: 4px;">
|
||||||
|
|
||||||
|
<div class="oneLineClamp">
|
||||||
|
<p><a href="https://modrinth.com/plugin/aboukkit/version/1.0">Modrinth <span class="dimText">https://modrinth.com/plugin/aboukkit/version/1.0</span></a></p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</main>
|
</main>
|
||||||
|
|
|
||||||
|
|
@ -33,9 +33,12 @@
|
||||||
</aside>
|
</aside>
|
||||||
|
|
||||||
<main>
|
<main>
|
||||||
|
|
||||||
<h1>Releases for The Devil Within</h1>
|
<h1>Releases for The Devil Within</h1>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<p>Could not find any release for this project...</p>
|
<p>Could not find any release for this project...</p>
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -33,21 +33,52 @@
|
||||||
</aside>
|
</aside>
|
||||||
|
|
||||||
<main>
|
<main>
|
||||||
|
|
||||||
<h1>Releases for Ghosts 'n Stuff</h1>
|
<h1>Releases for Ghosts 'n Stuff</h1>
|
||||||
|
|
||||||
|
|
||||||
<p id="projectInfoReleases">
|
|
||||||
|
|
||||||
|
|
||||||
Releases fetched from GitHub at 2025-10-29T23:58:05.010Z:<br>
|
|
||||||
|
|
||||||
<p><a href="https://github.com/adrianvic/ghostsandstuff/releases/tag/0.6">Ghosts And Stuff Release 0.6</a></p>
|
|
||||||
|
|
||||||
<p><a href="https://github.com/adrianvic/ghostsandstuff/releases/tag/0.5">Ghosts And Stuff Release 0.5</a></p>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</p>
|
|
||||||
|
<p class="rainbowText">2 releases fetched from GitHub at 2025-10-30T23:40:05.791Z.</p>
|
||||||
|
<div style="display: flex; flex-direction: column; gap: 1em;">
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<h2>Ghosts And Stuff Release 0.6</h2>
|
||||||
|
<p>0.6 for Bukkit b1.7.3</p>
|
||||||
|
<div style="padding: .6em; background-color: var(--accent-background); border-radius: 4px;">
|
||||||
|
<div class="oneLineClamp">
|
||||||
|
<p><a href="https://github.com/adrianvic/ghostsandstuff/releases/tag/0.6">Download on GitHub.</a><p>
|
||||||
|
</div>
|
||||||
|
<div class="oneLineClamp">
|
||||||
|
<p><a href="https://api.github.com/repos/adrianvic/ghostsandstuff/tarball/0.6">Source code tarball <span class="dimText">https://api.github.com/repos/adrianvic/ghostsandstuff/tarball/0.6</span></a></p>
|
||||||
|
</div>
|
||||||
|
<div class="oneLineClamp">
|
||||||
|
<p><a href="https://api.github.com/repos/adrianvic/ghostsandstuff/zipball/0.6">Source code zipball <span class="dimText">https://api.github.com/repos/adrianvic/ghostsandstuff/zipball/0.6</span></a></p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<h2>Ghosts And Stuff Release 0.5</h2>
|
||||||
|
<p>0.5 for Bukkit b1.7.3</p>
|
||||||
|
<div style="padding: .6em; background-color: var(--accent-background); border-radius: 4px;">
|
||||||
|
<div class="oneLineClamp">
|
||||||
|
<p><a href="https://github.com/adrianvic/ghostsandstuff/releases/tag/0.5">Download on GitHub.</a><p>
|
||||||
|
</div>
|
||||||
|
<div class="oneLineClamp">
|
||||||
|
<p><a href="https://api.github.com/repos/adrianvic/ghostsandstuff/tarball/0.5">Source code tarball <span class="dimText">https://api.github.com/repos/adrianvic/ghostsandstuff/tarball/0.5</span></a></p>
|
||||||
|
</div>
|
||||||
|
<div class="oneLineClamp">
|
||||||
|
<p><a href="https://api.github.com/repos/adrianvic/ghostsandstuff/zipball/0.5">Source code zipball <span class="dimText">https://api.github.com/repos/adrianvic/ghostsandstuff/zipball/0.5</span></a></p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</main>
|
</main>
|
||||||
|
|
|
||||||
|
|
@ -33,9 +33,12 @@
|
||||||
</aside>
|
</aside>
|
||||||
|
|
||||||
<main>
|
<main>
|
||||||
|
|
||||||
<h1>Releases for HangGlideRE</h1>
|
<h1>Releases for HangGlideRE</h1>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<p>Could not find any release for this project...</p>
|
<p>Could not find any release for this project...</p>
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -33,9 +33,12 @@
|
||||||
</aside>
|
</aside>
|
||||||
|
|
||||||
<main>
|
<main>
|
||||||
|
|
||||||
<h1>Releases for teFreezer</h1>
|
<h1>Releases for teFreezer</h1>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<p>Could not find any release for this project...</p>
|
<p>Could not find any release for this project...</p>
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -33,9 +33,12 @@
|
||||||
</aside>
|
</aside>
|
||||||
|
|
||||||
<main>
|
<main>
|
||||||
|
|
||||||
<h1>Releases for tenkuma's Library</h1>
|
<h1>Releases for tenkuma's Library</h1>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<p>Could not find any release for this project...</p>
|
<p>Could not find any release for this project...</p>
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -33,9 +33,12 @@
|
||||||
</aside>
|
</aside>
|
||||||
|
|
||||||
<main>
|
<main>
|
||||||
|
|
||||||
<h1>Releases for TimeKeeper</h1>
|
<h1>Releases for TimeKeeper</h1>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<p>Could not find any release for this project...</p>
|
<p>Could not find any release for this project...</p>
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
Loading…
Add table
Add a link
Reference in a new issue