diff --git a/CHANGELOG.md b/CHANGELOG.md index bfd08202..4ec1ed24 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,6 +26,25 @@ changes. - +## [sancho-v1.0.17](https://github.com/IntersectMBO/govtool/releases/tag/sancho-v1.0.17) 2024-09-05 + +### Added + +- + +### Fixed + +- Make testIds for link and identity references in drep form unique [Issue 1928](https://github.com/IntersectMBO/govtool/issues/1928) +- Fix saving the Do Not List checkbox value on DRep registration [Issue 1940](https://github.com/IntersectMBO/govtool/issues/1940) + +### Changed + +- Make displaying own DRep in DRep directory available [Issue 1934](https://github.com/IntersectMBO/govtool/issues/1934) + +### Removed + +- + ## [sancho-v1.0.16](https://github.com/IntersectMBO/govtool/releases/tag/sancho-v1.0.16) 2024-09-04 ### Fixed diff --git a/govtool/backend/Dockerfile b/govtool/backend/Dockerfile index 43a2a3f5..38c09931 100644 --- a/govtool/backend/Dockerfile +++ b/govtool/backend/Dockerfile @@ -4,4 +4,4 @@ FROM $BASE_IMAGE_REPO:$BASE_IMAGE_TAG WORKDIR /src COPY . . RUN cabal build -RUN cp dist-newstyle/build/x86_64-linux/ghc-9.2.7/vva-be-1.0.16/x/vva-be/build/vva-be/vva-be /usr/local/bin +RUN cp dist-newstyle/build/x86_64-linux/ghc-9.2.7/vva-be-1.0.17/x/vva-be/build/vva-be/vva-be /usr/local/bin diff --git a/govtool/backend/Dockerfile.qovery b/govtool/backend/Dockerfile.qovery index e853401f..cdf1acc7 100644 --- a/govtool/backend/Dockerfile.qovery +++ b/govtool/backend/Dockerfile.qovery @@ -4,7 +4,7 @@ FROM $BASE_IMAGE_REPO:$BASE_IMAGE_TAG WORKDIR /src COPY . . RUN cabal build -RUN cp dist-newstyle/build/x86_64-linux/ghc-9.2.7/vva-be-1.0.16/x/vva-be/build/vva-be/vva-be /usr/local/bin +RUN cp dist-newstyle/build/x86_64-linux/ghc-9.2.7/vva-be-1.0.17/x/vva-be/build/vva-be/vva-be /usr/local/bin # Expose the necessary port EXPOSE 9876 diff --git a/govtool/backend/vva-be.cabal b/govtool/backend/vva-be.cabal index 3b8c0f8d..97e5c569 100644 --- a/govtool/backend/vva-be.cabal +++ b/govtool/backend/vva-be.cabal @@ -1,6 +1,6 @@ cabal-version: 3.6 name: vva-be -version: 1.0.16 +version: 1.0.17 -- A short (one-line) description of the package. -- synopsis: diff --git a/govtool/frontend/package-lock.json b/govtool/frontend/package-lock.json index 2cfecbf2..fdb9a75d 100644 --- a/govtool/frontend/package-lock.json +++ b/govtool/frontend/package-lock.json @@ -1,12 +1,12 @@ { "name": "@govtool/frontend", - "version": "1.0.16", + "version": "1.0.17", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@govtool/frontend", - "version": "1.0.16", + "version": "1.0.17", "hasInstallScript": true, "dependencies": { "@emotion/react": "^11.11.1", diff --git a/govtool/frontend/package.json b/govtool/frontend/package.json index df91e58d..541024da 100644 --- a/govtool/frontend/package.json +++ b/govtool/frontend/package.json @@ -1,7 +1,7 @@ { "name": "@govtool/frontend", "private": true, - "version": "1.0.16", + "version": "1.0.17", "type": "module", "scripts": { "build": "vite build", @@ -109,5 +109,5 @@ "typescript": "^5.0.2" }, "readme": "ERROR: No README data found!", - "_id": "govtool@1.0.16" + "_id": "govtool@1.0.17" } diff --git a/govtool/frontend/src/components/atoms/StakeRadio.tsx b/govtool/frontend/src/components/atoms/StakeRadio.tsx index ab054286..c7360ca6 100644 --- a/govtool/frontend/src/components/atoms/StakeRadio.tsx +++ b/govtool/frontend/src/components/atoms/StakeRadio.tsx @@ -2,13 +2,8 @@ import { Dispatch, FC, SetStateAction } from "react"; import { Box, IconButton, Typography } from "@mui/material"; import { ICONS } from "@consts"; -import { - useGetAdaHolderVotingPowerQuery, - useScreenDimension, - useTranslation, -} from "@hooks"; +import { useScreenDimension } from "@hooks"; import { theme } from "@/theme"; -import { correctAdaFormat } from "@/utils/adaFormat"; type StakeRadioProps = { isChecked?: boolean; @@ -23,9 +18,9 @@ export const StakeRadio: FC = ({ ...props }) => { palette: { boxShadow1 }, } = theme; const { isMobile } = useScreenDimension(); - const { powerIsLoading, votingPower } = - useGetAdaHolderVotingPowerQuery(stakeKey); - const { t } = useTranslation(); + // const { powerIsLoading, votingPower } = + // useGetAdaHolderVotingPowerQuery(stakeKey); + // const { t } = useTranslation(); return ( = ({ ...props }) => { /> - + {/* TODO uncomment when voting power value s correct */} + {/* {t("votingPower")} : @@ -86,7 +82,7 @@ export const StakeRadio: FC = ({ ...props }) => { ₳ {correctAdaFormat(votingPower) ?? 0} )} - + */} ); diff --git a/govtool/frontend/src/components/molecules/AutomatedVotingCard.tsx b/govtool/frontend/src/components/molecules/AutomatedVotingCard.tsx index 85827eb6..85563193 100644 --- a/govtool/frontend/src/components/molecules/AutomatedVotingCard.tsx +++ b/govtool/frontend/src/components/molecules/AutomatedVotingCard.tsx @@ -1,4 +1,4 @@ -import { Box, Divider } from "@mui/material"; +import { Box } from "@mui/material"; import { Button, Typography } from "@atoms"; import { primaryBlue } from "@consts"; @@ -19,7 +19,6 @@ export const AutomatedVotingCard = ({ onClickDelegate, onClickInfo, title, - votingPower, transactionId, }: AutomatedVotingCardProps) => { const { cExplorerBaseUrl } = useAppContext(); @@ -84,7 +83,8 @@ export const AutomatedVotingCard = ({ {!inProgress && !isSelected && ( <> - + /> */} ))} {references?.length < MAX_NUMBER_OF_LINKS ? (