Skip to content

Commit

Permalink
1.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
EvilSpartans committed Jan 16, 2024
1 parent bddaf94 commit 0c83d1a
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion main.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ app.whenReady().then(() => {
});

// Update app
updateInterval = setInterval(() => autoUpdater.checkForUpdates(), 180000);
updateInterval = setInterval(() => autoUpdater.checkForUpdates(), 300000);

});

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jobibox",
"version": "1.1.3",
"version": "1.1.4",
"description": "La cabine accoustique pour créer un cv vidéo",
"repository": "https://github.com/EvilSpartans/JobiBox",
"main": "main.js",
Expand Down
2 changes: 1 addition & 1 deletion src/components/LogoutBtn.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export default function LogoutBtn() {
};

return (
<div className='fixed top-4 right-4 z-50'>
<div className='fixed top-3 right-4 z-50'>
<button
className="w-full flex justify-center bg-gray-300 text-gray-700 p-4 rounded-full tracking-wide
font-semibold focus:outline-none hover:bg-gray-400 shadow-lg cursor-pointer transition ease-in duration-300"
Expand Down
2 changes: 2 additions & 0 deletions src/screens/Post.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
import React from "react";
import PostForm from "../components/forms/PostForm";
import LogoutBtn from "../components/LogoutBtn";
import GoBack from "../components/GoBack";

export default function Post() {
return (
<div className="min-h-screen dark:bg-dark_bg_1 flex items-center justify-center py-[39px] tall:p-0 overflow-hidden">
{/*Container*/}
<GoBack />
<LogoutBtn />
<div className="flex w-full mx-auto h-full">
{/*Form */}
Expand Down
2 changes: 2 additions & 0 deletions src/screens/Transcription.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import {
} from "../store/features/transcriptSlice";
import Tuto from "../components/Tuto";
import LogoutBtn from "../components/LogoutBtn";
import GoBack from "../components/GoBack";

export default function Transcription() {
const { status, error } = useSelector((state) => state.transcription);
Expand Down Expand Up @@ -81,6 +82,7 @@ export default function Transcription() {
return (
<div className="h-screen dark:bg-dark_bg_1 flex items-center justify-center overflow-hidden">
{/* Container */}
<GoBack />
<LogoutBtn />
<div className="flex w-full mx-auto h-full">
{/* Login Form */}
Expand Down

0 comments on commit 0c83d1a

Please sign in to comment.