Skip to content

Commit

Permalink
Bump chia-blockchain-gui to 0c583e2d247192e3da4471da202814c09902a358
Browse files Browse the repository at this point in the history
* remove Keybase as an offer sharing option by @paninaro in Chia-Network/chia-blockchain-gui#1777
* remove unused squirrel handler from the old Windows installer code by @paninaro in Chia-Network/chia-blockchain-gui#1787
* [Snyk] Upgrade @mui/material from 5.10.0 to 5.12.2 by @ChiaAutomation in Chia-Network/chia-blockchain-gui#1778
* fix loading of some audio NFTs by @paninaro in Chia-Network/chia-blockchain-gui#1789
* Rifeljm/#1699 verifiable credentials by @rifeljm in Chia-Network/chia-blockchain-gui#1785
* fix createOfferForIds when called from WalletConnect by @paninaro in Chia-Network/chia-blockchain-gui#1793
* WC notifications by @seeden in Chia-Network/chia-blockchain-gui#1801

**Full Changelog**: Chia-Network/chia-blockchain-gui@2.0.0-b2...1.8.2-rc1
  • Loading branch information
paninaro committed May 31, 2023
1 parent 70a8874 commit 34a3060
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chia-blockchain-gui
Submodule chia-blockchain-gui updated 77 files
+1 −1 packages/api-react/src/hooks/index.ts
+12 −0 packages/api-react/src/hooks/useClearCache.ts
+1 −1 packages/api-react/src/hooks/useCurrentFingerprintSettings.ts
+22 −21 packages/api-react/src/hooks/useFingerprintSettings.ts
+0 −12 packages/api-react/src/hooks/useLogout.ts
+2 −1 packages/api-react/src/services/index.ts
+39 −34 packages/api-react/src/services/wallet.ts
+3 −2 packages/api/src/services/WalletService.ts
+8 −8 packages/api/src/wallets/VC.ts
+7 −0 packages/core/src/components/Mute/Mute.tsx
+1 −0 packages/core/src/components/Mute/index.ts
+1 −0 packages/core/src/components/index.ts
+7 −4 packages/core/src/screens/SelectKey/SelectKey.tsx
+1 −0 packages/core/src/theme/dark.ts
+1 −0 packages/core/src/theme/light.ts
+40 −0 packages/gui/src/@types/Notification.ts
+10 −0 packages/gui/src/@types/Offer.ts
+9 −0 packages/gui/src/@types/OfferOnDemand.ts
+9 −0 packages/gui/src/@types/OfferState.ts
+2 −33 packages/gui/src/@types/OfferSummary.ts
+2 −2 packages/gui/src/@types/WalletConnectCommand.ts
+3 −0 packages/gui/src/@types/WalletConnectCommandParamName.ts
+7 −4 packages/gui/src/components/app/AppProviders.tsx
+3 −0 packages/gui/src/components/app/AppRouter.tsx
+11 −0 packages/gui/src/components/dashboard/DashboardSideBar.tsx
+23 −0 packages/gui/src/components/helpers/HumanTimestamp.tsx
+1 −1 packages/gui/src/components/nfts/NFTPreview.tsx
+1 −1 packages/gui/src/components/nfts/NFTProperties.tsx
+9 −5 packages/gui/src/components/nfts/gallery/NFTGallery.tsx
+12 −87 packages/gui/src/components/notification/Notification.tsx
+68 −0 packages/gui/src/components/notification/NotificationAnnouncement.tsx
+80 −0 packages/gui/src/components/notification/NotificationAnnouncementDialog.tsx
+99 −0 packages/gui/src/components/notification/NotificationOffer.tsx
+16 −13 packages/gui/src/components/notification/NotificationPreview.tsx
+65 −0 packages/gui/src/components/notification/NotificationPreviewOffer.tsx
+28 −0 packages/gui/src/components/notification/NotificationWrapper.tsx
+1 −1 packages/gui/src/components/notification/NotificationsDropdown.tsx
+15 −13 packages/gui/src/components/notification/NotificationsMenu.tsx
+147 −279 packages/gui/src/components/notification/NotificationsProvider.tsx
+0 −35 packages/gui/src/components/notification/utils.test.ts
+15 −11 packages/gui/src/components/notification/utils.ts
+1 −375 packages/gui/src/components/offers/OfferShareDialog.tsx
+0 −36 packages/gui/src/components/offers/utils.ts
+61 −0 packages/gui/src/components/offers2/OfferDetails.tsx
+121 −68 packages/gui/src/components/offers2/OfferIncomingTable.tsx
+253 −0 packages/gui/src/components/offers2/OffersProvider.tsx
+77 −8 packages/gui/src/components/settings/SettingsNotifications.tsx
+2 −0 packages/gui/src/components/settings/SettingsPanel.tsx
+35 −0 packages/gui/src/components/settings/SettingsVerifiableCredentials.tsx
+166 −0 packages/gui/src/components/vcs/VCCard.tsx
+36 −0 packages/gui/src/components/vcs/VCDetail.tsx
+77 −0 packages/gui/src/components/vcs/VCList.tsx
+14 −0 packages/gui/src/components/vcs/VCs.tsx
+4 −0 packages/gui/src/components/walletConnect/WalletConnectProvider.tsx
+3 −2 packages/gui/src/constants/NotificationType.ts
+37 −1 packages/gui/src/constants/WalletConnectCommands.tsx
+0 −67 packages/gui/src/electron/handleSquirrelEvent.ts
+387 −390 packages/gui/src/electron/main.tsx
+4 −3 packages/gui/src/hooks/useAssetIdName.ts
+175 −0 packages/gui/src/hooks/useBlockchainNotifications.tsx
+25 −0 packages/gui/src/hooks/useNotificationSettings.ts
+27 −0 packages/gui/src/hooks/useOffer.ts
+30 −0 packages/gui/src/hooks/useOfferInfo.ts
+12 −0 packages/gui/src/hooks/useOffers.ts
+64 −0 packages/gui/src/hooks/useValidNotifications.ts
+33 −0 packages/gui/src/hooks/useWaitForWalletSync.ts
+6 −2 packages/gui/src/hooks/useWalletConnect.ts
+73 −3 packages/gui/src/hooks/useWalletConnectCommand.tsx
+16 −4 packages/gui/src/util/fetchOffer.ts
+1 −1 packages/gui/src/util/offerToOfferBuilderData.ts
+0 −130 packages/gui/src/util/parseNotification.test.ts
+0 −14 packages/gui/src/util/parseNotification.ts
+289 −381 packages/icons/package-lock.json
+1 −1 packages/icons/package.json
+8 −0 packages/icons/src/VC.tsx
+1 −0 packages/icons/src/images/vc.svg
+1 −0 packages/icons/src/index.ts

0 comments on commit 34a3060

Please sign in to comment.