Skip to content

Commit

Permalink
Update version to v4.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
danwag06 committed Jan 9, 2025
1 parent d5a7b51 commit 2ea4b96
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![License](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)

Version: v4.1.4
Version: v4.1.5

<a href="https://chromewebstore.google.com/detail/yours-wallet/mlbnicldlpdimbjdcncnklfempedeipj" target="_blank">🌱 Download Chrome Extension 🌱</a>

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "yours-wallet",
"version": "4.1.4",
"version": "4.1.5",
"private": true,
"dependencies": {
"@bsv/paymail": "^2.0.2",
Expand Down
1 change: 0 additions & 1 deletion public/builds/pw-v4.1.4.256

This file was deleted.

1 change: 1 addition & 0 deletions public/builds/pw-v4.1.5.256
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
b93ebf4a511bf34ffe19f62be5201db9b163c2e088ad0f94525e926be1ba0997 public/builds/pw-v4.1.5.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion public/manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "4.1.4",
"version": "4.1.5",
"manifest_version": 3,
"name": "Yours Wallet",
"description": "A non-custodial and open-source wallet for BSV and 1Sat Ordinals",
Expand Down
11 changes: 9 additions & 2 deletions src/components/TxHistory.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,21 @@ import { Theme, WhiteLabelTheme } from '../theme.types';
import { useServiceContext } from '../hooks/useServiceContext';
import { useEffect, useMemo, useState } from 'react';
import { HeaderText, Text } from './Reusable';
import { BSV_DECIMAL_CONVERSION, GENERIC_NFT_ICON, GENERIC_TOKEN_ICON, URL_WHATSONCHAIN, URL_WHATSONCHAIN_TESTNET } from '../utils/constants';
import {
BSV_DECIMAL_CONVERSION,
GENERIC_NFT_ICON,
GENERIC_TOKEN_ICON,
URL_WHATSONCHAIN,
URL_WHATSONCHAIN_TESTNET,
} from '../utils/constants';
import { FaTimes, FaChevronDown, FaChevronUp, FaLink, FaTag } from 'react-icons/fa'; // Import FaTag
import { TxLog } from 'spv-store';
import { Button } from './Button';
import bsvCoin from '../assets/bsv-coin.svg';
import lock from '../assets/lock.svg';
import { Show } from './Show';
import { motion } from 'framer-motion';
import { NetWork } from 'yours-wallet-provider';

const Container = styled(motion.div)<WhiteLabelTheme>`
display: flex;
Expand Down Expand Up @@ -132,7 +139,7 @@ export const TxHistory = (props: TxHistoryProps) => {
const itemsPerPage = 25;
const { gorillaPoolService, chromeStorageService } = useServiceContext();
const [expandedRows, setExpandedRows] = useState<Set<string>>(new Set());
const isTestnet = chromeStorageService.getNetwork() === 'testnet';
const isTestnet = chromeStorageService.getNetwork() === NetWork.Testnet;

const tagPriorityOrder: Tag[] = ['list', 'bsv21', 'bsv20', 'origin', 'lock', 'fund']; // The order of these tags will determine the order of the icons and which is prioritized

Expand Down

0 comments on commit 2ea4b96

Please sign in to comment.