Skip to content

Commit

Permalink
Merge pull request #9 from LtbLightning/release-prep
Browse files Browse the repository at this point in the history
Release prep
  • Loading branch information
BitcoinZavior authored Jun 2, 2024
2 parents d6e86ae + 5cce438 commit 9ae119d
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 14 deletions.
6 changes: 0 additions & 6 deletions .github/workflows/precompile_binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 1 addition & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
## 0.0.1

* TODO: Describe initial release.
## [0.13.0]
22 changes: 19 additions & 3 deletions analysis_options.yaml
Original file line number Diff line number Diff line change
@@ -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/
3 changes: 1 addition & 2 deletions example/lib/payjoin_library.dart
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,7 @@ class PayJoinLibrary {
v1.UncheckedProposal uncheckedProposal,
Future<bool> 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;
Expand Down

0 comments on commit 9ae119d

Please sign in to comment.