Skip to content

Commit

Permalink
Bump chia-blockchain-gui to 2.0.0-rc1 (#15815)
Browse files Browse the repository at this point in the history
* Bump chia-blockchain-gui to 80dc27d5348a89e17018cd095868bcf67c94abb1

* Refactor TX filter to use TransactionTypeFilterMode Enum by @zsolt-dev in Chia-Network/chia-blockchain-gui#1837
* Update Electron to 25.1.1 by @paninaro in Chia-Network/chia-blockchain-gui#1858
* Add spendClawbackCoins to WalletConnect commands by @zsolt-dev in Chia-Network/chia-blockchain-gui#1853
* Update lerna to 7.0.0 and node to 16.20.1 by @paninaro in Chia-Network/chia-blockchain-gui#1861
* Updated mui and lingui by @seeden in Chia-Network/chia-blockchain-gui#1865
* Fixed dapp disconnect by @seeden in Chia-Network/chia-blockchain-gui#1866
* Used new useAuth hook for logIn by @seeden in Chia-Network/chia-blockchain-gui#1868
* Specify copyright owner in LICENSE by @hoffmang9 in Chia-Network/chia-blockchain-gui#1877
* Updated locales by @seeden in Chia-Network/chia-blockchain-gui#1887
* Fixed scroll overflow in the header by @seeden in Chia-Network/chia-blockchain-gui#1874
* Add useGetWalletAddressesQuery RPC hook by @paninaro in Chia-Network/chia-blockchain-gui#1892
* Correct Farm.svg attributes by @wallentx in Chia-Network/chia-blockchain-gui#1895
* Clawback button compare time with latest block time by @zsolt-dev in Chia-Network/chia-blockchain-gui#1884
* Move wallet balance cards for CAT txns by @zsolt-dev in Chia-Network/chia-blockchain-gui#1903
* VC fixed rendering by @seeden in Chia-Network/chia-blockchain-gui#1888
* Plot compression UX updates by @ChiaMineJP in Chia-Network/chia-blockchain-gui#1772
* Update WalletConnect package to 2.9.0 by @seeden in Chia-Network/chia-blockchain-gui#1897
* Address book feature by @paninaro in Chia-Network/chia-blockchain-gui#1910
* Bugfix: Crash importing malformed local VC by @rifeljm in Chia-Network/chia-blockchain-gui#1890

**Full Changelog**: Chia-Network/chia-blockchain-gui@1.8.2...2.0.0-rc1

* 11

---------

Co-authored-by: Jeff Cruikshank <jeff@chia.net>
  • Loading branch information
wjblanke and paninaro committed Jul 20, 2023
1 parent 4587502 commit bc00bc7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-macos-installers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
matrix:
python-version: [3.9]
os:
- runs-on: macos-10.14
- runs-on: macos-11
name: intel
file-suffix: ""
mac-package-name: "Chia-darwin-x64"
Expand Down
2 changes: 1 addition & 1 deletion chia-blockchain-gui
Submodule chia-blockchain-gui updated 34 files
+981 −1,217 package-lock.json
+21 −0 packages/core/src/components/AddressBookProvider/AddressBookProvider.tsx
+1 −0 packages/core/src/components/AddressBookProvider/index.ts
+1 −0 packages/core/src/components/index.ts
+1 −0 packages/core/src/hooks/index.ts
+137 −0 packages/core/src/hooks/useAddressBook.tsx
+3 −3 packages/gui/package.json
+13 −2 packages/gui/src/@types/WalletConnectCommand.ts
+23 −0 packages/gui/src/components/addressbook/AddressBook.tsx
+58 −0 packages/gui/src/components/addressbook/AddressBookMenuItem.tsx
+165 −0 packages/gui/src/components/addressbook/AddressBookSideBar.tsx
+332 −0 packages/gui/src/components/addressbook/ContactAdd.tsx
+342 −0 packages/gui/src/components/addressbook/ContactEdit.tsx
+212 −0 packages/gui/src/components/addressbook/ContactSummary.tsx
+138 −0 packages/gui/src/components/addressbook/MyContact.tsx
+11 −8 packages/gui/src/components/app/AppProviders.tsx
+3 −0 packages/gui/src/components/app/AppRouter.tsx
+7 −0 packages/gui/src/components/dashboard/DashboardSideBar.tsx
+22 −22 packages/gui/src/components/vcs/VCCard.tsx
+1 −1 packages/gui/src/components/vcs/VCDetail.tsx
+2 −2 packages/gui/src/components/vcs/VCList.tsx
+28 −0 packages/gui/src/electron/addressBook.ts
+3 −0 packages/gui/src/electron/main.tsx
+3 −25 packages/gui/src/electron/prefs.ts
+29 −0 packages/gui/src/electron/utils/yamlUtils.ts
+12 −1 packages/gui/src/hooks/useWalletConnectCommand.tsx
+19 −0 packages/gui/src/hooks/useWalletKeyAddresses.ts
+1 −1 packages/gui/src/util/walletConnect.ts
+8 −0 packages/icons/src/Contacts.tsx
+3 −0 packages/icons/src/images/contacts.svg
+1 −0 packages/icons/src/index.ts
+81 −0 packages/wallets/src/components/AddressBookAutocomplete.tsx
+43 −3 packages/wallets/src/components/WalletHistory.tsx
+7 −6 packages/wallets/src/components/WalletSend.tsx

0 comments on commit bc00bc7

Please sign in to comment.