Skip to content

Commit

Permalink
v0.7.1 switch to rhcloud as service provider
Browse files Browse the repository at this point in the history
  • Loading branch information
Oleksandr Bardanov committed Aug 3, 2015
1 parent 705cac9 commit 332ed40
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions examples/onlineTrackingClient.js
Expand Up @@ -5,8 +5,8 @@
// use require('./onlineTrackingClient').init() to activate tracking

define(function(require, exports){
var trackingServiceUrl = 'http://brackets-online.herokuapp.com/',
// http://brackets-online.herokuapp.com/ is an address of default tracking service
var trackingServiceUrl = 'http://online-dnbard.rhcloud.com/',
// http://online-dnbard.rhcloud.com/ is an address of default tracking service
// Change it if you use self-hosting instance of online tracking service
appToken = <PLACE APPLICATION TOKEN HERE>,
// read https://github.com/dnbard/brackets-extension-rating/wiki/Online-and-max-users-counters-in-this-extension
Expand Down
2 changes: 1 addition & 1 deletion extension/package.json
Expand Up @@ -3,7 +3,7 @@
"title": "Extensions Rating",
"description": "Shows extension's download count(daily, overall, average and per version) and GitHub stats(stars and forks). Find most usable and popular extensions for Brackets via badges system! Sort extensions and find themes!",
"homepage": "https://github.com/dnbard/brackets-extension-rating",
"version": "0.7.0",
"version": "0.7.1",
"author": "Alex Bardanov <dnbard@gmail.com>",
"license": "MIT",
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion extension/services/online.js
@@ -1,5 +1,5 @@
define(function(require, exports){
var trackingServiceUrl = 'http://brackets-online.herokuapp.com/',
var trackingServiceUrl = 'http://online-dnbard.rhcloud.com/',
appToken = '53d5549ee31c428fe600006f',
mins60 = 60 * 60 * 1000,
mins5 = 5 * 60 * 1000,
Expand Down
2 changes: 1 addition & 1 deletion extension/services/registry.js
Expand Up @@ -45,7 +45,7 @@ define(function(require, exports, module){

exports.init = function(){
var path = state === 'production'?
'http://brackets-rating.herokuapp.com/':
'http://extensions-dnbard.rhcloud.com/':
'http://localhost:9000/';

if (achievements.length === 0){
Expand Down

0 comments on commit 332ed40

Please sign in to comment.