Skip to content

Commit

Permalink
remove 3rd party plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanocudini committed Apr 18, 2019
1 parent 34d87a3 commit 21491a6
Show file tree
Hide file tree
Showing 8 changed files with 26 additions and 21 deletions.
12 changes: 8 additions & 4 deletions .meteor/packages
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,12 @@ keplerjs:pois
keplerjs:tracks
keplerjs:photos

keplerjs:robots
keplerjs:wunderground
keplerjs:googlemaps
keplerjs:openrouteservice
#keplerjs:robots
#keplerjs:wunderground
#keplerjs:googlemaps
#keplerjs:openrouteservice

##work in progress
#keplerjs:gtfs
#keplerjs:mapillary
#keplerjs:foursquare
4 changes: 0 additions & 4 deletions .meteor/versions
Original file line number Diff line number Diff line change
Expand Up @@ -68,22 +68,18 @@ keplerjs:[email protected]
keplerjs:[email protected]
keplerjs:[email protected]
keplerjs:[email protected]
keplerjs:[email protected]
keplerjs:[email protected]
keplerjs:[email protected]
keplerjs:[email protected]
keplerjs:[email protected]
keplerjs:[email protected]
keplerjs:[email protected]
keplerjs:[email protected]
keplerjs:[email protected]
keplerjs:[email protected]
keplerjs:[email protected]
keplerjs:[email protected]
keplerjs:[email protected]
keplerjs:[email protected]
keplerjs:[email protected]
keplerjs:[email protected]
kidovate:[email protected]
konecty:[email protected]
[email protected]
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[Downloadable releases](https://github.com/Keplerjs/Kepler/releases)

## Next version
...
- remove 3rd party kepler plugins from .meteor/packages

## v1.6.3
- renamed all caching settings in cacheTime
Expand Down
5 changes: 4 additions & 1 deletion packages/base/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## keplerjs:base

Keplerjs meta package to include base components
Keplerjs meta package to include base kepler packages:

keplerjs:core
keplerjs:core-ui
17 changes: 9 additions & 8 deletions packages/categories/client/Cats.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@

if(Meteor.isClient) {
Accounts.onLogin(function() {

K.Cats.loadActiveCats();

});
}

Kepler.Cats = {

//TODO conver in function and sort by name
Expand Down Expand Up @@ -46,11 +55,3 @@ Kepler.Cats = {
});
}
};

if(Meteor.isClient) {
Accounts.onLogin(function() {

K.Cats.loadActiveCats();

});
}
2 changes: 1 addition & 1 deletion packages/categories/server/cats.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Meteor.publish('catsActive', function() {
{
var cur = K.findCatsActive();

console.log('Pub: catsActive' );
//console.log('Pub: catsActive' );

return cur;
}
Expand Down
4 changes: 3 additions & 1 deletion packages/core/server/pubs/places.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ Meteor.publish('placesByBBox', function(bbox) {

if(diag < K.settings.public.map.bboxMaxDiagonal) {
var cur = K.findPlacesByBBox(bbox);
console.log('Pub: placesByBBox ', this.userId, cur.count());

//console.log('Pub: placesByBBox ', this.userId, cur.count());

return cur;
}
else
Expand Down
1 change: 0 additions & 1 deletion packages/osm/plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ K.Plugin({
},
settings: {
"osm": {
//TODO cachetime
"findByLocDist": 50,
"findByLocLimit": 10,
"findByBBoxLimit": 10,
Expand Down

0 comments on commit 21491a6

Please sign in to comment.