Skip to content

Commit

Permalink
Version bump to 1.0.0
Browse files Browse the repository at this point in the history
However, due to weirdness in the windows installer, I might have to bump this to 1.0.1 for launch...
  • Loading branch information
devgeeks committed Jul 27, 2014
1 parent 315d229 commit 6ae6ddb
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Encryptr",
"version": "1.0.0-RC.1",
"version": "1.0.0",
"main": "www/index.html",
"ignore": [
"**/.*",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Encryptr",
"version": "1.0.0-RC.1",
"version": "1.0.0",
"repository": "https://github.com/devgeeks/Encryptr.git",
"main": "www/js/Encryptr.js",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions src/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -154,10 +154,10 @@ var Encryptr = (function (window, console, undefined) {

Encryptr.prototype.onResume = function(event) {
// Logging out seems a bit overkill
// For now, put a 2 hour timeout on it...
// For now, put a 10 minute timeout on it...
var timeoutInMinutes =
Math.floor(((Date.now() - window.app.lastPaused) / 1000) / 60);
if (timeoutInMinutes >= 120) {
if (timeoutInMinutes >= 10) {
window.app.accountModel.logout(function() {
window.app.loginView.disable();
// Throw up the login screen
Expand Down
3 changes: 2 additions & 1 deletion www/config.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version='1.0' encoding='utf-8'?>
<widget id="org.devgeeks.encryptr" version="1.0.0-RC.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<widget id="org.devgeeks.encryptr" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>Encryptr</name>
<description>
A zero-knowledge, cloud-based e-wallet / password manager powered by Crypton.
Expand All @@ -9,6 +9,7 @@
</author>
<content src="index.html" />
<access origin="https://*.crypton.io" />
<access origin="wss://*.crypton.io" />
<preference name="orientation" value="default" />
<preference name="target-device" value="universal" />
<preference name="fullscreen" value="false" />
Expand Down
2 changes: 1 addition & 1 deletion www/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Encryptr",
"version": "1.0.0-RC.1",
"version": "1.0.0",
"description": "",
"main": "index.html",
"scripts": {
Expand Down

0 comments on commit 6ae6ddb

Please sign in to comment.