Skip to content

Commit 2986caf

Browse files
committed
1.8.5 release
1 parent bc0bc59 commit 2986caf

10 files changed

Lines changed: 25 additions & 17 deletions

File tree

app/app.html

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2123,7 +2123,10 @@ <h1 data-t>Thank you</h1>
21232123
<p data-t>
21242124
A special thank you to the wonderful people that have contributed and helped make the optimizer possible:
21252125
</p>
2126-
<ul>
2126+
<ul class="thankList">
2127+
<li>
2128+
<p data-t>Marioth - for helping the discord community & keeping the optimizer updated</p>
2129+
</li>
21272130
<li>
21282131
<p data-t>Taokonn - for the user interface design and user experience research and guidance</p>
21292132
</li>

app/assets/setprotection.png

-3.38 KB
Loading

app/assets/settorrent.png

-3.35 KB
Loading

app/css/style.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1871,4 +1871,7 @@ input:checked + .darkSlider:before {
18711871
.enhanceGuide {
18721872
margin-left: 10px;
18731873
margin-top: 10px;
1874+
}
1875+
.thankList {
1876+
line-height: 1em;
18741877
}

app/js/lib/scanner.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -794,6 +794,8 @@ const setsByIngameSet = {
794794
"set_scar": "InjurySet",
795795
"set_speed": "SpeedSet",
796796
"set_vampire": "LifestealSet",
797+
"set_shield": "ProtectionSet",
798+
"set_torrent": "TorrentSet",
797799
}
798800

799801
async function postData(url = '', data = {}) {

app/js/lib/updater.js

Lines changed: 10 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
const { ipcRenderer } = require('electron');
22
global.ipcRenderer = ipcRenderer;
3-
const currentVersion = "1.8.4";
3+
const currentVersion = "1.8.5";
44

55
global.TEST = false;
6+
67
/********************************************************************************************
78
Release checklist:
89
- update changelog
@@ -32,6 +33,14 @@ module.exports = {
3233
Dialog.showNewFeatures(
3334

3435
`
36+
<h2>
37+
New in v1.8.5
38+
</h2>
39+
<ul class="newFeatures">
40+
<li>Added Protection and Torrent sets</li>
41+
<li>DmgD optimization rating for Dmg x Defense</li>
42+
<li>Multiple substat selections on Gear tab</li>
43+
</ul>
3544
<h2>
3645
New in v1.8.0
3746
</h2>
@@ -53,19 +62,6 @@ module.exports = {
5362
<li>Added +0/3/6/9/12/15 gear and above optimizer setting</li>
5463
<li>Added score evaluation based on each unit's base stats</li>
5564
</ul>
56-
<h2>
57-
New in v1.8.3
58-
</h2>
59-
<ul class="newFeatures">
60-
<li>Added Korean translation</li>
61-
<li>Fixing memory leaks & added max RAM limit setting</li>
62-
</ul>
63-
<h2>
64-
New in v1.8.4
65-
</h2>
66-
<ul class="newFeatures">
67-
<li>Updated with destruction set buff</li>
68-
</ul>
6965
`
7066
);
7167
},

app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"name": "Fribbels",
66
"url": "https://github.com/fribbels/Fribbels-Epic-7-Optimizer"
77
},
8-
"version": "1.8.4",
8+
"version": "1.8.5",
99
"description": "Epic 7 Gear Optimizer",
1010
"main": "./main.prod.js",
1111
"scripts": {
1.11 KB
Binary file not shown.

data/jar/backend.jar

1.11 KB
Binary file not shown.

data/locales/fr/translation.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1095,5 +1095,9 @@
10951095
"Only import heroes already in optimizer": "Importer uniquement les héros déjà dans l'optimiseur",
10961096
"+15 and up": "+15 et plus",
10971097
"Eff Res": "Res. d'effet",
1098-
"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)"
1098+
"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)",
1099+
"DmgD": "DmgD",
1100+
"<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.",
1101+
"Torrent": "Tumulte",
1102+
"Protection": "Protection"
10991103
}

0 commit comments

Comments
 (0)