Skip to content

Commit

Permalink
BugFixing & Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Siekiera committed Jan 22, 2020
1 parent 6edc366 commit 46a00e3
Show file tree
Hide file tree
Showing 5 changed files with 69 additions and 1 deletion.
30 changes: 30 additions & 0 deletions changelog-1.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,35 @@
##Changelog - Extension

#####2.4.1.1

**Bugfix**
- Infobox:
- [#380](https://github.com/dsiekiera/foe-helfer-extension/issues/380) [#408](https://github.com/dsiekiera/foe-helfer-extension/issues/408) Level-Up zeigt korrekte FPs an

- Motivationen/Polieren:
- [#388](https://github.com/dsiekiera/foe-helfer-extension/issues/388) Infos werden wieder korrekt übertragen

- Eventliste:
- [#405](https://github.com/dsiekiera/foe-helfer-extension/issues/405) [#432](https://github.com/dsiekiera/foe-helfer-extension/issues/432) Beim erreichen der Tagesaufgaben war die Liste komplett leer

- Citymap:
- [#412](https://github.com/dsiekiera/foe-helfer-extension/issues/412) Manche Gebäude am linken Rand wurden nicht eingeblendet

- Kostenrechner:
- [#416](https://github.com/dsiekiera/foe-helfer-extension/issues/416) Zeile unten am Rand für Schleifenquests war verschwunden

**Update**
- Infobox:
- [#435](https://github.com/dsiekiera/foe-helfer-extension/issues/435) Speichert ab sofort die eingestellten Filter

- Menü:
- Hält man ein Menü-Item via Mause-Drag min. 1,5s über einen der aktiven hoch- oder runter Pfeile, scrollt das Menü zur nächsten Ansicht

- Verhandlungsassistent:
- [#420](https://github.com/dsiekiera/foe-helfer-extension/issues/420) Erkennt vertauschte Güter und kann damit weiter arbeiten, wenn es noch in die Logik passt

---

#####2.4.1

**Neu**
Expand Down
29 changes: 29 additions & 0 deletions changelog-2.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,34 @@
##Changelog - Chrome Extension

#####2.4.1.1

**Update**
- Info box:
- [#435](https://github.com/dsiekiera/foe-helfer-extension/issues/435) Now saves the set filters

- Menu:
- If you hold a menu item via mouse drag min. 1.5s over one of the active up or down arrows, the menu scrolls to the next view

- Negotiator:
- [#420](https://github.com/dsiekiera/foe-helfer-extension/issues/420) Detects exchanged goods and can continue to work with them if it still fits into the logic

**BugFix**
- Info box:
- [#380](https://github.com/dsiekiera/foe-helfer-extension/issues/380) [#408](https://github.com/dsiekiera/foe-helfer-extension/issues/408 ) Level-Up shows correct FPs

- motivations / polishing:
     - [#388](https://github.com/dsiekiera/foe-helfer-extension/issues/388) Information is transferred correctly again

- Event list:
- [#405](https://github.com/dsiekiera/foe-helfer-extension/issues/405) [#432](https://github.com/dsiekiera/foe-helfer-extension/issues/432 ) When the daily tasks were accomplished, the list was completely empty

- Citymap:
- [#412](https://github.com/dsiekiera/foe-helfer-extension/issues/412) Some buildings on the left edge were not shown

- Cost calculator:
- [#416](https://github.com/dsiekiera/foe-helfer-extension/issues/416) line at the bottom for loop quests was gone


#####2.4.1

**New**
Expand Down
4 changes: 4 additions & 0 deletions js/web/_main/js/_main.js
Original file line number Diff line number Diff line change
Expand Up @@ -985,6 +985,10 @@ const FoEproxy = (function () {

FoEproxy.addHandler('QuestService', 'getUpdates', (data, PostData) => {
MainParser.Quests = data.responseData;

if( $('#costCalculator').length > 0 ){
Calculator.Show();
}
});

})();
Expand Down
5 changes: 5 additions & 0 deletions js/web/calculator/css/calculator.css
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,11 @@
color: #F3D6A0;
}


#costCalculator #costCalculatorBody .foe-table td {
white-space: nowrap;
}

#costCalculator #costCalculatorBody td.error,
#costCalculator #costCalculatorBody td .error {
color: #ec4d4d;
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "__MSG_appName__",
"description": "__MSG_appDesc__",
"default_locale": "en",
"version": "2.4.1",
"version": "2.4.1.1",

"manifest_version": 2,
"permissions": [
Expand Down

0 comments on commit 46a00e3

Please sign in to comment.