Skip to content

Commit

Permalink
active development
Browse files Browse the repository at this point in the history
  • Loading branch information
keshav-space committed Jul 19, 2021
1 parent fca455b commit cf03e36
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.notes">
package="com.trisven.safenotes">
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<application
android:label="Safe Notes"
Expand Down
2 changes: 1 addition & 1 deletion android/app/src/profile/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.notes">
package="com.trisven.safenotes">
<!-- Flutter needs it to communicate with the running application
to allow setting breakpoints, to provide hot reload, etc.
-->
Expand Down
2 changes: 1 addition & 1 deletion lib/page/login_page/set_encryption_phrase_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ class _SetEncryptionPhrasePageState extends State<SetEncryptionPhrasePage> {
onEditingComplete: () => node.nextFocus(),
validator: (password) => password != null && password.length < 8
? 'Must be at least 8 characters long!'
: (estimateBruteforceStrength(password!) < 0.6)
: (estimateBruteforceStrength(password!) < 0.5)
? 'Passphrase is too weak!'
: null,
);
Expand Down

0 comments on commit cf03e36

Please sign in to comment.