Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
cmdrmcdonald committed Apr 15, 2017
1 parent c0a732a commit 9c6f5fb
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 2 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
#2.3.3
* Remove unused blueprint when hitting reset
* Add 'purchase module' external link to EDDB for refit items
* Use coriolis-data 2.3.3:
* Add Felicity Farseer to list of engineers that supply sensor and detailed surface scanner modifications

#2.3.2
* Use scan range for DSS rather than scan time
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "coriolis_shipyard",
"version": "2.3.2",
"version": "2.3.3",
"repository": {
"type": "git",
"url": "https://github.com/EDCD/coriolis"
Expand Down
2 changes: 0 additions & 2 deletions src/app/components/CostSection.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -334,10 +334,8 @@ export default class CostSection extends TranslatedComponent {
const { retrofitCosts } = this.state;
const { ship } = this.props;

console.log(`retrofitCosts is ${JSON.stringify(retrofitCosts, null, 2)}`);
// Provide unique list of non-PP module EDDB IDs to buy
const modIds = retrofitCosts.filter(item => item.retroItem.incCost && item.buyId && !item.buyPp).map(item => item.buyId).filter((v, i, a) => a.indexOf(v) === i);
console.log(`modIds is ${JSON.stringify(modIds)}`);

// Open up the relevant URL
window.open('https://eddb.io/station?m=' + modIds.join(','));
Expand Down
4 changes: 2 additions & 2 deletions src/app/shipyard/Ship.js
Original file line number Diff line number Diff line change
Expand Up @@ -449,8 +449,8 @@ export default class Ship {

/**
* Set special for a module
* @param {Object} m The module for which to set the blueprint
* @param {Object} bp The blueprint
* @param {Object} m The module for which to set the blueprint
* @param {Object} special The special
*/
setModuleSpecial(m, special) {
if (m.blueprint) {
Expand Down

0 comments on commit 9c6f5fb

Please sign in to comment.