\ No newline at end of file
diff --git a/_includes/subnav.html b/_includes/subnav.html
new file mode 100644
index 0000000..97dfa9a
--- /dev/null
+++ b/_includes/subnav.html
@@ -0,0 +1,18 @@
+{% for item in include.nav %}
+{% if item.title %}
+{% if item.url %}
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/_plugins/loadDocList.rb b/_plugins/loadDocList.rb
new file mode 100644
index 0000000..9a19330
--- /dev/null
+++ b/_plugins/loadDocList.rb
@@ -0,0 +1,47 @@
+module Options
+ Jekyll::Hooks.register :site, :pre_render do |site|
+
+ site.data["nav"] = []
+ x = site.pages
+ x = x.sort_by { |x| x.url.split("/").length() } # make sure entries are in a nice order
+ x.each { |page|
+ if page.url.index("/_docs") == 0 # only run when it is a doc
+
+ title = page.url.dup
+ title[".html"] = "" # remove .html from the end of file names.
+ title["/_docs/"] = ""
+ site.data["nav"] << do_for_sub(site.data["nav"], title.dup, page.url)
+
+ end
+ }
+
+ end
+
+ def Options.do_for_sub(current, title, full_url)
+ if title.split("/").length() > 1
+ x = get_pos_in_array(current, title.partition("/").first)
+ if x != nil
+ current[x]["subnav"] << do_for_sub(current[x]["subnav"], title.partition("/").last, full_url)
+ else
+ current << { "title" => title.partition("/").first, "subnav" => do_for_sub([], title.partition("/").last, full_url) }
+ end
+ else
+ current << { "title" => title.partition("/").first, "url" => full_url }
+
+ end
+ return current
+ end
+
+ def Options.get_pos_in_array(array, title)
+ array.each_with_index do |item, i|
+ if item.is_a? Array
+ next
+ end
+ if item["title"] == title
+ return i
+ end
+ end
+
+ nil
+ end
+end
\ No newline at end of file
diff --git a/_sass/jekyll-theme-cayman.scss b/_sass/jekyll-theme-cayman.scss
index 8c47e07..67af817 100644
--- a/_sass/jekyll-theme-cayman.scss
+++ b/_sass/jekyll-theme-cayman.scss
@@ -178,6 +178,11 @@ a {
.project-name {
margin-top: 0;
margin-bottom: 0.1rem;
+ color: white;
+
+ &:hover {
+ color: white;
+ }
@include large {
font-size: 3.25rem;
@@ -476,3 +481,65 @@ h2 {
h1 {
font-size: 2rem;
}
+
+.grid {
+ display: grid;
+ grid-template-columns: 20% auto;
+}
+
+.scrollBar {
+ max-height: 100vh;
+ overflow-y: auto;
+ overflow-x: hidden;
+ position: fixed;
+ width: 20%
+}
+
+.scrollArea {
+ background-color: $header-bg-color;
+ height: 100%;
+ position: fixed;
+ width: 20%
+}
+
+.internalScrollArea {
+ padding: 1rem;
+ color: $header-heading-color;
+ height: 100%;
+
+ a {
+ color: #848197;
+
+ &:hover {
+ color: white;
+ text-decoration: none;
+ }
+ }
+}
+
+.currentDoc {
+ background-color: blue;
+ border-radius: 3px;
+ padding: 5px 5px;
+ color: white;
+}
+
+.docContent {
+ padding: 1rem
+}
+
+::-webkit-scrollbar {
+ width: 10px;
+}
+
+::-webkit-scrollbar-track {
+ background: #f1f1f1;
+}
+
+::-webkit-scrollbar-thumb {
+ background: #888;
+}
+
+::-webkit-scrollbar-thumb:hover {
+ background: #555;
+}
\ No newline at end of file
From 30ce293fce398db6210c85034cf4789f5532d3aa Mon Sep 17 00:00:00 2001
From: scorbett123 <50634068+scorbett123@users.noreply.github.com>
Date: Sat, 17 Apr 2021 09:44:59 +0100
Subject: [PATCH 2/9] add docs
Signed-off-by: scorbett123 <50634068+scorbett123@users.noreply.github.com>
---
_docs | 1 +
1 file changed, 1 insertion(+)
create mode 160000 _docs
diff --git a/_docs b/_docs
new file mode 160000
index 0000000..b51728e
--- /dev/null
+++ b/_docs
@@ -0,0 +1 @@
+Subproject commit b51728e95dce33be54c9f3d4ecc9ba4af14b890a
From 7f4df9a0d53fb85164f3c3099d5eb4b44ee557b5 Mon Sep 17 00:00:00 2001
From: Natan <2222natan@gmail.com>
Date: Sat, 24 Apr 2021 13:14:11 +0300
Subject: [PATCH 3/9] Just some changes of names and urls, nothing serious.
---
changelog.md | 60 ----------------------------------------------------
download.md | 2 +-
index.md | 8 +------
license.html | 12 +++++------
signing.md | 4 ++--
5 files changed, 10 insertions(+), 76 deletions(-)
diff --git a/changelog.md b/changelog.md
index e844ea6..d02985e 100644
--- a/changelog.md
+++ b/changelog.md
@@ -19,63 +19,3 @@ Be sure to grab this release from [download](download) and leave feedback on fut
### Commits
-- fix: Pressing NONE would activate non-module BindSettings
-- impr: Add button to reset ClickGUI positions
-- new: 2B2T Queue HUD Element (#2167)
-- enh: Option to show Baritone path on Radar (#2170)
-- impr: Custom AntiAFK AutoReply (#2168)
-- enh: Added ability to have multiple keys for keybinds (#2149)
-- fix: Use proper color settings for Tracers, cleanup settings
-- enh: Show waypoints on radar (#2164)
-- impr: Add ability to sync waypoints from Baritone (#2160)
-- enh: Preview color value as it's being changed in ColorPicker (#2163)
-- fix: Use proper color settings for HoleESP and CrystalESP (#2165)
-- fix: Use proper color settings for Breadcrumbs (#2162)
-- fix: Use proper color settings for WaypointFinder and EyeFinder (#2161)
-- enh: Added safety to not ping updates role if changelog fails to upload
-- impr: Separate BoatFly from EntitySpeed (#2155)
-- impr: capture timing setting (#2158)
-- impr: size option for TextComponents (#2159)
-- enh: add cursor to string settings. (#2157)
-- impr: Use left click to edit String settings (#2150)
-- impr: Add MSPT to TPS HUD Element (#2143)
-- fix: Users arguing over semantics
-- fix: `;set` command printing incorrect value (#2138)
-- impr: Make `;signbook` greedy instead of string
-- refactor: Rewrite the installer (#1942)
-- impr: Add "Disable on Complete" and "Take Off" option for Automend (#2088)
-- impr: Copy NBT data to clipboard (#2126)
-- fix: Not being able to list friends in `;friend` command
-- impr: Merged NoHurtCam into AntiOverlay
-- fix: Duplicate scale setting in Radar
-- fix: Build failure from outdated branch
-- new: Add Radar including NewChunks (#1924)
-- enh: Added ability to modify setting order. (#1938)
-- refactor: Player Packet Manager (#1947)
-- new: Plugin System (#1773)
-- enh: AutoEat food preference. (#2103)
-- enh: Rewrote World Utils (#2100)
-- fix: AutoOffhand item switching spam
-- enh: Crystal placing collision check
-- enh: Added place delay ms to CrystalAura and updated default config
-- fix: Thread safety in CrystalAura
-- cleanup: Useless settings in CrystalAura
-- fix: AutoObsidian crash caused by NPE (#2113)
-- cleanup: Utils lambda inlining
-- cleanup: Command builder lambda inlining
-- cleanup: Event listener lambda inlining
-- enh: Added culling to Nametags
-- cleanup: RenderEntityEvent (#2098)
-- fix: AutoEZ broadcast mode sends message twice
-- fix: Freecam mixin compatibility (#1950)
-- cleanup: Unused parameter warnings
-- fix: Surround spams auto center
-- fix: HoleSnap changes target hole randomly
-- new: Added Anchor module (#2087)
-- cleanup: SurroundUtils
-- enh: Cleaned up PacketLogger and fixed npe
-- enh: Added relative position to Freecam
-- enh: Added air strafe, rendering, and stuck check to HoleSnap
-- fix: AutoExcuse sends message on totem popping
-- fix: Broken TotemPopCounter
-- enh: useIR for Kotlin compiling to use the beta backend. (#2089)
\ No newline at end of file
diff --git a/download.md b/download.md
index 0da8c11..def5c40 100644
--- a/download.md
+++ b/download.md
@@ -1,7 +1,7 @@
---
layout: default
title: Download
-description: Releases for KAMI Blue
+description: Releases for lambda
---
# Download
diff --git a/index.md b/index.md
index ef28df1..986b18e 100644
--- a/index.md
+++ b/index.md
@@ -8,12 +8,6 @@ description: A Minecraft 1.12.2 utility mod for anarchy servers
This is an open source project written primarily by 086, l1ving and iBuyMountainDew. It has many useful combat and general utilities to assist the player.
-### 2021/04/21 This project is now archived indefinitely.
-
-All pull requests, issues or any other activity on the repositories of all KAMI Blue organizations will be ignored completely.
-
-Finally this project is in the bin 🗑️
-
## Images
@@ -54,7 +48,7 @@ This is currently in active development. When issues are being closed is by mile
See forgehax for an equivalent. Some features in KAMI may be based on those of forgehax, and KAMI / KAMI Blue have some features it doesn't. KAMI Blue won't be based off of other mods unless said otherwise.
- If you get banned for breaking a servers rules using KAMI Blue, it is not any of the developers fault. It is meant to be used on *anarchy* servers, which do not have rules.
+ If you get banned for breaking a servers rules using lambda, it is not any of the developers fault. It is meant to be used on *anarchy* servers, which do not have rules.