Skip to content

Commit

Permalink
release 3.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
gergelyszabo94 committed Dec 5, 2024
1 parent 15c7c06 commit c3cd820
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 2 deletions.
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.2",
"version": "3.2.1",
"minimum_chrome_version": "109",
"default_locale": "en",
"description": "__MSG_application_description__",
Expand Down
1 change: 0 additions & 1 deletion site/src/components/Changelog/Content/ThreeDotTwo.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import React from 'react'
import ChangelogInstance from '../ChangelogInstance';
import GithubIssueLink from '../GithubIssueLink';

const ThreeDotTwo = () => {
return (
Expand Down
31 changes: 31 additions & 0 deletions site/src/components/Changelog/Content/ThreeDotTwoDotOne.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
import React from 'react'
import ChangelogInstance from '../ChangelogInstance';
import GithubIssueLink from '../GithubIssueLink';

const ThreeDotTwoDotOne = () => {
return (
<ChangelogInstance version="3.2.1" date="2024-12-05">
<li>
Added pattern ids to attached charms in inventories
</li>
<li>
Added sorting by Charm price in inventories and offers
</li>
<li>
Added more detailed error message to market price loading
<GithubIssueLink issueNumber={541} />
</li>
<li>
Fixed in-browser, on-server inspect, sticker price and sticker wear on market pages
</li>
<li>
Fixed applied stickers and attached charms not showing in inventories and offers
</li>
<li>
Fixed some Pricempire lookup links
</li>
</ChangelogInstance>
);
}

export default ThreeDotTwoDotOne;
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 ThreeDotTwoDotOne from '../../components/Changelog/Content/ThreeDotTwoDotOne.js';
import ThreeDotTwo from '../../components/Changelog/Content/ThreeDotTwo.js';
import ThreeDotOneDotThree from '../../components/Changelog/Content/ThreeDotOneDotThree.js';
import ThreeDotOneDotTwo from '../../components/Changelog/Content/ThreeDotOneDotTwo.js';
Expand Down Expand Up @@ -104,6 +105,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>
<ThreeDotTwoDotOne />
<ThreeDotTwo />
<ThreeDotOneDotThree />
<ThreeDotOneDotTwo />
Expand Down

0 comments on commit c3cd820

Please sign in to comment.