Skip to content

Commit

Permalink
Bumped version to 2.4.0 and updated various other settings
Browse files Browse the repository at this point in the history
  • Loading branch information
mikesname committed Feb 8, 2021
1 parent fe64b3f commit 508365e
Show file tree
Hide file tree
Showing 7 changed files with 946 additions and 141 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ node_modules/
vendor
pkg
.DS_Store
.idea
*.iml
.bundle

tests/phpunit/solr.ini
solr-core/collection1/data
solr-core/omeka/data
7 changes: 6 additions & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,12 @@ module.exports = function(grunt) {
'!tests/**',

// Editor settings
'!*.vim'
'!*.vim',
'!.idea',
'!*.iml',

// Docker
'!docker-compose.yml'

]
}
Expand Down
2 changes: 1 addition & 1 deletion SolrSearchPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ protected function _installGenericFacet($slug, $label)
protected function _setOptions()
{
set_option('solr_search_host', 'localhost');
set_option('solr_search_port', '8080');
set_option('solr_search_port', '8983');
set_option('solr_search_core', '/solr/omeka/');
set_option('solr_search_facet_limit', '25');
set_option('solr_search_facet_sort', 'count');
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"require-dev": {
"phpunit/phpunit": "3.7.*"
"phpunit/phpunit": "^4.8"
}
}
Loading

0 comments on commit 508365e

Please sign in to comment.