Compare commits

...

32 Commits

Author SHA1 Message Date
blitzmann
9e5f119248 Reduces icon opacity of "Empty Groups" toggle dependant on filtering state. 2014-08-10 17:21:48 -04:00
blitzmann
1315f8d8ed Adds prices to Drone and Cargo bay. Also removed redundant and broken columns in drone bay 2014-08-08 10:46:58 -04:00
blitzmann
356c741e54 Fixes #151 2014-08-07 21:13:18 -04:00
blitzmann
04f52f1f86 Adds Deployables to market / search 2014-08-06 15:16:37 -04:00
blitzmann
c7042f314b Code consistency 2014-07-31 00:14:29 -04:00
blitzmann
dd27c3c805 Set files to 644 besides pyfa.py and scripts 2014-07-30 21:23:27 -04:00
Ryan Holmes
9685d15e61 Merge pull request #149 from blitzmann/issue-134
Introduces empty group filtering to ship browser: stage 1
2014-07-30 16:07:08 -04:00
blitzmann
b31d14158f Added caching to empty group filtering
Stage 2 now sums total fittings in category and sets the cache to True if t_fits > 0
Stage 3 sets the cache to True if number of fits for ship > 0. This takes care of creating new fits

If fit is deleted, and there are no other fits for the ship, it reverts back to stage 2, which should set the correct value in the cache
2014-07-30 16:00:38 -04:00
blitzmann
b3b62fcecc Introduces empty group filtering to ship browser stage 1 2014-07-30 00:40:55 -04:00
DarkPhoenix
51063ef758 Fix #144 (mindlink bonus is not applied anymore when SI link bonus is applied) 2014-07-27 12:10:50 +04:00
blitzmann
f406d7da09 Added keyboard shortcut to toggle search box in market and ship browser 2014-07-24 22:37:20 -04:00
blitzmann
4f64ae9f85 Added "Last Updated" stat to HTML export, resolves #128 2014-07-23 23:04:02 -04:00
blitzmann
bdfa46cea2 Bump to dev version 2014-07-22 20:36:37 -04:00
blitzmann
693d213ec1 Update to Crius 1.0 2014-07-22 14:08:59 -04:00
blitzmann
c76e4c8220 Fix #137 - TP and Webs affect DPS in graph 2014-07-21 15:57:00 -04:00
blitzmann
979539cb79 Fix #141 - Triage stacking not applying to shield boosts 2014-07-21 12:20:55 -04:00
DarkPhoenix
009956c301 Fix mistype in heron name and paste proper iteron V name 2014-06-19 23:29:51 +04:00
blitzmann
0b64dad408 Merge pull request #125 from akosiaris/damagetypesimport_blankline_fix
Fix blank lines in damage types import
2014-06-14 22:55:23 -04:00
blitzmann
032204bd53 Fix subsystem exports, resolves #130 2014-06-14 22:44:23 -04:00
blitzmann
55847adb41 Merge branch 'akosiaris_miningyeild' 2014-06-12 19:22:50 -04:00
blitzmann
e2abc51bbf Use small icon with mining yield / firepower toggle button 2014-06-12 19:22:29 -04:00
blitzmann
15ac9aca18 Use # charges instead of # shots when exporting loaded charges. Fixes #115 2014-06-12 01:59:44 -04:00
blitzmann
9cc70fd301 Bump to dev version 2014-06-12 01:59:34 -04:00
blitzmann
1cae335f65 Bump version 2014-06-11 19:15:14 -04:00
blitzmann
3c5538109d Instead of passing fitID to export service, pass the fit itself. Fixes #122 2014-06-11 18:56:40 -04:00
Alexandros Kosiaris
9de7585d33 Fix blank lines in damage types import
If the text variable contains blank lines like for example ending with a
newline character or having two consecutive newline characters the
fields dict is empty and DamagePattern fails with an Exception.

This closes #124
2014-06-11 11:02:58 +03:00
blitzmann
23044b5cdb Resolves #117 2014-06-06 21:31:08 -04:00
blitzmann
dea6ced052 Fixes #118 2014-06-05 15:07:13 -04:00
DarkPhoenix
c584d668b7 Bump version number for dev release 2014-06-04 01:42:38 +04:00
Alexandros Kosiaris
bd60733bfe Use a button to toggle between firepower/miningyield
Introduce a button on both firepowerViewFull and miningyieldViewFull
views that allows switching between the two. Work by destroying each
view and recreating/populating on every button press.
2014-06-02 19:46:45 +03:00
Alexandros Kosiaris
d08b1c8284 Calculate mining yields for module/drone
Following the weaponStats paradigm, add mining yield information
throughout the drone/module modules
2014-05-28 17:47:25 +03:00
Alexandros Kosiaris
28cfaf1702 Add mining yield view
Add a panel for displaying the mining yield. Display miner and drone
yield. Only create the frontend in this commit.
2014-05-28 17:47:25 +03:00
1421 changed files with 697 additions and 307 deletions

View File

@@ -13,9 +13,9 @@ debug = False
saveInRoot = False
# Version data
version = "1.2.0"
tag = "stable"
expansionName = "Kronos"
version = "1.3.1"
tag = "git"
expansionName = "Crius"
expansionVersion = "1.0"
evemonMinVersion = "4081"

0
eos/__init__.py Executable file → Normal file
View File

0
eos/capSim.py Executable file → Normal file
View File

0
eos/config.py Executable file → Normal file
View File

0
eos/db/__init__.py Executable file → Normal file
View File

0
eos/db/gamedata/__init__.py Executable file → Normal file
View File

0
eos/db/gamedata/attribute.py Executable file → Normal file
View File

0
eos/db/gamedata/category.py Executable file → Normal file
View File

0
eos/db/gamedata/effect.py Executable file → Normal file
View File

0
eos/db/gamedata/group.py Executable file → Normal file
View File

0
eos/db/gamedata/icon.py Executable file → Normal file
View File

0
eos/db/gamedata/item.py Executable file → Normal file
View File

0
eos/db/gamedata/marketGroup.py Executable file → Normal file
View File

0
eos/db/gamedata/metaData.py Executable file → Normal file
View File

0
eos/db/gamedata/metaGroup.py Executable file → Normal file
View File

0
eos/db/gamedata/queries.py Executable file → Normal file
View File

0
eos/db/gamedata/unit.py Executable file → Normal file
View File

0
eos/db/migration.py Executable file → Normal file
View File

0
eos/db/saveddata/__init__.py Executable file → Normal file
View File

0
eos/db/saveddata/booster.py Executable file → Normal file
View File

0
eos/db/saveddata/character.py Executable file → Normal file
View File

0
eos/db/saveddata/damagePattern.py Executable file → Normal file
View File

0
eos/db/saveddata/drone.py Executable file → Normal file
View File

0
eos/db/saveddata/fit.py Executable file → Normal file
View File

0
eos/db/saveddata/fleet.py Executable file → Normal file
View File

0
eos/db/saveddata/implant.py Executable file → Normal file
View File

0
eos/db/saveddata/miscData.py Executable file → Normal file
View File

0
eos/db/saveddata/module.py Executable file → Normal file
View File

0
eos/db/saveddata/price.py Executable file → Normal file
View File

0
eos/db/saveddata/queries.py Executable file → Normal file
View File

0
eos/db/saveddata/skill.py Executable file → Normal file
View File

0
eos/db/saveddata/user.py Executable file → Normal file
View File

0
eos/db/util.py Executable file → Normal file
View File

0
eos/effectHandlerHelpers.py Executable file → Normal file
View File

0
eos/effects/__init__.py Executable file → Normal file
View File

0
eos/effects/accerationcontrolskillabmwdspeedboost.py Executable file → Normal file
View File

View File

View File

0
eos/effects/adaptivearmorhardener.py Executable file → Normal file
View File

0
eos/effects/addtosignatureradius2.py Executable file → Normal file
View File

View File

0
eos/effects/agilitymultipliereffect.py Executable file → Normal file
View File

0
eos/effects/agilitymultipliereffectpassive.py Executable file → Normal file
View File

0
eos/effects/ammofallofmultiplier.py Executable file → Normal file
View File

0
eos/effects/ammoinfluencecapneed.py Executable file → Normal file
View File

0
eos/effects/ammoinfluencerange.py Executable file → Normal file
View File

0
eos/effects/ammospeedmultiplier.py Executable file → Normal file
View File

0
eos/effects/ammotrackingmultiplier.py Executable file → Normal file
View File

0
eos/effects/angelsetbonus.py Executable file → Normal file
View File

0
eos/effects/antiwarpscramblingpassive.py Executable file → Normal file
View File

0
eos/effects/armorallrepairsystemsamountbonuspassive.py Executable file → Normal file
View File

0
eos/effects/armoredwarfaremindlink.py Executable file → Normal file
View File

0
eos/effects/armorhpbonusadd.py Executable file → Normal file
View File

0
eos/effects/armorhpbonusaddpassive.py Executable file → Normal file
View File

0
eos/effects/armorhpmultiply.py Executable file → Normal file
View File

0
eos/effects/armorreinforcermassadd.py Executable file → Normal file
View File

0
eos/effects/armorrepair.py Executable file → Normal file
View File

0
eos/effects/armorrepairprojectormaxrangebonus.py Executable file → Normal file
View File

0
eos/effects/armortankinggang.py Executable file → Normal file
View File

0
eos/effects/armortankinggang2.py Executable file → Normal file
View File

0
eos/effects/armorupgradesmasspenaltyreductionbonus.py Executable file → Normal file
View File

View File

View File

0
eos/effects/bclargeenergyturretcapacitorneedbonus.py Executable file → Normal file
View File

0
eos/effects/bclargeenergyturretcpuneedbonus.py Executable file → Normal file
View File

0
eos/effects/bclargeenergyturretpowerneedbonus.py Executable file → Normal file
View File

0
eos/effects/bclargehybridturretcapacitorneedbonus.py Executable file → Normal file
View File

0
eos/effects/bclargehybridturretcpuneedbonus.py Executable file → Normal file
View File

0
eos/effects/bclargehybridturretpowerneedbonus.py Executable file → Normal file
View File

0
eos/effects/bclargeprojectileturretcpuneedbonus.py Executable file → Normal file
View File

0
eos/effects/bclargeprojectileturretpowerneedbonus.py Executable file → Normal file
View File

0
eos/effects/biologytimebonusfixed.py Executable file → Normal file
View File

0
eos/effects/blockaderunnercloakcpupercentbonus.py Executable file → Normal file
View File

0
eos/effects/boosterarmorhppenalty.py Executable file → Normal file
View File

0
eos/effects/boosterarmorrepairamountpenalty.py Executable file → Normal file
View File

0
eos/effects/boostercapacitorcapacitypenalty.py Executable file → Normal file
View File

0
eos/effects/boostermaxvelocitypenalty.py Executable file → Normal file
View File

View File

0
eos/effects/boostermissileexplosionvelocitypenalty.py Executable file → Normal file
View File

0
eos/effects/boostermissilevelocitypenalty.py Executable file → Normal file
View File

0
eos/effects/boostermodifyboosterarmorpenalties.py Executable file → Normal file
View File

View File

0
eos/effects/boostermodifyboostermissilepenalty.py Executable file → Normal file
View File

0
eos/effects/boostermodifyboostershieldpenalty.py Executable file → Normal file
View File

0
eos/effects/boostermodifyboosterturretpenalty.py Executable file → Normal file
View File

0
eos/effects/boostershieldcapacitypenalty.py Executable file → Normal file
View File

0
eos/effects/boosterturretfalloffpenalty.py Executable file → Normal file
View File

0
eos/effects/boosterturretoptimalrangepenalty.py Executable file → Normal file
View File

0
eos/effects/boosterturrettrackingpenalty.py Executable file → Normal file
View File

0
eos/effects/caldarisetbonus3.py Executable file → Normal file
View File

0
eos/effects/caldarisetlgbonus.py Executable file → Normal file
View File

0
eos/effects/caldarishipecmburstoptimalrangecb3.py Executable file → Normal file
View File

0
eos/effects/caldarishipewcapacitorneedcc.py Executable file → Normal file
View File

0
eos/effects/caldarishipewcapacitorneedcf2.py Executable file → Normal file
View File

0
eos/effects/caldarishipewfalloffrangecb3.py Executable file → Normal file
View File

0
eos/effects/caldarishipewfalloffrangecc2.py Executable file → Normal file
View File

Some files were not shown because too many files have changed in this diff Show More