Skip to content

Commit

Permalink
v2.9.2 final mod changes
Browse files Browse the repository at this point in the history
  • Loading branch information
zhenga8533 committed Apr 18, 2024
1 parent 9b77cf3 commit fd7d3c1
Show file tree
Hide file tree
Showing 5 changed files with 47 additions and 3 deletions.
33 changes: 33 additions & 0 deletions docs/_posts/2024-04-18-v2_9_2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
---
layout: post
title: v2.9.2
gh-repo: zhenga8533/VolcAddons
gh-badge: [star, fork, follow]
tags: [release]
comments: true
author: Volcaronitee
---

## [Changelog](https://github.com/zhenga8533/VolcAddons/releases/tag/v2.9.2) (download by clicking [here](https://github.com/zhenga8533/VolcAddons/releases/download/v2.9.2/VolcAddons.zip))

{: .box-note}
#### New Features
- Added Hoppity event experimental features
- Added widget display (`/va wgl`)
- Added `/missingSkins`
- Added corpse waypoints

{: .box-warning}
#### Changes/Fixes
- Compacted some chat messages to be 1 message
- Changed fossil finder to the worst Leetcode algorithm
- Changed chat waypoints to detect item
- Changed searchbar highlighting to be more obvious
- Fixed new Gemstone in value calc
- Fixed `/resetSkills`
- Fixed searchbar calculator showing NaN
- Fixed powder tracker timer

{: .box-error}
#### Deprecated
- Removed bestiary display (`/va wgl add bestiary`)
1 change: 1 addition & 0 deletions docs/commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ subtitle: List of every non-gui related commands.
- `/kv`: Display important Kuudra stats for inputted player profile.
- **Misc**
- `/va be`: Displays bestiary stats and closest milestones.
- `/missingskins`: Scans user inventory API to determine any missing fire sale skins.
- `/pesttp`: Warps to plot with most pests.
- `/sk`: Opens the SkyCrypt profile of inputted user.

Expand Down
4 changes: 4 additions & 0 deletions docs/features.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ subtitle: List of all features and their related commands.
- Commissions Display (`/moveCommission`)
- Commission Waypoints
- Corpse Announce
- Corpse Waypoints
- Fossil Helper

### <u>Farming Features</u>
Expand All @@ -112,6 +113,9 @@ subtitle: List of all features and their related commands.
### <u>Event Features</u>
- **Bingo**
- Bingo Card Overlay
- **Chocolate Factory**
- Chocolate Overlay
- Worker Highlight
- **Great Spook**
- Math Teacher Solver
- Primal Fear Alert
Expand Down
Binary file modified forge/VolcAddons-1.1.jar
Binary file not shown.
12 changes: 9 additions & 3 deletions forge/src/main/java/com/volca/VolcAddons/VolcAddons.java
Original file line number Diff line number Diff line change
Expand Up @@ -184,15 +184,21 @@ void downloadAndExtractUpdate(EntityPlayer player) {

try {
// Load truststore from the classpath
trustStoreInputStream = VolcAddons.class.getResourceAsStream("/myCA.jks");
trustStoreInputStream = VolcAddons.class.getResourceAsStream("/skytilscacerts.jks");
if (trustStoreInputStream == null) {
// Truststore not found in the classpath
throw new FileNotFoundException("Truststore file not found");
}

// Create and load the truststore
/**
*
* Create and load the truststore.
* Tried for 6 hours to create my own CA certified jks but failed...
* Assuming I can use ST cert since it's open source :).
* LMK if this needs to be changed, bedge.
*/
KeyStore trustStore = KeyStore.getInstance("JKS");
trustStore.load(trustStoreInputStream, "secret".toCharArray());
trustStore.load(trustStoreInputStream, "skytilsontop".toCharArray());

// Initialize TrustManagerFactory with the loaded truststore
TrustManagerFactory trustManagerFactory = TrustManagerFactory.getInstance(TrustManagerFactory.getDefaultAlgorithm());
Expand Down

0 comments on commit fd7d3c1

Please sign in to comment.