diff --git a/README.md b/README.md
index c99534a..0735016 100644
--- a/README.md
+++ b/README.md
@@ -1,18 +1,21 @@
# Beyond Vanilla - Minecraft Shader Pack
-## Welcome to an immersive visual experience! This is my debut shader pack designed to enhance your Minecraft adventures.
+![Cover](https://cdn.modrinth.com/data/YIhUcKoq/images/298f3c919189cdcf641b89601d6866f3599ef2e4.png)
-### Installation Guide:
+Welcome to an immersive visual experience! Beyond Vanilla is a shader pack designed to take your Minecraft adventures to the next level.
## Links
Modrinth: https://modrinth.com/shader/beyond-vanilla \
forge: (Soon)\
Github: https://github.com/hotsu0p/beyond-vanilla
+### Links:
+- Modrinth: [Download Here](https://modrinth.com/shader/beyond-vanilla)
+- Forge: (Coming Soon)
+- GitHub: [Project Repository](https://github.com/hotsu0p/beyond-vanilla)
-## Have an issue?
- open an issue here!
- https://github.com/hotsu0p/beyond-vanilla/issues
+### Have an issue or feature request?
+Open an issue [here](https://github.com/hotsu0p/beyond-vanilla/issues).
1. **Download:**
- Visit the green "Releases" tab and download the latest release.
@@ -29,12 +32,12 @@ Github: https://github.com/hotsu0p/beyond-vanilla
### Shader Features:
-- Explore a stunning visual upgrade with changes to lighting, shadows, and atmospheric effects.
-- Enjoy an immersive gaming experience with carefully crafted details.
+- Experience a stunning visual upgrade with enhancements to lighting, shadows, and atmospheric effects.
+- Immerse yourself in the game with carefully crafted details.
### Compatibility:
-- highly recomennd https://modrinth.com/resourcepack/embrace-pixels for better visuals
-- Tested on iris and sodium 1.1.6.
+
+- Tested on Iris and Sodium 1.1.6.
- Optimized for mid to low-tier devices.
- Not tested on Optifine.
- Compatible with Nvidia GPUs (tested on a 4070 Ti).
@@ -42,16 +45,21 @@ Github: https://github.com/hotsu0p/beyond-vanilla
### Upcoming Enhancements:
-- [ ] More screenshots for a comprehensive preview.
-- [ ] Performance improvements for smoother gameplay.
-- [ ] Additional features to elevate your gaming experience.
-- [ ] Enhanced sky in the end.
-- [ ] Improved portal visuals.
-- [ ] Revamped GUI for a polished interface.
-- [ ] Sun and moon enhancements.
-- [✅] Uploading to Modrinth for wider availability.
+- [✅] More screenshots for a comprehensive preview.
+- [✅] Enhanced sky in the end.
+- [✅] Improved portal visuals.
+- [✅] Sun and moon enhancements.
+- [✅] Uploaded to Modrinth for wider availability.
+- [] Fix more bugs
+- [] Performance improvements for smoother gameplay.
+- [] Additional features to elevate your gaming experience.
+- [] Add a feature from the commuity..
+- [] Quality of life features
+- [] Glass blur
+- [] Revamped GUI for a polished interface.
+- [] Add more to the todo
### Credits:
-- **Hotsuop:** Made the base shader.
+- **Hotsuop:** Creator of the base shader.
-If you contribute to the repo, your name could be featured here!
+If you contribute to the repository, your name could be featured here!
diff --git a/changelog.md b/changelog.md
index 62598a6..bbf8506 100644
--- a/changelog.md
+++ b/changelog.md
@@ -1,3 +1,8 @@
+v2.7 - 3/24/24
+ - Improved stars
+ - Made sapplings move
+ - Updated hover
+
v2.5.1 - 3/16/24
- Fixed overworld lighting
- Improved skulk
diff --git a/docs/index.html b/docs/index.html
deleted file mode 100644
index ce17c0d..0000000
--- a/docs/index.html
+++ /dev/null
@@ -1 +0,0 @@
-Nothign here really
\ No newline at end of file
diff --git a/assets/2024-03-02_17.41.42.png b/misc/assets/2024-03-02_17.41.42.png
similarity index 100%
rename from assets/2024-03-02_17.41.42.png
rename to misc/assets/2024-03-02_17.41.42.png
diff --git a/assets/2024-03-04_15.26.03.png b/misc/assets/2024-03-04_15.26.03.png
similarity index 100%
rename from assets/2024-03-04_15.26.03.png
rename to misc/assets/2024-03-04_15.26.03.png
diff --git a/assets/2024-03-04_15.26.26.png b/misc/assets/2024-03-04_15.26.26.png
similarity index 100%
rename from assets/2024-03-04_15.26.26.png
rename to misc/assets/2024-03-04_15.26.26.png
diff --git a/assets/2024-03-04_15.28.24.png b/misc/assets/2024-03-04_15.28.24.png
similarity index 100%
rename from assets/2024-03-04_15.28.24.png
rename to misc/assets/2024-03-04_15.28.24.png
diff --git a/assets/after-fix.png b/misc/assets/after-fix.png
similarity index 100%
rename from assets/after-fix.png
rename to misc/assets/after-fix.png
diff --git a/assets/before-fix.png b/misc/assets/before-fix.png
similarity index 100%
rename from assets/before-fix.png
rename to misc/assets/before-fix.png
diff --git a/misc/size.js b/misc/size.js
index 6c9319c..5526233 100644
--- a/misc/size.js
+++ b/misc/size.js
@@ -1,51 +1,13 @@
-const getCodeStats = require('@hotsuop/codestats');
-const chalk = require('chalk');
-// Define the folder path to analyze
-const folderPath = '../shaders';
+const express = require('express')
+const app = express()
+const port = 3000
-// Define the configuration object
-const config = {
- languages: ['js', 'html', 'glsl'], // Add more languages if needed
- exclude: ['node_modules'], // Add folders to exclude
- fileTypes: ['xml', 'css'], // Add more file types if needed
- depthLimit: 5,
-};
+app.use(express.static('website'));
+app.get('/', (req, res) => {
+ res.sendFile(__dirname + '/website/index.html');
+});
-// Call getCodeStats with the folder path and configuration
-getCodeStats(folderPath, config)
- .then(projectStats => {
- // Display the calculated project stats
- console.log('Project Statistics:');
- console.log(`Total Files: ${projectStats.totalFiles}`);
- console.log(`Total Lines: ${projectStats.totalLines}`);
- console.log(`Total Characters: ${projectStats.totalCharacters}`);
- console.log(`Total Functions: ${projectStats.totalFunctions}`);
- console.log(`Total Classes: ${projectStats.totalClasses}`);
- console.log(`Total Comments: ${projectStats.totalComments}`);
-
- // Display detailed stats for each file
- console.log('\nFile Statistics:');
- projectStats.files.forEach(fileStats => {
- console.log(`\nFile: ${fileStats.filePath}`);
- console.log(`Lines: ${fileStats.lines}`);
- console.log(`Characters: ${fileStats.characters}`);
- console.log(`Functions: ${fileStats.functionsCount}`);
- console.log(`Classes: ${fileStats.classesCount}`);
- console.log(`Comments: ${fileStats.commentsCount}`);
- });
-
- // Display file types summary
- console.log('\nFile Types Summary:');
- console.log('Type\t| Files\t| Lines');
- console.log('--------|-------|----------');
- for (const fileType in projectStats.fileTypesStats) {
- const fileTypeStats = projectStats.fileTypesStats[fileType];
- console.log(`${fileType}\t| ${fileTypeStats.files}\t| ${fileTypeStats.lines} (${((fileTypeStats.lines / projectStats.totalLines) * 100).toFixed(2)}%)`);
- }
- console.log('--------|-------|----------');
- console.log(`All\t| ${projectStats.totalFiles}\t| ${projectStats.totalLines}`);
- })
- .catch(error => {
- console.error(chalk.red(`Error: ${error.message}`));
- });
\ No newline at end of file
+app.listen(port, () => {
+ console.log(`App listening on port ${port}`)
+})
\ No newline at end of file
diff --git a/misc/website/index.html b/misc/website/index.html
new file mode 100644
index 0000000..d4f5b67
--- /dev/null
+++ b/misc/website/index.html
@@ -0,0 +1,52 @@
+
+
+
Beyond Vinlla - Minecraft shader
+
+
+
Hello!
+
Thanks for checking out my shader!
+
For other people who are wondering what this is you can check out the images below to get a taste of what its like