forked from elmarquez/ngSolr
-
Notifications
You must be signed in to change notification settings - Fork 2
/
CHANGES.txt
156 lines (117 loc) · 5.64 KB
/
CHANGES.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
Version History
===============
Backlog:
* Set all logging to DEBUG or ERROR instead of INFO
* Complete unit tests
* Reimplement Solr, associated controllers to use promises throughout
* Implement Grunt, Travis configuration for automatic linting, testing, minifying
* Implement modified map clusterer function to spread out stacked pins, from https://github.com/jawj/OverlappingMarkerSpiderfier
* DateFacetController should work with either of year, or start/end date ranges or ... split into separate controllers
* Finish graph controller, graph service component
Current:
0.6.2
? Remove JQuery, JQuery UI dependencies for SearchBoxController
0.6.1
* Upgraded testing setup
* Partial unit tests for SelectionSet, Solr services
* Complete unit tests for TextFilter, Utils service
0.6.0
* Forked SimpleSearch into separate application, repository
* Added IE 7/8/9 polyfill to support JSON, moved HTML5 shim to top of HEAD
* IE 7 does not provide console.log service. Wrapped logging calls in a check
for window.console object
* Removed unnecessary application configuration values, extraneous functions
* Updated SolrSearchService to use streamlined configuration
* Added routing to application, to enable RESTful representation of the query
* Updated controllers to determine their state from the current location
0.5.7
* Removed TypeAhead directive
* Close search hints list on submit action
* Histogram of search results by date
* Added SimpleSearch application, associated controllers and directives
0.5.6
* On page load, parses location to determine if there is a starting search query, then executes query
* Added isSelected property to FieldFacetController
* Moved getFacets, getFacetCounts methods from SolrSearchService into SolrQuery
* Document search results include state and exist dates.
* Document and location search results include a thumbnail image.
* Added AutoComplete filter as an alternate to the Bootstrap Typeahead.
0.5.5
* Query parameters are now named so that they can be individually managed by different controllers
* Split map query from document query in location based search view
* Fixed formatting of document search results in map view
* MapController listens for updates on the SelectionSetService and puts focus on selected item
* One map info window should be open at a time
* Created SelectionSetService
0.5.4
* Entity titles include the exist dates
* Modified SolrSearchService to allow multiple query parts
* Filter results by date ranges using DateFacetController
* Partial unit tests for SolrFacet, SolrQuery, SolrSearchService
* SolrSearchService broadcasts updates for individual named queries
* Entity map marker and document record includes exist dates
0.5.3
* Removed Angular partials
* Initial implementation of DateRangeController, displays min/max years in the whole data set
* Removed RangeFacetController
* Updated FacetSelectionController to display and remove facets from a named query in the SolrSearchService
* Updated FieldFacetController to get results from SolrSearchService, add facet constraint to named query
0.5.2
* Named and default queries in SolrSearchService
* Marker info window closes when clicking its close button
0.5.1
* Updated DocumentSearchResultsController to work with SolrSearchService
* Updated pagination setup on DocumentSearchController to work with SolrSearchService
* Updated SearchHistoryController to only record changes in the query object
0.5.0
* Defined default map cluster icon options
* SearchBoxController now updates search query in SolrSearchService
* Google API key removed from script loading call
* Reorganized application controllers to use Solr search service
* Updated DocumentSearchResultsController to use SolrSearchService
* Replaced DocumentSearchController with DocumentSearchResultsController for text based display of search results
* Created SolrSearchService
* Map starts at specified coordinates, or Australia if not specified
* Added mapping default arguments to application constants
0.4.0
* Renamed controllers throughout
* Moved global classes into separate common.js file
* Created separate document, image, location search applications and pages
* Updated application routing for document, image, location searching
* Created document, image, location partial views
* Reorganized application to match Angular Seed Project implementation
* Made various free floating methods members of their respective controllers
0.3.2
* Revised pagination function
* Created date range facet controller
* Set minimum facet count threshold for facet list
* Fixed missing facet counts
0.3.1
* Update the location fragment to reflect the current query
* Hide pagination index when there are no results
* Parse URL fragment to get starting query parameters
* Prepended && to facet URLs to aid parsing
0.3.0
* Documentation in JsDoc format throughout
* Faceted search on fields
* Facet parameters added into search query url
* Facet list is part of the query object, to ensure it becomes part of the
search history
* Facet controller for basic text field search
* Defined an init method for each controller to take care of all startup
actions
* Added SOLR_CORE as an application constant
* Created Selection controller to display and manage the set of facets,
constraints
* Query history panel displays the last N queries
* Autocomplete search hints in keyword search box
0.2.1
* Paged search results
* Paginated search index
* Basic AJAX keyword search through text field entry
* Removed AJAX-Solr and replaced with Angular.js
0.2.0
* First pass implementation using AJAX-Solr
* Added Bootstrap library
0.1.0
* Static mockup of interface