Skip to content
Merged

fixes #1355

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
4ca84ac
fix(shopinbit): defend against API contract drift
sneurlax May 4, 2026
6182fbd
fix: bandaid fix for race condition when checkElectrumAdapter is call…
julian-CStack May 21, 2026
a6fff2a
Merge remote-tracking branch 'origin/staging' into julian/fixes
julian-CStack May 22, 2026
6e9c01e
handle here instead of https://github.com/cypherstack/stack_wallet/pu…
julian-CStack May 22, 2026
75733fe
hide/disable coin control view for salvium as the underlying library …
julian-CStack May 22, 2026
23746e3
fix(ui): adjust ShopinBit travel form on desktop and mobile
sneurlax May 22, 2026
248c83c
feat(ui): extend AdaptiveTextField and migrate travel form to use them
sneurlax May 22, 2026
79d4087
feat(shopinbit): migrate forms to AdaptiveTextField, delete step4 field
sneurlax May 22, 2026
7cff09c
fix(shopinbit): handle timestamps from the API consistently
sneurlax May 22, 2026
fd8bb87
hide/disable shopinbit/cakepay based on app features flags
julian-CStack May 22, 2026
3bf4f8b
feat(shopinbit): don't repetitively ask for the user's display name
sneurlax May 22, 2026
4f9b2d9
feat(shopinbit): add warning dialog when closing mid-flow
sneurlax May 22, 2026
cb643fa
Merge remote-tracking branch 'origin/julian/fixes' into josh/fixes
sneurlax May 22, 2026
9875d31
refactor(cakepay,shopinbit): non-blocking loads, reactive detail views
sneurlax May 22, 2026
c3197dc
refactor(shopinbit): remove ticket count from "My requests" button
sneurlax May 22, 2026
d40fd07
chore(ui): shopinbit step 4 forms cleanup
julian-CStack May 22, 2026
8413a3d
feat(ui): allow custom nested nav flow close args
julian-CStack May 22, 2026
09bf8ce
fix(ui): only show close warning dialog when appropriate
julian-CStack May 22, 2026
a167561
fix(ui): prevent squared textfield bottom corners when error message …
julian-CStack May 22, 2026
1a7976a
fix(ui): Use existing refresh arrows animation
julian-CStack May 23, 2026
c97aa97
tweak mobile layout to make checkboxes look better
julian-CStack May 23, 2026
8493d12
fix(ui): date picker style
julian-CStack May 23, 2026
491d6d6
feat(ui): date picker range selection
julian-CStack May 23, 2026
0376406
feat(ui): extract date picker widget
julian-CStack May 23, 2026
bb4ca15
use date picker widget in shopinbit form
julian-CStack May 23, 2026
e955542
fix(ui): inaccurate label
julian-CStack May 25, 2026
28f495c
fix(ui): More shopinbit stuff, navigation fixes, styling, etc etc. Pr…
julian-CStack May 25, 2026
38d4c3c
fix(ui): button consistency
julian-CStack May 25, 2026
d66e667
Merge branch 'josh/fixes' into feat/shopinbit
julian-CStack May 25, 2026
1c515e1
fix: merge conflict clean up
julian-CStack May 25, 2026
60610f4
Merge pull request #1322 from cypherstack/feat/shopinbit
julian-CStack May 25, 2026
caed53d
fix: add missing tor check on button enabled
julian-CStack May 25, 2026
bc6c63f
refactor(ui): mobile home view top menu clean up
julian-CStack May 25, 2026
35f4ea9
fix: cakepay countries endpoint
julian-CStack May 25, 2026
6ff89fa
ai gen scrollable "paginated" listview
julian-CStack May 25, 2026
c7c1c87
wip use "infinite" scrolling list view
julian-CStack May 25, 2026
c458074
ui: "infinite" scrolling list view clean up and other little things
julian-CStack May 26, 2026
1840842
fix: exception message
julian-CStack May 26, 2026
59a2eea
add shopinbit fetch all from remote function stub
julian-CStack May 26, 2026
87eed85
fix(ui): desktop manual swb creation dialog navigation
julian-CStack May 26, 2026
e93af4a
fix(swb): add missing shopinbit and cakepay data
julian-CStack May 26, 2026
e7073cb
feat(shopinbit): implement fetchAllForCustomerKey
sneurlax May 26, 2026
91dc822
feat(shopinbit): backfill remote tickets into the local db on refresh
sneurlax May 26, 2026
ab93fe0
feat(shopinbit): recover requestDescription and detect travel on restore
sneurlax May 26, 2026
d0a3ee9
fix(ui): nav bug
julian-CStack May 26, 2026
3357144
Revert "feat(shopinbit): backfill remote tickets into the local db on…
julian-CStack May 26, 2026
9a87cfd
chore: update salvium bins package dep
julian-CStack May 26, 2026
c30a475
Merge remote-tracking branch 'origin/staging' into josh/fixes
julian-CStack May 26, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion crypto_plugins/flutter_libmwc
Submodule flutter_libmwc updated 1 files
+13 −6 rust/src/lib.rs
68 changes: 68 additions & 0 deletions lib/db/drift/shared_db/shared_database.g.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions lib/db/drift/shared_db/tables/shopin_bit_tickets.dart
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ class ShopInBitTickets extends Table {

IntColumn get category => intEnum<ShopInBitCategory>()();
IntColumn get status => intEnum<ShopInBitOrderStatus>()();
TextColumn get statusRaw => text().nullable()();

TextColumn get requestDescription => text()();
TextColumn get deliveryCountry => text()();
Expand Down
Loading
Loading