Skip to content

Commit

Permalink
Merge pull request #6 from Countly/next
Browse files Browse the repository at this point in the history
Next
  • Loading branch information
frknbasaran committed Apr 29, 2019
2 parents 8a517cb + 8e60041 commit 14218a7
Show file tree
Hide file tree
Showing 92 changed files with 8,034 additions and 2,193 deletions.
9 changes: 9 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
root = true

[*]
end_of_line = lf
insert_final_newline = false

[*.{js,html}]
indent_style = space
indent_size = 4
35 changes: 35 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,38 @@
## Version 19.02.1

**Fixes**
* [alerts] fixed compare value bug
* [assistant] fixed callback in case of failure to fetch rss feed
* [crashes] additional checks for database failures
* [data] fixed none tracking mode
* [frontend] allow to use device_list on server side too
* [frontend] fixed missing texts for formatSecond
* [frontend] handle logout GET with redirect just in case
* [push] fixed credentials setting validation
* [star-rating] created separate filter popup for comments and ratings tab
* [star-rating] trigger_button_text field problem solved

**Enterprise fixes**
* [attribution] do the regex check on click matching instead of direct match
* [attribution] fixed encoding redirect url
* [cohorts] fixed period check
* [crash_symbolication] fixed api checks and texts
* [drill] fixed BY query for array properties
* [drill] fixed jumping order of BY properties
* [remote-config] correctly check for parameter length
* [remote-config] fixed for boolean values
* [users] correctly check for number type when displaying user properties

**New Features**
* [frontend] add css class to #content based on route name
* [frontend] add css class to body based on selected language
* [populator] mark users generated with populator by custom property

**Development related**
* [ide] added a project editorconfig file
* [log] do not log failed CSRF checks
* [sdk] updated web and nodejs sdks

## Version 19.02

**Fixes**
Expand Down
3 changes: 3 additions & 0 deletions Dockerfile-core
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
FROM phusion/baseimage:0.9.16

ARG COUNTLY_CONFIG_API_MONGODB_HOST=localhost
ARG COUNTLY_CONFIG_FRONTEND_MONGODB_HOST=localhost

CMD ["/sbin/my_init"]

## Setup Countly
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Countly Product Analytics - Community Edition License
--------------------------------------------------

Copyright (C) 2011-2018 Countly, https://count.ly
© Countly, https://count.ly

Countly is provided under AGPL v3 with modified Section 7. In accordance
with Section 7 of the AGPL, the Works included in this package or repository
Expand Down
5 changes: 2 additions & 3 deletions api/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ const versionInfo = require('../frontend/express/version.info');
var t = ["countly:", "api"];

if (cluster.isMaster) {
console.log("Starting master");
common.db = plugins.dbConnection();
t.push("master");
t.push("node");
t.push(process.argv[1]);
Expand Down Expand Up @@ -201,9 +203,6 @@ const passToMaster = (worker) => {
};

if (cluster.isMaster) {
console.log("Starting master");
common.db = plugins.dbConnection();

const workerCount = (countlyConfig.api.workers)
? countlyConfig.api.workers
: os.cpus().length;
Expand Down
Loading

0 comments on commit 14218a7

Please sign in to comment.