-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
15c7c06
commit c3cd820
Showing
4 changed files
with
34 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 31 additions & 0 deletions
31
site/src/components/Changelog/Content/ThreeDotTwoDotOne.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters