From 540d8c9876a9350c0c377b49775d6aa94e77a403 Mon Sep 17 00:00:00 2001 From: Gergely Szabo Date: Fri, 12 Apr 2024 00:36:28 +0200 Subject: [PATCH] release 3.1.1 --- extension/src/manifest.json | 2 +- .../Changelog/Content/ThreeDotOneDotOne.js | 27 +++++++++++++++++++ site/src/containers/Changelog/Changelog.js | 2 ++ 3 files changed, 30 insertions(+), 1 deletion(-) create mode 100644 site/src/components/Changelog/Content/ThreeDotOneDotOne.js diff --git a/extension/src/manifest.json b/extension/src/manifest.json index 07539b8c..2fc280f5 100644 --- a/extension/src/manifest.json +++ b/extension/src/manifest.json @@ -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__", diff --git a/site/src/components/Changelog/Content/ThreeDotOneDotOne.js b/site/src/components/Changelog/Content/ThreeDotOneDotOne.js new file mode 100644 index 00000000..e03edc16 --- /dev/null +++ b/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 ( + +
  • + Added "print" option to the Trade History page to surfice technical details to help "proof of trade" gathering. +
  • +
  • + Added Fade percentage support to Kukri Knives +
  • +
  • + Fixed several important Trade Offer related features that were broken by changes to the Steam API. +
  • +
  • + Fixed blue percentages for M9 Bayonets +
  • +
  • + Added Skinvault.gg market to to market listings +
  • +
    + ); +} + +export default ThreeDotOneDotOne; \ No newline at end of file diff --git a/site/src/containers/Changelog/Changelog.js b/site/src/containers/Changelog/Changelog.js index 8939499c..2fe63dfc 100644 --- a/site/src/containers/Changelog/Changelog.js +++ b/site/src/containers/Changelog/Changelog.js @@ -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'; @@ -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. +