Skip to content

Commit

Permalink
Merge pull request #292 from xch-dev/bump-0.9.3
Browse files Browse the repository at this point in the history
Bump to 0.9.3
  • Loading branch information
Rigidity authored Jan 21, 2025
2 parents d41a0c4 + 8d58465 commit 87124e0
Show file tree
Hide file tree
Showing 15 changed files with 24 additions and 25 deletions.
18 changes: 9 additions & 9 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion crates/sage-api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sage-api"
version = "0.9.2"
version = "0.9.3"
edition = "2021"
license = "Apache-2.0"
description = "API definitions for the Sage wallet."
Expand Down
2 changes: 1 addition & 1 deletion crates/sage-assets/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sage-assets"
version = "0.9.2"
version = "0.9.3"
edition = "2021"
license = "Apache-2.0"
description = "Fetches non-critical data from various APIs for use in Sage wallet."
Expand Down
2 changes: 1 addition & 1 deletion crates/sage-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sage-cli"
version = "0.9.2"
version = "0.9.3"
edition = "2021"
license = "Apache-2.0"
description = "A CLI and RPC for Sage wallet."
Expand Down
2 changes: 1 addition & 1 deletion crates/sage-config/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sage-config"
version = "0.9.2"
version = "0.9.3"
edition = "2021"
license = "Apache-2.0"
description = "Configuration for the Sage wallet."
Expand Down
2 changes: 1 addition & 1 deletion crates/sage-database/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sage-database"
version = "0.9.2"
version = "0.9.3"
edition = "2021"
license = "Apache-2.0"
description = "The SQLite database for Sage."
Expand Down
2 changes: 1 addition & 1 deletion crates/sage-keychain/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sage-keychain"
version = "0.9.2"
version = "0.9.3"
edition = "2021"
license = "Apache-2.0"
description = "A simple password based keychain implementation for Sage."
Expand Down
2 changes: 1 addition & 1 deletion crates/sage-wallet/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sage-wallet"
version = "0.9.2"
version = "0.9.3"
edition = "2021"
license = "Apache-2.0"
description = "The driver code and sync logic for Sage wallet."
Expand Down
2 changes: 1 addition & 1 deletion crates/sage/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sage"
version = "0.9.2"
version = "0.9.3"
edition = "2021"
license = "Apache-2.0"
description = "A high level abstraction for running Sage wallet."
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sage-tauri"
version = "0.9.2"
version = "0.9.3"
description = "A next generation Chia wallet."
authors = ["Rigidity <[email protected]>"]
license = "Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions src-tauri/gen/apple/sage-tauri_iOS/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>0.9.2</string>
<string>0.9.3</string>
<key>CFBundleVersion</key>
<string>0.9.2</string>
<string>0.9.3</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>UILaunchStoryboardName</key>
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"productName": "Sage",
"version": "0.9.2",
"version": "0.9.3",
"identifier": "com.rigidnetwork.sage",
"build": {
"frontendDist": "../dist",
Expand Down
7 changes: 3 additions & 4 deletions src/components/NftGroupCard.tsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import { NftCollectionRecord, DidRecord } from '@/bindings';
import { DidRecord, NftCollectionRecord } from '@/bindings';
import { NftGroupMode } from '@/hooks/useNftParams';
import { t } from '@lingui/core/macro';
import { Trans } from '@lingui/react/macro';
import {
EyeIcon,
EyeOff,
LibraryBig,
MoreVerticalIcon,
UserIcon,
Paintbrush,
LibraryBig,
UserIcon,
} from 'lucide-react';
import { useNavigate } from 'react-router-dom';
import { Button } from './ui/button';
Expand All @@ -19,7 +19,6 @@ import {
DropdownMenuItem,
DropdownMenuTrigger,
} from './ui/dropdown-menu';
import collectionImage from '@/images/collection.png';
import {
Tooltip,
TooltipContent,
Expand Down
Binary file removed src/images/collection.png
Binary file not shown.
Binary file removed src/images/profile.png
Binary file not shown.

0 comments on commit 87124e0

Please sign in to comment.