diff --git a/changelog.txt b/changelog.txt index 0d7ca6836e..8cfc5960df 100644 --- a/changelog.txt +++ b/changelog.txt @@ -15,6 +15,34 @@ # # # # # # ## # # # # # # # # #### # # # # # # #### #### #### #### #### +________________________________________________________________________________ +_7.5.0__________________________________________________________________________ + +New Features: +-Streamlined stockpile import and added import into stockpile (Issue #228) +-Including sub items are now optional for stockpile flag filters (Issue #358) +-Added SellMin/BuyMax columns to the stockpile tool (Issue #365) +-Added Volume/SellMin/BuyMax columns to the market orders tool (Issue #365 #364) +-Added journal menu for finding related transactions/contracts/industry jobs +-Added context column to the journal +-Added Transaction ID column to the Transactions tool +-Added Order ID column to the Market Orders tool +-Added Job ID column to the Industry Jobs tool + +Bug Fixes: +-Fixed a bug in include sub container filter (always included subs) +-Ignore leading/trailing white space on stockpile text import +-Stockpile contracts match all wasn't working (Issue #266) +-Fix for "Contract not public" and "Contract not found" errors (Issue #360) +-Fixed concurrency problem in ApiIdConverter.getItemUpdate() + +Changed: +-Hide zeroes that are stand-in for no data on subpiles rows in stockpile tool + +Code: +-Switch to using the affiliation and names endpoints +-Removed the contract price API (Thanks to Rihan for hosting it for so long) + ________________________________________________________________________________ _7.4.0__________________________________________________________________________ diff --git a/pom.xml b/pom.xml index a900d6908d..8499ec5254 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ net.nikr jeveassets jar - 7.5.0-SNAPSHOT + 7.5.0 jeveassets jEveAssets is an out-of-game asset manager for Eve-Online, written in Java http://eve.nikr.net/jeveasset diff --git a/src/main/java/net/nikr/eve/jeveasset/Program.java b/src/main/java/net/nikr/eve/jeveasset/Program.java index d259e7aef2..f89b0d7cd4 100644 --- a/src/main/java/net/nikr/eve/jeveasset/Program.java +++ b/src/main/java/net/nikr/eve/jeveasset/Program.java @@ -121,7 +121,7 @@ private enum ProgramAction { TIMER } //Major.Minor.Bugfix [Release Candidate n] [BETA n] [DEV BUILD #n]; - public static final String PROGRAM_VERSION = "7.5.0 DEV BUILD 1"; + public static final String PROGRAM_VERSION = "7.5.0"; public static final String PROGRAM_NAME = "jEveAssets"; public static final String PROGRAM_HOMEPAGE = "https://eve.nikr.net/jeveasset"; private static final boolean PROGRAM_DEV_BUILD = false; diff --git a/src/main/resources/splash.jpg b/src/main/resources/splash.jpg index 1fee4749e8..020e7949ea 100644 Binary files a/src/main/resources/splash.jpg and b/src/main/resources/splash.jpg differ