Skip to content

Commit 6ae6ddb

Browse files
committed
Version bump to 1.0.0
However, due to weirdness in the windows installer, I might have to bump this to 1.0.1 for launch...
1 parent 315d229 commit 6ae6ddb

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Encryptr",
3-
"version": "1.0.0-RC.1",
3+
"version": "1.0.0",
44
"main": "www/index.html",
55
"ignore": [
66
"**/.*",

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Encryptr",
3-
"version": "1.0.0-RC.1",
3+
"version": "1.0.0",
44
"repository": "https://github.com/devgeeks/Encryptr.git",
55
"main": "www/js/Encryptr.js",
66
"scripts": {

src/app.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -154,10 +154,10 @@ var Encryptr = (function (window, console, undefined) {
154154

155155
Encryptr.prototype.onResume = function(event) {
156156
// Logging out seems a bit overkill
157-
// For now, put a 2 hour timeout on it...
157+
// For now, put a 10 minute timeout on it...
158158
var timeoutInMinutes =
159159
Math.floor(((Date.now() - window.app.lastPaused) / 1000) / 60);
160-
if (timeoutInMinutes >= 120) {
160+
if (timeoutInMinutes >= 10) {
161161
window.app.accountModel.logout(function() {
162162
window.app.loginView.disable();
163163
// Throw up the login screen

www/config.xml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version='1.0' encoding='utf-8'?>
2-
<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">
2+
<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">
33
<name>Encryptr</name>
44
<description>
55
A zero-knowledge, cloud-based e-wallet / password manager powered by Crypton.
@@ -9,6 +9,7 @@
99
</author>
1010
<content src="index.html" />
1111
<access origin="https://*.crypton.io" />
12+
<access origin="wss://*.crypton.io" />
1213
<preference name="orientation" value="default" />
1314
<preference name="target-device" value="universal" />
1415
<preference name="fullscreen" value="false" />

www/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Encryptr",
3-
"version": "1.0.0-RC.1",
3+
"version": "1.0.0",
44
"description": "",
55
"main": "index.html",
66
"scripts": {

0 commit comments

Comments
 (0)