Skip to content

Commit

Permalink
1.8.5 release
Browse files Browse the repository at this point in the history
  • Loading branch information
fribbels committed Oct 30, 2022
1 parent bc0bc59 commit 2986caf
Show file tree
Hide file tree
Showing 10 changed files with 25 additions and 17 deletions.
5 changes: 4 additions & 1 deletion app/app.html
Original file line number Diff line number Diff line change
Expand Up @@ -2123,7 +2123,10 @@ <h1 data-t>Thank you</h1>
<p data-t>
A special thank you to the wonderful people that have contributed and helped make the optimizer possible:
</p>
<ul>
<ul class="thankList">
<li>
<p data-t>Marioth - for helping the discord community & keeping the optimizer updated</p>
</li>
<li>
<p data-t>Taokonn - for the user interface design and user experience research and guidance</p>
</li>
Expand Down
Binary file modified app/assets/setprotection.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified app/assets/settorrent.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions app/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -1871,4 +1871,7 @@ input:checked + .darkSlider:before {
.enhanceGuide {
margin-left: 10px;
margin-top: 10px;
}
.thankList {
line-height: 1em;
}
2 changes: 2 additions & 0 deletions app/js/lib/scanner.js
Original file line number Diff line number Diff line change
Expand Up @@ -794,6 +794,8 @@ const setsByIngameSet = {
"set_scar": "InjurySet",
"set_speed": "SpeedSet",
"set_vampire": "LifestealSet",
"set_shield": "ProtectionSet",
"set_torrent": "TorrentSet",
}

async function postData(url = '', data = {}) {
Expand Down
24 changes: 10 additions & 14 deletions app/js/lib/updater.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
const { ipcRenderer } = require('electron');
global.ipcRenderer = ipcRenderer;
const currentVersion = "1.8.4";
const currentVersion = "1.8.5";

global.TEST = false;

/********************************************************************************************
Release checklist:
- update changelog
Expand Down Expand Up @@ -32,6 +33,14 @@ module.exports = {
Dialog.showNewFeatures(

`
<h2>
New in v1.8.5
</h2>
<ul class="newFeatures">
<li>Added Protection and Torrent sets</li>
<li>DmgD optimization rating for Dmg x Defense</li>
<li>Multiple substat selections on Gear tab</li>
</ul>
<h2>
New in v1.8.0
</h2>
Expand All @@ -53,19 +62,6 @@ module.exports = {
<li>Added +0/3/6/9/12/15 gear and above optimizer setting</li>
<li>Added score evaluation based on each unit's base stats</li>
</ul>
<h2>
New in v1.8.3
</h2>
<ul class="newFeatures">
<li>Added Korean translation</li>
<li>Fixing memory leaks & added max RAM limit setting</li>
</ul>
<h2>
New in v1.8.4
</h2>
<ul class="newFeatures">
<li>Updated with destruction set buff</li>
</ul>
`
);
},
Expand Down
2 changes: 1 addition & 1 deletion app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"name": "Fribbels",
"url": "https://github.com/fribbels/Fribbels-Epic-7-Optimizer"
},
"version": "1.8.4",
"version": "1.8.5",
"description": "Epic 7 Gear Optimizer",
"main": "./main.prod.js",
"scripts": {
Expand Down
Binary file modified backend/out/artifacts/backend_jar/backend.jar
Binary file not shown.
Binary file modified data/jar/backend.jar
Binary file not shown.
6 changes: 5 additions & 1 deletion data/locales/fr/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -1095,5 +1095,9 @@
"Only import heroes already in optimizer": "Importer uniquement les héros déjà dans l'optimiseur",
"+15 and up": "+15 et plus",
"Eff Res": "Res. d'effet",
"GPU accelerated optimization (Disable this option if you notice errors or decreased performance)": "Optimisation accélérée via GPU (Désactivez cette option si vous remarquez des erreurs ou des pertes de performance)"
"GPU accelerated optimization (Disable this option if you notice errors or decreased performance)": "Optimisation accélérée via GPU (Désactivez cette option si vous remarquez des erreurs ou des pertes de performance)",
"DmgD": "DmgD",
"<b>DmgD - </b> Dmg * Def rating, average damage rating, scaled by your units defense. Useful for defense scaling bruisers.": "<b>DmgD - </b> Dmg * Def, niveau moyen des dommages en fonction de la défense de l'unité. Utile pour les bruisers basés sur la défense.",
"Torrent": "Tumulte",
"Protection": "Protection"
}

0 comments on commit 2986caf

Please sign in to comment.