Skip to content
This repository has been archived by the owner on Sep 12, 2023. It is now read-only.

Commit

Permalink
Merge #2633
Browse files Browse the repository at this point in the history
2633: Prepare release 0.5.4 r=da-kami a=bonomat

- first commit fixes the changelog from 0.5.3
- second commit includes a fix which is part of this PR: https://github.com/itchysats/itchysats/pull/2615/commitsSigned-off-by: Philipp Hoenisch <[email protected]>
- third commit removes the dropdown menu

Co-authored-by: Mariusz Klochowicz <[email protected]>
Co-authored-by: Philipp Hoenisch <[email protected]>
  • Loading branch information
3 people authored Aug 5, 2022
2 parents d1d0b79 + 03ae89a commit fab3d39
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 13 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.5.4] - 2022-08-05

### Added

- Add dynamic liquidation to the DLC, enabling the CFD to be unilaterally closed every hour by either party if the oracle attests to a price close to the ends of the payout curve's domain.
Expand All @@ -23,6 +25,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
It replaces a previous similar mechanism, which ran over a bespoke network stack.
- Breaking change: renamed `trading_pair` to `contract_symbol` in Http API.

## [0.5.3] - 2022-08-01

### Changed

- Update `xtra` dependency to be able to ignore frequent trace spans added in 0.5.2

## [0.5.2] - 2022-07-26

### Added
Expand Down Expand Up @@ -272,7 +280,9 @@ Backport <https://github.com/itchysats/itchysats/pull/924> in an attempt to fix

Initial release for mainnet.

[Unreleased]: https://github.com/itchysats/itchysats/compare/0.5.2...HEAD
[Unreleased]: https://github.com/itchysats/itchysats/compare/0.5.4...HEAD
[0.5.4]: https://github.com/itchysats/itchysats/compare/0.5.3...0.5.4
[0.5.3]: https://github.com/itchysats/itchysats/compare/0.5.2...0.5.3
[0.5.2]: https://github.com/itchysats/itchysats/compare/0.5.1...0.5.2
[0.5.1]: https://github.com/itchysats/itchysats/compare/0.5.0...0.5.1
[0.5.0]: https://github.com/itchysats/itchysats/compare/0.4.21...0.5.0
Expand Down
3 changes: 2 additions & 1 deletion taker-frontend/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,8 @@ export const App = () => {

let incompatible = false;
if (makerCompatibilityOrUndefined) {
incompatible = makerCompatibilityOrUndefined.unsupported_protocols !== undefined
incompatible = makerCompatibilityOrUndefined.unsupported_protocols !== null
&& makerCompatibilityOrUndefined.unsupported_protocols !== undefined
&& makerCompatibilityOrUndefined.unsupported_protocols.length > 0;
}

Expand Down
25 changes: 14 additions & 11 deletions taker-frontend/src/components/NavBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -301,17 +301,20 @@ const SymbolSelector = ({ current, onChange }: SymbolSelectorProps) => {

return (
<Box w={"100%"}>
<Select
defaultValue={options[0]}
value={{
value: current,
label: current.toUpperCase(),
}}
selectedOptionColor="orange"
selectedOptionStyle="color"
options={options}
onChange={(item) => onChangeInner(item)}
/>
{false
&& (
<Select
defaultValue={options[0]}
value={{
value: current,
label: current.toUpperCase(),
}}
selectedOptionColor="orange"
selectedOptionStyle="color"
options={options}
onChange={(item) => onChangeInner(item)}
/>
)}
</Box>
);
};
Expand Down

0 comments on commit fab3d39

Please sign in to comment.