forked from KadeArchive/Kade-Engine
-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/KadeDev/Kade-Engine into …
…KadeDev-master
- Loading branch information
Showing
30 changed files
with
1,203 additions
and
924 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,22 @@ | ||
# Addressing Various Topics Related to Issues &/Or Discussions | ||
|
||
Read this before making an issue. It pretty much just tells you what and what not to complain about. | ||
## Issues | ||
|
||
### What should go in an issue? | ||
An issue should adhere to one of the two templates, Bug Report or Enhancement. (You can also create from blank but meh) | ||
|
||
An issue should NOT be related to any problems in forks or mods of Kade Engine. | ||
|
||
What the individual issue templates are for is self-explanatory, but please ACTUALLY use them. Don't just leave them blank and put all or partial info in the title. | ||
|
||
|
||
## Discussions | ||
|
||
### What should go in a discussion? | ||
Discussions should be related to mods or forks of Kade Engine, as well as topics related to building the game from source. | ||
|
||
> issues are for suggestions/bugs with kade engine itself, not with forks/mods of it. | ||
|
||
This whole thing was made by Prokube's head and a comment by daniel11420. |
This file was deleted.
Oops, something went wrong.
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file was deleted.
Oops, something went wrong.
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,7 @@ | ||
theme: jekyll-theme-minimal | ||
title: "Kade Engine" | ||
description: "Kade Engine is a mod for Friday Night Funkin', including a full engine rework, replays, and more." | ||
show_downloads: true | ||
replace_index_with: "https://cors-thing.puyo.workers.dev/master/" | ||
logo: "https://github.com/KadeDev/Kade-Engine/raw/master/KadeEngineLogo.png" | ||
url: "https://KadeDev.github.io/Kade-Engine/" |
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,34 @@ | ||
<style> | ||
.headerlink { | ||
background-color: #555; | ||
color: white; | ||
float: none; | ||
border: none; | ||
border-style: none; | ||
outline: none; | ||
cursor: pointer; | ||
padding: 14px 16px; | ||
font-size: 17px; | ||
} | ||
|
||
.headerlink:hover { | ||
background-color: #777; | ||
color: white; | ||
} | ||
|
||
hr { | ||
height: 2px !important; | ||
color: #555 !important; | ||
background-color: #555 !important; | ||
} | ||
</style> | ||
<center> | ||
<p id="HtmlIsTheWorstThingIHaveEverUsed"> | ||
<a class="headerlink" href="{{site.url}}changelogs/">Changelogs</a> | ||
<a class="headerlink" href="{{site.url}}building">Building</a> | ||
<a class="headerlink" href="{{site.url}}modchart">Modcharts</a> | ||
<a class="headerlink" href="{{site.url}}guides">Guides</a> | ||
<br> | ||
<hr> | ||
</p> | ||
</center> |
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,93 @@ | ||
<!DOCTYPE html> | ||
<html lang="{{ site.lang | default: "en-US" }}"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<title>{{page.title}} - Kade Engine</title> | ||
|
||
{% seo %} | ||
<link rel="stylesheet" href="{{ "/assets/css/style.css?v=" | append: site.github.build_revision | relative_url }}"> | ||
<!--[if lt IE 9]> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"></script> | ||
<![endif]--> | ||
</head> | ||
<body> | ||
<div class="wrapper"> | ||
<header> | ||
<h1><a href="{{ site.url }}">{{ site.title | default: site.github.repository_name }}</a></h1> | ||
|
||
{% if site.logo %} | ||
<img src="{{site.logo | relative_url}}" alt="Logo" /> | ||
{% endif %} | ||
|
||
<p>{{ site.description | default: site.github.project_tagline }}</p> | ||
|
||
{% if site.github.is_project_page %} | ||
<p class="view"><a href="{{ site.github.repository_url }}">View the Project on GitHub <small>{{ site.github.repository_nwo }}</small></a></p> | ||
{% endif %} | ||
|
||
{% if site.github.is_user_page %} | ||
<p class="view"><a href="{{ site.github.owner_url }}">View My GitHub Profile</a></p> | ||
{% endif %} | ||
|
||
{% if site.show_downloads %} | ||
<p> | ||
<small>Source code</small> | ||
<ul class="downloads"> | ||
<li><a href="{{ site.github.zip_url }}">Download <strong>ZIP File</strong></a></li> | ||
<li><a href="{{ site.github.tar_url }}">Download <strong>TAR Ball</strong></a></li> | ||
<li><a href="{{ site.github.repository_url }}">View On <strong>GitHub</strong></a></li> | ||
</ul> | ||
</p> | ||
<p> | ||
<small>Binaries</small><br> | ||
<a href="https://github.com/KadeDev/Kade-Engine/releases/latest">Download the <b>Latest release</b></a><br> | ||
<a href="https://ci.appveyor.com/project/KadeDev/kade-engine-windows/build/artifacts">Download a <b>Windows</b> development build</a><br> | ||
<a href="https://ci.appveyor.com/project/KadeDev/kade-engine-linux/build/artifacts">Download a <b>Linux</b> development build</a><br> | ||
<a href="https://funkin.puyo.xyz/nightly/">Play in your <b>Web Browser</b></a> | ||
</p> | ||
{% endif %} | ||
</header> | ||
<section id="content"> | ||
{% include header.html %} | ||
{% if page.url == "/" %} | ||
<!-- yay i'm NOT stupid --> | ||
{% else %} | ||
{{ content }} | ||
{% endif %} | ||
|
||
</section> | ||
<footer> | ||
{% if site.github.is_project_page %} | ||
<p>This project is maintained by <a href="{{ site.github.owner_url }}">{{ site.github.owner_name }}</a></p> | ||
{% endif %} | ||
<p><small>Hosted on GitHub Pages — Theme by <a href="https://github.com/orderedlist">orderedlist</a></small></p> | ||
</footer> | ||
</div> | ||
<script src="{{ "/assets/js/scale.fix.js" | relative_url }}"></script> | ||
{% if page.url == "/" %} | ||
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script> | ||
<script> | ||
function httpGet(theUrl) | ||
{ | ||
var xmlHttp = new XMLHttpRequest(); | ||
xmlHttp.open( "GET", theUrl, false ); // false for synchronous request | ||
xmlHttp.send( null ); | ||
return xmlHttp.responseText; | ||
} | ||
document.getElementById('content').innerHTML = document.getElementById('content').innerHTML + marked(httpGet("{{ site.replace_index_with }}")); | ||
</script> | ||
{% endif %} | ||
{% if site.google_analytics %} | ||
<script> | ||
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ | ||
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), | ||
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) | ||
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga'); | ||
ga('create', '{{ site.google_analytics }}', 'auto'); | ||
ga('send', 'pageview'); | ||
</script> | ||
{% endif %} | ||
</body> | ||
</html> |
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
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,24 @@ | ||
# Latest changelog/Changelog for 1.0.0 | ||
|
||
Changes marked with 💖 will be listed in the short version of the changelog in `version.downloadMe`. | ||
|
||
### Additions | ||
- New thing without issue | ||
- [#1](https://github.com/KadeDev/Kade-Engine/issues/1): New thing with issue | ||
- [#1](https://github.com/KadeDev/Kade-Engine/issues/1) ([PR #1](https://github.com/KadeDev/Kade-Engine/pulls/1)): New thing with issue and pull request | ||
- [PR #1](https://github.com/KadeDev/Kade-Engine/pulls/1): New thing with pull request but no issue | ||
- 💖 [PR #1](https://github.com/KadeDev/Kade-Engine/pulls/1): New thing with pull request but no issue and it's going in the short changelog | ||
|
||
### Changes | ||
- Use same templates as additions | ||
- Changes also includes stuff getting removed (as that happens less often so include it with changes) | ||
|
||
### Bugfixes | ||
- Use same templates as additions | ||
- This is for when bugs get fixed. This should, like, always have an issue link, most of the time (if it has one) | ||
|
||
## Links | ||
[GitHub Release](https://github.com/KadeDev/Kade-Engine/releases/tag/1.4.2) · [Last Windows CI build]() · [Last macOS CI build]() · [Last Linux CI build]() | ||
|
||
// Only include links section after it is no longer "latest changelog" | ||
// "Last x CI build" links should link to a specific build, the last one for the version |
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 @@ | ||
# Changelogs | ||
|
||
- [Latest](latest) (Contains changes that are not in a release yet) | ||
- [1.4.2 and before](changelog-pre) |
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,39 @@ | ||
# Latest changelog | ||
|
||
Changes marked with 💖 will be listed in the short version of the changelog in `version.downloadMe`. | ||
|
||
### Additions | ||
- [PR #307](https://github.com/KadeDev/Kade-Engine/pulls/307): Fix freeplay lag, add freeplay background changes, and add icons updating in charting state | ||
- Updated to Week 7 input with anti mash | ||
- 💖 Added toggle for ghost tapping | ||
- 💖 [PR #328](https://github.com/KadeDev/Kade-Engine/pulls/328) and [PR #331](https://github.com/KadeDev/Kade-Engine/pulls/331): Distractions toggle | ||
- [PR #341](https://github.com/KadeDev/Kade-Engine/pull/341): Update heads in realtime in charting state | ||
- 💖 [PR #362](https://github.com/KadeDev/Kade-Engine/pull/362): Officially support macOS (and add macOS requirements to docs) | ||
- Set up macOS CI builds | ||
- [PR #373](https://github.com/KadeDev/Kade-Engine/pull/373): Add tweens to modcharts | ||
- [PR #367](https://github.com/KadeDev/Kade-Engine/pull/367): Add labels to charting state | ||
- [PR #374](https://github.com/KadeDev/Kade-Engine/pull/374): Add more icon sizes | ||
- 💖 [PR #385](https://github.com/KadeDev/Kade-Engine/pull/385): Autoplay | ||
- (maybe 💖) [#353](https://github.com/KadeDev/Kade-Engine/issues/353) ([PR #400](https://github.com/KadeDev/Kade-Engine/pulls/400)): Clap assist for syncing charts | ||
- [PR #413](https://github.com/KadeDev/Kade-Engine/pulls/413): Option to disable flashing lights in menus | ||
- [PR #428](https://github.com/KadeDev/Kade-Engine/pulls/428): Move documentation to GitHub Pages + new changelog system | ||
- [PR #431](https://github.com/KadeDev/Kade-Engine/pull/431): Add Max NPS counter | ||
|
||
### Changes | ||
- Tutorial is now a modchart instead of being hardcoded | ||
- [PR #332](https://github.com/KadeDev/Kade-Engine/pull/332): Move the beatbox in Fresh to the vocal track | ||
- [PR #334](https://github.com/KadeDev/Kade-Engine/pull/334): Unhardcode GF Version, stages, and noteskins and make them loaded from chart | ||
- [PR #291](https://github.com/KadeDev/Kade-Engine/pull/291): Make it so you can compile with 4.0.x | ||
- 💖 [PR #440](https://github.com/KadeDev/Kade-Engine/pull/440): Change how replays work + store scroll speed and direction in replays | ||
|
||
### Bugfixes | ||
- [PR #289](https://github.com/KadeDev/Kade-Engine/pulls/289): Player 2 now plays idle animation properly when camera zooms in | ||
- (maybe 💖) [PR #314](https://github.com/KadeDev/Kade-Engine/pulls/314): Fix note trails | ||
- [PR #330](https://github.com/KadeDev/Kade-Engine/pull/330): Fix spelling errors in options | ||
- [#329](https://github.com/KadeDev/Kade-Engine/issues/329) ([PR #341](https://github.com/KadeDev/Kade-Engine/pull/341)): Fix crash when changing characters in charting state on web | ||
- [PR #341](https://github.com/KadeDev/Kade-Engine/pull/341): Fix html5 crash (when building), fix layering issues in charting state, fix charting state crashes in html5 | ||
- [PR #376](https://github.com/KadeDev/Kade-Engine/pull/376): Fix must hit sections | ||
- [#368](https://github.com/KadeDev/Kade-Engine/issues/368) ([PR #392](https://github.com/KadeDev/Kade-Engine/pull/392)): Fix enemy idle animations not playing before first note | ||
- [PR #399](https://github.com/KadeDev/Kade-Engine/pulls/399): Fix downscroll typo | ||
- [PR #431](https://github.com/KadeDev/Kade-Engine/pull/431): Fix NPS counter | ||
- [#404](https://github.com/KadeDev/Kade-Engine/issues/404) ([PR #446](https://github.com/KadeDev/Kade-Engine/pull/446)): Fix bug where Alt Animation in charting state doesn't stay checked after going to another section then back |
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,10 @@ | ||
# Guides | ||
[Creating A Custom Week](https://kadedev.github.io/Funkin/guides/weeks) | ||
|
||
### Contributing | ||
If you'd like to write a guide, you can make a [pull request](https://github.com/KadeDev/Kade-Engine/pulls). Make sure you put the guide in `docs/guides/` and that it's written in Markdown. | ||
|
||
Guides that need to be written: | ||
- How to use the charting state/chart editor | ||
- How to make custom dialogue (like Week 6) | ||
- How to make custom characters |
Oops, something went wrong.