Skip to content

Commit

Permalink
release 3.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
gergelyszabo94 committed Apr 11, 2024
1 parent 4e0bc82 commit 540d8c9
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 1 deletion.
2 changes: 1 addition & 1 deletion extension/src/manifest.json
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 3,
"name": "__MSG_application_title__",
"short_name": "CS2 Trader",
"version": "3.1",
"version": "3.1.1",
"minimum_chrome_version": "109",
"default_locale": "en",
"description": "__MSG_application_description__",
Expand Down
27 changes: 27 additions & 0 deletions site/src/components/Changelog/Content/ThreeDotOneDotOne.js
@@ -0,0 +1,27 @@
import React from 'react'
import ChangelogInstance from '../ChangelogInstance';
import GithubIssueLink from '../GithubIssueLink';

const ThreeDotOneDotOne = () => {
return (
<ChangelogInstance version="3.1.1" date="2024-04-12">
<li>
Added "print" option to the Trade History page to surfice technical details to help "proof of trade" gathering.
</li>
<li>
Added Fade percentage support to Kukri Knives
</li>
<li>
Fixed several important Trade Offer related features that were broken by changes to the Steam API.
</li>
<li>
Fixed blue percentages for M9 Bayonets <GithubIssueLink issueNumber={515} />
</li>
<li>
Added <a href="https://skinvault.gg/">Skinvault.gg</a> market to to market listings
</li>
</ChangelogInstance>
);
}

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

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

import ThreeDotOneDotOne from '../../components/Changelog/Content/ThreeDotOneDotOne.js';
import ThreeDotOne from '../../components/Changelog/Content/ThreeDotOne.js';
import ThreeDotZeroDotOne from '../../components/Changelog/Content/ThreeDotZeroDotOne.js';
import Three from '../../components/Changelog/Content/Three.js';
Expand Down Expand Up @@ -100,6 +101,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>
<ThreeDotOneDotOne />
<ThreeDotOne />
<ThreeDotZeroDotOne />
<Three />
Expand Down

0 comments on commit 540d8c9

Please sign in to comment.