]> hydra-www.ietfng.org Git - android-vcpass-oisafe/commitdiff
WARNING! Renamed database name from "passwordsafe" to "safe".
authorpeli0101 <peli0101@72b678ce-9140-0410-bee8-679b907dd61a>
Fri, 16 Jan 2009 00:04:53 +0000 (00:04 +0000)
committerpeli0101 <peli0101@72b678ce-9140-0410-bee8-679b907dd61a>
Fri, 16 Jan 2009 00:04:53 +0000 (00:04 +0000)
Changed APWS to OI Safe in some places.

git-svn-id: http://openintents.googlecode.com/svn/trunk/Safe@1732 72b678ce-9140-0410-bee8-679b907dd61a

CHANGELOG
NOTES
res/values/strings.xml
src/org/openintents/safe/DBHelper.java

index 89113ab766dfad7c748a0a345c6fccbfa5e0294f..dd60b8f5d3a8c585f773889d2484e5b6f084606e 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -25,3 +25,6 @@
  a master password that decrypts the master key.  The master key is used
  to encrypt/decrypt the password entries.
  Database is now version 3.   No upgrade path provided, user must export/import. 
+0.7.0 [Jan 16, 2009]
+ Rename APWS to OI Safe.
\ No newline at end of file
diff --git a/NOTES b/NOTES
index 7e805d474a70508c196bda6bd9c29ad28fe11c6e..91dc3a5f8c9fe0a6f2a40a01db81339a76994bd3 100644 (file)
--- a/NOTES
+++ b/NOTES
@@ -1,21 +1,21 @@
 
 To grab the database to work with it locally::
 
-adb pull /data/data/com.bitsetters.android.passwordsafe/databases/passwordsafe .
+adb pull /data/data/org.openintents.safe/databases/safe .
 
 
 Then to open it with sqlite3::
 
-sqlite3 passwordsafe
+sqlite3 safe
 
 To delete the database and force a clean start::
 
-adb shell rm /data/data/com.bitsetters.android.passwordsafe/databases/passwordsafe
+adb shell rm /data/data/org.openintents.safe/databases/safe
 
 To uninstall the application completely::
 
-adb uninstall com.bitsetters.android.passwordsafe
+adb uninstall org.openintents.safe
 
 To make the keyword Id update::
 
-svn propset svn:keywords Id src/com/bitsetters/android/passwordsafe/filename.java
+svn propset svn:keywords Id org/openintents/safe/filename.java
index 83bf9bdaea120ae1224f2618784280f7efda860c..ce7f84546b3c99a6d55179386d3ec902cc31c401 100644 (file)
@@ -40,7 +40,7 @@
     <string name="notify_blank_desc">Description cannot be blank</string>\r
     <string name="notify_blank_name">Name cannot be blank</string>\r
     <string name="first_time">Please enter a password below, which will be used to keep your passwords safe.</string>\r
-    <string name="logoff_explanation">You are currently logged into Android Passwordsafe, meaning that other applications can request their passwords and decrypt/encrypt data. Lock to prevent further access until you type in your password again.</string>\r
+    <string name="logoff_explanation">You are currently logged into OI Safe, meaning that other applications can request their passwords and decrypt/encrypt data. Lock to prevent further access until you type in your password again.</string>\r
     <string name="remote_ask">Another application is asking to use the master key. Please type in your password to unlock it.</string>\r
     <string name="categories">Categories</string>\r
        <string name="category">Category</string>\r
     <string name="database_version_error_title">Database Version Error</string>\r
     <string name="database_version_error_msg">Sorry, but the version of the database is not supported.   You must install the version associated with this database.</string>\r
        <string name="permlab_service">access stored password</string>\r
-    <string name="permdesc_service">Allows the application to encrypt and decrypt text, and access the passwords stored by Android Passwordsafe.</string>      \r
+    <string name="permdesc_service">Allows the application to encrypt and decrypt text, and access the passwords stored by OI Safe.</string>   \r
        <string name="move">Move</string>\r
        <string name="move_select">Select Category</string>\r
        <string name="moved_to">Moved to</string>\r
index 8dbc7d515d9746f8e55a50fa40d83c1c5a1e3b15..635dd949fafeef7775e3b683cbeadc2f12a0293e 100644 (file)
@@ -36,7 +36,7 @@ import android.util.Log;
  */
 public class DBHelper {
 
-    private static final String DATABASE_NAME = "passwordsafe";
+    private static final String DATABASE_NAME = "safe";
     private static final String TABLE_DBVERSION = "dbversion";
     private static final String TABLE_PASSWORDS = "passwords";
     private static final String TABLE_CATEGORIES = "categories";