Skip to content

Commit

Permalink
release 3.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
gergelyszabo94 committed Sep 29, 2024
1 parent e5a1b80 commit 4817f89
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 1 deletion.
2 changes: 1 addition & 1 deletion extension/src/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 3,
"name": "__MSG_application_title__",
"short_name": "CS2 Trader",
"version": "3.1.1",
"version": "3.1.2",
"minimum_chrome_version": "109",
"default_locale": "en",
"description": "__MSG_application_description__",
Expand Down
48 changes: 48 additions & 0 deletions site/src/components/Changelog/Content/ThreeDotOneDotTwo.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
import React from 'react'
import ChangelogInstance from '../ChangelogInstance';
import GithubIssueLink from '../GithubIssueLink';

const ThreeDotOneDotTwo = () => {
return (
<ChangelogInstance version="3.1.2" date="2024-09-30">
<li>
Added csfloat and youpin as pricing providers
</li>
<li>
Added bookmark deletion confirmation prompt
</li>
<li>
Added Pricempire.com lookup links to trade offers
</li>
<li>
Added <a href="https://skinswap.com/">Skinswap.com</a> trade site bots to trusted profiles and added referral links
</li>
<li>
Added <a href="https://haloskins.com/">HaloSkins.com</a> referral links
</li>
<li>
Fixed "Hide other extensions" feature that removes overlapping elements from other extensions
</li>
<li>
Fixed name tags not being added to selected inventory items
</li>
<li>
Fixed agent patch total price indicator <GithubIssueLink issueNumber={521} />
</li>
<li>
Fixed Steam Market history export <GithubIssueLink issueNumber={520} />
</li>
<li>
Fixed Market buy order tables getting added multiple times
</li>
<li>
Removed Steamrep.com related features as the project has been discontinued
</li>
<li>
Updated dependencies
</li>
</ChangelogInstance>
);
}

export default ThreeDotOneDotTwo;
2 changes: 2 additions & 0 deletions site/src/containers/Changelog/Changelog.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { Container } from 'react-bootstrap';

import Head from '../../components/Head/Head';

import ThreeDotOneDotTwo from '../../components/Changelog/Content/ThreeDotOneDotTwo.js';
import ThreeDotOneDotOne from '../../components/Changelog/Content/ThreeDotOneDotOne.js';
import ThreeDotOne from '../../components/Changelog/Content/ThreeDotOne.js';
import ThreeDotZeroDotOne from '../../components/Changelog/Content/ThreeDotZeroDotOne.js';
Expand Down Expand Up @@ -101,6 +102,7 @@ const changelog = (props) => {
The platforms (Chrome Web Store, Mozilla Addons, Edge Add-ons) review submissions before they are available for download.
This means that the latest version might not have rolled out to your platform yet when you are reading this.
</Container>
<ThreeDotOneDotTwo />
<ThreeDotOneDotOne />
<ThreeDotOne />
<ThreeDotZeroDotOne />
Expand Down

0 comments on commit 4817f89

Please sign in to comment.