Skip to content

Commit

Permalink
2.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
dragoonDorise committed Dec 8, 2024
1 parent 74fd886 commit 45cbf2d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion release/app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "EmuDeck",
"version": "2.3.2",
"version": "2.3.3",
"description": "Play all your RetroGames",
"license": "MIT",
"author": {
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/components
11 changes: 10 additions & 1 deletion src/renderer/pages/PatroenLoginPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ function PatreonLoginPage() {
disabled={accessAllowed}
>
{accessAllowed || t('PatroenLoginPage.login')}{' '}
{accessAllowed && `- ${t('general.loading')}`}
{accessAllowed && `${t('general.loading')}`}
</BtnSimple>
<BtnSimple
css="btn-simple--3"
Expand All @@ -329,6 +329,15 @@ function PatreonLoginPage() {
>
{t('PatroenLoginPage.change')}
</BtnSimple>
<BtnSimple
css="btn-simple--1"
type="button"
aria={t('PatroenLoginPage.login')}
onClick={() => patreonShowInput()}
disabled={accessAllowed}
>
Login using license
</BtnSimple>
</>
)}
{patreonClicked && (
Expand Down

0 comments on commit 45cbf2d

Please sign in to comment.