Skip to content

Commit

Permalink
Bump chia-blockchain-gui to 078cc5976a991ea5a8b2b261deeb71da994d246c (#…
Browse files Browse the repository at this point in the history
…14794)

Includes:
* special case for one-sided offers where '0' XCH is allowed by @paninaro in Chia-Network/chia-blockchain-gui#1522
* show NFT title and preview in offer rows by @paninaro in Chia-Network/chia-blockchain-gui#1521
* tweak testnet button styling by @paninaro in Chia-Network/chia-blockchain-gui#1520
* Fixing status icons styling (first page & status header) by @rifeljm in Chia-Network/chia-blockchain-gui#1525
* update profiles settings tab and support naming a DID at creation by @paninaro in Chia-Network/chia-blockchain-gui#1526
* add default fee of zero to fee estimator by @paninaro in Chia-Network/chia-blockchain-gui#1538
* First screen - edit wallet name (design fixes) by @rifeljm in Chia-Network/chia-blockchain-gui#1529
* Run existing jest tests in CI by @zsolt-dev in Chia-Network/chia-blockchain-gui#1534
* add default fee to fee estimator by @lipalong in Chia-Network/chia-blockchain-gui#1527
* Do not show version mismatch dialog in development by @zsolt-dev in Chia-Network/chia-blockchain-gui#1535
* Prompt to cancel existing offers by @ChiaMineJP in Chia-Network/chia-blockchain-gui#1512
* Add pre commit git hook for eslint and prettier by @zsolt-dev in Chia-Network/chia-blockchain-gui#1536
* update profile settings width and other small changes by @paninaro in Chia-Network/chia-blockchain-gui#1537
* disabled counter offer button tooltip by @lipalong in Chia-Network/chia-blockchain-gui#1544
* First screen NEW WALLET => ADD WALLET by @rifeljm in Chia-Network/chia-blockchain-gui#1543
* Emoji and color picker cosmetic fixes by @rifeljm in Chia-Network/chia-blockchain-gui#1542
* Sortable wallets bugfixes (+ saving to prefs instead of localStorage) by @rifeljm in Chia-Network/chia-blockchain-gui#1540
* dark mode support by @paninaro in Chia-Network/chia-blockchain-gui#1546
* Zero state for wallet key home screen by @rifeljm in Chia-Network/chia-blockchain-gui#1545
* add burn icon by @paninaro in Chia-Network/chia-blockchain-gui#1547
* Changed the Burn NFT icon to a burning/flame icon by @rifeljm in Chia-Network/chia-blockchain-gui#1532
* added support for reset bypass by @seeden in Chia-Network/chia-blockchain-gui#1549
* Randomizing the color and emoji for existing keys the first time use … by @rifeljm in Chia-Network/chia-blockchain-gui#1531
* Rifeljm/#1128 show please wait when accepting offer wallet not synced by @rifeljm in Chia-Network/chia-blockchain-gui#1533
* Fixed an issue where canceled offer in the cancel prompt dialog did n… by @ChiaMineJP in Chia-Network/chia-blockchain-gui#1550
* fix countering offer flow and allow countering from viewing an offer from a notification by @paninaro in Chia-Network/chia-blockchain-gui#1548
* minor text/emoji sizing and padding tweaks to the wallet key home screen by @paninaro in Chia-Network/chia-blockchain-gui#1551

**Full Changelog**: Chia-Network/chia-blockchain-gui@1.8.0-b3...1.8.0-b4
  • Loading branch information
paninaro authored Mar 10, 2023
1 parent 1a66a9b commit 766c33c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chia-blockchain-gui
Submodule chia-blockchain-gui updated 51 files
+2 −0 .github/workflows/code-check.yml
+4 −0 .husky/pre-commit
+729 −6 package-lock.json
+9 −2 package.json
+3 −0 packages/core/src/components/CardListItem/CardListItem.tsx
+9 −1 packages/core/src/components/ConfirmDialog/ConfirmDialog.tsx
+35 −6 packages/core/src/components/EstimatedFee/EstimatedFee.tsx
+8 −1 packages/core/src/components/Settings/SettingsHR.tsx
+3 −3 packages/core/src/components/StateIndicator/StateIndicatorDot.tsx
+76 −72 packages/core/src/screens/SelectKey/EmojiAndColorPicker.tsx
+94 −44 packages/core/src/screens/SelectKey/SelectKey.tsx
+45 −12 packages/core/src/screens/SelectKey/SelectKeyItem.tsx
+1 −1 packages/core/src/screens/SelectKey/SelectKeyRenameForm.tsx
+1 −1 packages/gui/src/components/app/AppState.tsx
+31 −0 packages/gui/src/components/app/AppStatusHeader.tsx
+8 −9 packages/gui/src/components/app/AppTestnetIndicator.tsx
+2 −2 packages/gui/src/components/nfts/NFTContextualActions.tsx
+15 −1 packages/gui/src/components/notification/Notification.tsx
+31 −13 packages/gui/src/components/notification/NotificationSendDialog.tsx
+126 −0 packages/gui/src/components/offers/ConfirmOfferCancellation.tsx
+15 −2 packages/gui/src/components/offers/NFTOfferViewer.tsx
+37 −146 packages/gui/src/components/offers/OfferManager.tsx
+51 −29 packages/gui/src/components/offers/OfferShareDialog.tsx
+170 −0 packages/gui/src/components/offers2/CancelOfferList.tsx
+68 −32 packages/gui/src/components/offers2/CreateOfferBuilder.tsx
+67 −20 packages/gui/src/components/offers2/OfferBuilderViewer.tsx
+380 −0 packages/gui/src/components/offers2/OfferEditorCancelConflictingOffersDialog.tsx
+22 −6 packages/gui/src/components/offers2/OfferIncomingTable.tsx
+36 −36 packages/gui/src/components/settings/IdentitiesPanel.tsx
+96 −56 packages/gui/src/components/settings/ProfileAdd.tsx
+1 −1 packages/gui/src/components/settings/ProfileView.tsx
+5 −1 packages/gui/src/components/settings/Settings.tsx
+37 −2 packages/gui/src/components/settings/SettingsIntegration.tsx
+29 −26 packages/gui/src/components/settings/SettingsProfiles.tsx
+36 −1 packages/gui/src/hooks/useAcceptOfferHook.tsx
+80 −0 packages/gui/src/hooks/useResolveNFTOffer.ts
+14 −0 packages/gui/src/hooks/useWalletConnectPairs.ts
+25 −7 packages/gui/src/hooks/useWalletOffers.ts
+22 −3 packages/gui/src/util/hasSpendableBalance.ts
+253 −63 packages/gui/src/util/offerBuilderDataToOffer.ts
+3 −2 packages/gui/src/util/offerToOfferBuilderData.ts
+79 −4 packages/gui/src/util/resolveOfferInfo.ts
+8 −0 packages/icons/src/Burn.tsx
+18 −0 packages/icons/src/ZeroState.tsx
+4 −0 packages/icons/src/images/Burn.svg
+1 −1 packages/icons/src/images/cancelConnect.svg
+2 −2 packages/icons/src/images/checkmarkConnect.svg
+1 −1 packages/icons/src/images/reloadConnect.svg
+128 −0 packages/icons/src/images/zero-state-coins-dark.svg
+128 −0 packages/icons/src/images/zero-state-coins.svg
+2 −0 packages/icons/src/index.ts

2 comments on commit 766c33c

@AlexandrBursak
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe it should be 1.8.1rc1?

@paninaro
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe it should be 1.8.1rc1?

There's been some late versioning changes. The next release will be 1.7.1, not 1.8.0.

Please sign in to comment.