From df5c218297ae4a4ccb0721a4a0d5f915e5a02d8f Mon Sep 17 00:00:00 2001 From: BitcoinZavior Date: Thu, 23 May 2024 19:59:00 -0400 Subject: [PATCH 1/4] CHANGELOG.md updated --- CHANGELOG.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 41cc7d8..2d2254d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1 @@ -## 0.0.1 - -* TODO: Describe initial release. +## [0.13.0] From 01bb79b15f669ca9f7887df3b9a4b00110564649 Mon Sep 17 00:00:00 2001 From: BitcoinZavior Date: Fri, 24 May 2024 17:15:00 -0400 Subject: [PATCH 2/4] code cleanup --- example/lib/payjoin_library.dart | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/example/lib/payjoin_library.dart b/example/lib/payjoin_library.dart index 6b8aa9c..4bdcb6a 100644 --- a/example/lib/payjoin_library.dart +++ b/example/lib/payjoin_library.dart @@ -50,8 +50,7 @@ class PayJoinLibrary { v1.UncheckedProposal uncheckedProposal, Future Function(Uint8List) isOwned) async { // in a payment processor where the sender could go offline, this is where you schedule to broadcast the original_tx - var broadcastInFailureCase = - await uncheckedProposal.extractTxToScheduleBroadcast(); + var _ = await uncheckedProposal.extractTxToScheduleBroadcast(); final inputsOwned = await uncheckedProposal.checkBroadcastSuitability( canBroadcast: (e) async { return true; From 2ab9cb451fb98995d5b6192b51024c260cf699d5 Mon Sep 17 00:00:00 2001 From: BitcoinZavior Date: Sat, 25 May 2024 15:30:00 -0400 Subject: [PATCH 3/4] added analysis_options.yaml --- analysis_options.yaml | 22 +++++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) diff --git a/analysis_options.yaml b/analysis_options.yaml index a5744c1..3b27e68 100644 --- a/analysis_options.yaml +++ b/analysis_options.yaml @@ -1,4 +1,20 @@ -include: package:flutter_lints/flutter.yaml +include: package:lints/recommended.yaml +linter: + rules: + prefer_single_quotes: false + avoid_void_async: false + prefer_interpolation_to_compose_strings: false + avoid_print: false + use_build_context_synchronously: false + unnecessary_string_escapes: false + avoid_dynamic_calls: false + non_constant_identifier_names: false -# Additional information about this file can be found at -# https://dart.dev/guides/language/analysis-options +analyzer: + exclude: + - lib/src/generated/frb_generated.dart + - lib/src/generated/frb_generated.io.dart + - lib/src/generated/frb_generated.dart + - lib/src/generated/utils/error.freezed.dart + - README.md + - cargokit/ \ No newline at end of file From 5cce4384998ddd8db295d2127393f3c66a4aaa90 Mon Sep 17 00:00:00 2001 From: BitcoinZavior Date: Fri, 31 May 2024 20:00:00 -0400 Subject: [PATCH 4/4] payjoin_ffi url updated --- .github/workflows/precompile_binaries.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.github/workflows/precompile_binaries.yml b/.github/workflows/precompile_binaries.yml index 6f4fd5a..c6a032c 100644 --- a/.github/workflows/precompile_binaries.yml +++ b/.github/workflows/precompile_binaries.yml @@ -33,12 +33,6 @@ jobs: - uses: subosito/flutter-action@v2 with: channel: 'stable' - - name: Configure git with access token - run: | - git config --global url."https://x-access-token:${GITHUB_TOKEN}@github.com".insteadOf "https://github.com" - shell: bash - env: - GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }} - name: Install GTK if: (matrix.os == 'ubuntu-20.04') run: sudo apt-get update && sudo apt-get install libgtk-3-dev