Skip to content

Commit

Permalink
v 0.8.1 - beta 12
Browse files Browse the repository at this point in the history
 - Added LICENSE to the project.
 - Added Small Patch lib to patch file changes.
 - Updated ZeroNet core with tor v3 patch.
 - Added stringcontroller.dart to centralise all strings to one place.
 - Various Bug Fixes and Code Improvements.
  • Loading branch information
canewsin committed Aug 14, 2021
1 parent 841a500 commit 1cf0f0d
Show file tree
Hide file tree
Showing 25 changed files with 2,075 additions and 398 deletions.
674 changes: 674 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -328,6 +328,9 @@ class MainActivity : FlutterActivity() {
.intent
shareIntent.data = contentUri
shareIntent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION)
shareIntent.putExtra(Intent.EXTRA_TEXT,"Save this file to a Safe place.")
shareIntent.action = Intent.ACTION_SEND
shareIntent.putExtra(Intent.EXTRA_STREAM, contentUri)
shareIntent.putExtra("finishActivityOnSaveCompleted", true)
context.startActivityForResult(Intent.createChooser(
shareIntent, "Backup Users.json File"), SAVE_USERJSON_FILE)
Expand Down
Binary file modified android/common/src/main/assets/zeronet_py3.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion lib/controllers/purchasescontroller.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import 'package:get/get.dart';
import 'package:purchases_flutter/purchases_flutter.dart' as purchases_flutter;
import '../imports.dart';

final purchasesStore = Get.put(PurchaseController());

Expand Down
Loading

0 comments on commit 1cf0f0d

Please sign in to comment.