Skip to content

Commit

Permalink
closed #131 new "route search" algorithm, added current map systems t…
Browse files Browse the repository at this point in the history
…o live search, added refresh/update functionality for each found route, added bulk route refresh function, added "meta map" route search (search on multiple maps), added route "filters" (restrict search on "stargates", "wormholes", "jumpbridges"), added route "filter" for wormholes (reduced/critical wormholes)

closed #89 fixed "loop connections" on same system
#84 added error messages for "invalid" CREST "Client ID"
added "bootboxjs" (customized styled checkboxes/radio buttons) CSS only
"Font Awesome" version upgrade 4.4.0 -> 4.61
"Bootbox.js" version upgrade 4.3.0 -> 4.4.0
fixed "system dialog" (added responsive layout)
  • Loading branch information
exodus4d committed Apr 24, 2016
1 parent b28cd1a commit ac1a746
Show file tree
Hide file tree
Showing 46 changed files with 2,208 additions and 797 deletions.
3 changes: 1 addition & 2 deletions app/main/controller/api/connection.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ public function save(\Base $f3){

// search if systems are neighbors
$routeController = new Route();
$routeController->initJumpData();
$route = $routeController->findRoute($connectionData['sourceName'], $connectionData['targetName'], 1);

if($route['routePossible'] == true){
Expand Down Expand Up @@ -103,7 +104,6 @@ public function save(\Base $f3){
*/
public function delete(\Base $f3){
$connectionIds = $f3->get('POST.connectionIds');
$activeCharacter = $this->getCharacter();

if($activeCharacter = $this->getCharacter()){
/**
Expand All @@ -118,7 +118,6 @@ public function delete(\Base $f3){
}
}


echo json_encode([]);
}

Expand Down
Loading

0 comments on commit ac1a746

Please sign in to comment.