Skip to content

Commit

Permalink
release 3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
gergelyszabo94 committed Oct 18, 2024
1 parent 8111b21 commit ab94e5c
Show file tree
Hide file tree
Showing 3 changed files with 42 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.3",
"version": "3.2",
"minimum_chrome_version": "109",
"default_locale": "en",
"description": "__MSG_application_description__",
Expand Down
39 changes: 39 additions & 0 deletions site/src/components/Changelog/Content/ThreeDotTwo.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
import React from 'react'
import ChangelogInstance from '../ChangelogInstance';
import GithubIssueLink from '../GithubIssueLink';

const ThreeDotTwo = () => {
return (
<ChangelogInstance version="3.2" date="2024-10-19">
<li>
Added Inventory Full Screen Screenshot view feature
</li>
<li>
Re-added support for Firefox, the Firefox version will receive updates too now.
</li>
<li>
Added charm price indicators to inventory items
</li>
<li>
Added fade percentage support for M4A1-S Fade
</li>
<li>
Added accept trade offer button to trade offers page on Firefox
</li>
<li>
Fixed lookup links for commodity items in trade offers and moved lookup links to the bottom
</li>
<li>
"Hide other extensions" feature now applies to the market.csgo extension
</li>
<li>
Fixed trade locked items not getting added to selected items list
</li>
<li>
Fixed broken pricempire lookup links
</li>
</ChangelogInstance>
);
}

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

0 comments on commit ab94e5c

Please sign in to comment.