Skip to content
This repository has been archived by the owner on Nov 29, 2017. It is now read-only.

Commit

Permalink
Change version
Browse files Browse the repository at this point in the history
  • Loading branch information
VladimirPal committed Oct 20, 2016
1 parent 6cc7d20 commit 84a6057
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/app.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<!-- start Mixpanel -->
<script type="text/javascript">
(function() {
if (process.env.NODE_ENV !== 'production') {
if (process.env.NODE_ENV !== 'development') {
(function(e,a){if(!a.__SV){var b=window;try{var c,l,i,j=b.location,g=j.hash;c=function(a,b){return(l=a.match(RegExp(b+"=([^&]*)")))?l[1]:null};g&&c(g,"state")&&(i=JSON.parse(decodeURIComponent(c(g,"state"))),"mpeditor"===i.action&&(b.sessionStorage.setItem("_mpcehash",g),history.replaceState(i.desiredHash||"",e.title,j.pathname+j.search)))}catch(m){}var k,h;window.mixpanel=a;a._i=[];a.init=function(b,c,f){function e(b,a){var c=a.split(".");2==c.length&&(b=b[c[0]],a=c[1]);b[a]=function(){b.push([a].concat(Array.prototype.slice.call(arguments,
0)))}}var d=a;"undefined"!==typeof f?d=a[f]=[]:f="mixpanel";d.people=d.people||[];d.toString=function(b){var a="mixpanel";"mixpanel"!==f&&(a+="."+f);b||(a+=" (stub)");return a};d.people.toString=function(){return d.toString(1)+".people (stub)"};k="disable time_event track track_pageview track_links track_forms register register_once alias unregister identify name_tag set_config reset people.set people.set_once people.increment people.append people.union people.track_charge people.clear_charges people.delete_user".split(" ");
for(h=0;h<k.length;h++)e(d,k[h]);a._i.push([b,c,f])};a.__SV=1.2;b=e.createElement("script");b.type="text/javascript";b.async=!0;b.src="undefined"!==typeof MIXPANEL_CUSTOM_LIB_URL?MIXPANEL_CUSTOM_LIB_URL:"file:"===e.location.protocol&&"//cdn.mxpnl.com/libs/mixpanel-2-latest.min.js".match(/^\/\//)?"https://cdn.mxpnl.com/libs/mixpanel-2-latest.min.js":"//cdn.mxpnl.com/libs/mixpanel-2-latest.min.js";c=e.getElementsByTagName("script")[0];c.parentNode.insertBefore(b,c)}})(document,window.mixpanel||[]);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const request = require('request');
const semver = require('semver');

export default function checkVersion(callback) {
const currentVersion = 'v0.1.0-beta.2';
const currentVersion = 'v0.1.0-beta.3';

const options = {
url: 'https://api.github.com/repos/web-pal/DBGlass/releases/latest',
Expand Down
2 changes: 1 addition & 1 deletion app/helpers.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const os = require('electron').remote.require('os');

const mixpanelWorkEnv = 'development';
const mixpanelWorkEnv = 'production';

/* global mixpanel */
export function mixPanelTrack(name, args) {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "DBGlass",
"productName": "DBGlass",
"version": "0.0.0",
"version": "0.1.0-beta.3",
"description": "Cross platform GUI PostgreSQL client",
"main": "main.js",
"scripts": {
Expand Down

0 comments on commit 84a6057

Please sign in to comment.