feat(gui): Display dialog when update is available (#132)

* feat(tauri): Use new tauri signing key

* feat(gui): Display MUI dialog when update is available
This commit is contained in:
binarybaron 2024-11-05 21:01:23 +01:00 committed by GitHub
parent a9b1d05af0
commit c1afc7aa2a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 170 additions and 32 deletions

View file

@ -9,6 +9,7 @@ import HistoryPage from "./pages/history/HistoryPage";
import SwapPage from "./pages/swap/SwapPage";
import WalletPage from "./pages/wallet/WalletPage";
import GlobalSnackbarProvider from "./snackbar/GlobalSnackbarProvider";
import UpdaterDialog from "./modal/updater/UpdaterDialog";
const useStyles = makeStyles((theme) => ({
innerContent: {
@ -58,6 +59,7 @@ export default function App() {
<Router>
<Navigation />
<InnerContent />
<UpdaterDialog/>
</Router>
</GlobalSnackbarProvider>
</ThemeProvider>