forked from pr0d1r2/geokit-gem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
History.txt
95 lines (68 loc) · 3.37 KB
/
History.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
=== 1.3.2.10 /2009-12-10
* Merge changes from staszek/geokit-gem (Turned on reading from cached location model for no-google providers)
=== 1.3.2.9 / 2009-06-03
* Merge changes from staszek/geokit-gem
* remove unnecessary file that came from mentioned upstream
=== 1.3.2.8 / 2009-06-03
* Add changes from staszek/geokit-gem
=== 1.3.2.7 / 2009-06-03
* Added more strict requirements for model
=== 1.3.2.6 / 2009-06-03
* Added possibility to cache lat and lng stored in another tables (useful when migrating)
* Validates presence of :address in CachedLocation model
=== 1.3.2.5 / 2009-06-03
* Fixed failed geocode request treaten as successful
=== 1.3.2.4 / 2009-06-03
* Changed naming of one method to be precise
=== 1.3.2.3 / 2009-06-03
* Description change
=== 1.3.2.2 / 2009-06-03
* Fixes
=== 1.3.2.1 / 2009-06-03
* Added caching in ActiveRecord model
=== 1.3.2 / 2009-05-27
* Fixed blank address geocoding bug
=== 1.3.1 / 2009-05-21
* Support for External geocoders file (thanks dreamcat4)
* Support multiple ip geocoders, including new setting for ip_provider_order (thanks dreamcat4)
=== 1.3.0 / 2009-04-11
* Added capability to define multiple API keys for different domains that may be pointing to the same application (thanks Glenn Powell)
* Added numeric accuracy accessor for Yahoo and Google geocoders (thanks Andrew Fecheyr Lippens)
* Implement #hash and #eql? on LatLng to allow for using it as a hash key (thanks Luke Melia and Ross Kaffenberger)
*
=== 1.2.6 / 2009-03-19
* misc minor fixes
=== 1.2.5 / 2009-02-25
* fixed GeoLoc.to_yaml
* fixed minor google geocoding bug
* now periodically publishing the Geokit gem to Rubyforge. Still maintaining development and managing contributions at Github
=== 1.2.4 / 2009-02-25
* Improved Google geocoder in the Gem: Support for multiple geocoding results from the Google geocoder. (thanks github/pic)
=== 1.2.3 / 2009-02-01
* Adding GeoPluginGeocoder for IP geocoding (thanks github/xjunior)
* Ruby 1.9.1 compatibility and Unicode fixes (thanks github/Nielsomat)
* various bug fixes
=== 1.2.1 / 2009-01-05
* minor bug fixes
* reverse geocoding added (Google only): res=Geokit::Geocoders::GoogleGeocoder.reverse_geocode "37.791821,-122.394679"
* nautical miles added (in addition to miles and KM)
=== 1.2.0 / 2008-12-01
* Improved Geocoder.us support -- respects authentication, and can geocode city names or zipcodes alone
* cross-meridian finds work correctly with bounds conditions
* fixed a problem with columns with "distance" in their name
* added Geonames geocoder
* the gem and plugin are now hosted at Github.
=== 1.1.1 / 2008-01-20
* fixes for distance calculation (in-memory and database) when distances are either very small or 0.
* NOTE: older versions of MySQL/Postgres may not work. See readme for more info.
=== 1.1.0 / 2007-12-07
* Geokit is now Rails 2.0 / Edge friendly.
=== 1.0.0 / 2007-07-22
* see http://earthcode.com/blog/2007/07/new_geokit_release.html
* auto geocoding: an option to automatically geocode a model's address field on create
* in-memory sort-by-distance for arrays of location objects
* bounding box queries: `Location.find :all, :bounds=>[sw,ne]`
* improved performance by automatically adding a bounding box condition to radial queries
* new Bounds class for in-memory bounds-related operations
* ability to calculate heading and midpoint between two points
* ability to calculate endpoint given a point, heading, and distance