forked from Countly/countly-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
191 lines (121 loc) · 7.02 KB
/
CHANGELOG
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
14.08
* Added density reporting for Android
* New license, check LICENSE.md for details
* Visual improvements, cross-browser compatibility fixes
* Fix issue #81 (https://github.com/Countly/countly-server/issues/81)
* Fix issue #87 (https://github.com/Countly/countly-server/issues/87)
* Fix issue #91 (https://github.com/Countly/countly-server/issues/91)
* Fix issue #92 (https://github.com/Countly/countly-server/issues/92)
* Fix issue #96 (https://github.com/Countly/countly-server/issues/96)
13.11
* Fix issue #88 (https://github.com/Countly/countly-server/issues/88)
* Fix issue #98 (https://github.com/Countly/countly-server/issues/98)
* Fixed minor error in English translation
* Renamed LICENCE.md to LICENSE.md
13.10
* Add new iPhone device names (iPhone 5S and iPhone 5C)
* Add replica set configuration for MongoDB (https://github.com/Countly/countly-server/pull/74)
* Fix issue #77 (https://github.com/Countly/countly-server/issues/77)
13.09
* Optimizations and fixes to the API for viewing the data on Countly for iPhone
* Optimization for begin_session and end_session handling especially to prevent
a new session creation on Android when the user changes the screen orientation.
end_session is ignored if begin_session is received less than ~10 secs ago.
* Added "Yesterday" to available date buttons
* Fixed platform versions visualization of Mac
* General UI optimizations
13.06
* Added session durations view that shows users categorized into predefined
session duration buckets. User is categorized into one of 0-10 seconds,
11-30 seconds, 31-60 seconds, 1-3 minutes, 3-10 minutes, 10-30 minutes,
30-60 minutes or > 1 hour according to this session duration (accessible
from Engagement > Session durations)
* Added resolutions view that shows detailed device resolution data
(width and height) for new and all users using two pie charts (accessible
from Analytics > Resolutions).
* Added cluster mechanism to api.js to fork itself according to number of
cores in the server in order to increase utilisation. This can also be
configured from api/config.js by changing "worker" count.
* Added two new API paths, /o/analytics/dashboard and /o/analytics/countries
that returns ready-to-use metrics for today, 7 days and 30 days. This API
is used by Countly Mobile Apps.
* Added individual event key deletion to event configuration modal.
* Improved and optimized update mechanism during dashboard navigation.
Navigation is now much more smoother.
* Added a script (bin/geoip-updater.sh) to fetch and update geoip data.
Running this script will update country and city database from Maxmind
database.
* Various performance and visual improvements to Events view.
* Added switch to turn off or change session_duration limit of 120 seconds
in api/config.js (session_duration_limit).
* Added host configuration to both app.js and api.js configuration files
(/frontend/express/config.js and /api/config.js) to make it possible to
run dashboard and application on different servers (defaults to localhost)
12.12
* Added Windows Phone and Blackberry WebWorks support.
* Added management API. All user and application related operations can
be performed through the API using an API key.
* Modified data read API (/o) to be accessible only by using an API key.
* Added Portuguese and Russian to available languages.
* Added event key sorting to event configuration modal.
* Removed "EVENTS SERVED" from the dashboard and added "TIME SPENT" metric.
* Fixed a bug that prevented correct visualization of event data which has
segmentation values 0-23 (hours of the day).
* Modified event segmentation bar chart not to show stacked data.
* Modified event segmentation count and sum below the graph to show only
the count and sum for the selected segmentation key.
* Optimized dashboard experience on tablet devices.
* Added awesome animation for closing popups with ESC key :)
12.09
* Added localization support. All the pages have translations in the
following languages: Chinese, Dutch, French, German, Italian, Japanese,
Spanish and Turkish (https://www.transifex.com/projects/p/countly/).
* Added city level location information to countries view. City level
location information is available only for the country selected in
timezone configuration of an application.
* Added ghost graphs for all the 6 time graphs on the dashboard view. A
light gray graph will represent the previous period. For instance if "30
days" is selected, ghost graph will show the stats for the previous 30
days.
* Added current month to the available time buckets.
* Optimized total user calculation for date ranges other than current
year, month and day which already show the absolute number.
12.08
* Added custom event support. Each event has a key as well as a count and
an optional sum property. There can be unlimited number of segmentation
keys for an event.
* Added help mode. After activated from the sidebar under Management >
Help, certain items in the interface show a small descriptive text when
hovered on.
* Added option to re-order applications listed in the sidebar.
* Added option to select a single day from the date picker. When a single
day is selected hourly data for that day is displayed.
* Optimized dashboard refresh process. While refreshing the dashboard, only
the data for the current day is requested from the read API. Current day
data is merged into the existing data which is fetched the first time
user logs in to the dashboard.
* Fixed active application and selected date reset problem after a hard
page reload. Active application and selected date are stored in
localStorage until user logs out.
12.07
* Added platforms view under analytics section.
* Added app versions view under analytics section and API is modified
accordingly to handle _app_version metric.
* Added summary bars to device view to show top platform, top platform
version and top resolution.
* Added reset data option to manage apps screen. Global admin can reset
the data stored for any application.
* Added timestamp (UTC UNIX timestamp) parameter to the write API. If
provided, the event is recorded with the given time instead of current
time.
* Fixed application delete bug that prevented app_users collection to be
cleared. app_id field is added to app_users collection.
* Fixed JSON escape issue for the read API when device name, carrier name
etc. contained a single quote.
12.06
* Added user management support. A user can be created as a global admin to
manage & view all apps or can be assigned to any application as an
admin or user. An admin of an application can edit application settings.
A user of an application can only view analytics for that application
and cannot edit its settings.
* Added csfr protection to all methods provided through app.js.