Skip to content

Commit

Permalink
1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
EvilSpartans committed Jan 16, 2024
1 parent 58fc2e2 commit 0b6032b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 9 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(), 600000);
updateInterval = setInterval(() => autoUpdater.checkForUpdates(), 180000);

});

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.0.9",
"version": "1.1.0",
"description": "La cabine accoustique pour créer un cv vidéo",
"repository": "https://github.com/EvilSpartans/JobiBox",
"main": "main.js",
Expand Down
8 changes: 3 additions & 5 deletions src/components/forms/PostForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ import Select from "../fields/Select";
import SelectMultiple from "../fields/SelectMultiple";

import { PostSchema } from "../../utils/Validation";
import GoBack from "../GoBack";

export default function PostForm() {
const dispatch = useDispatch();
Expand Down Expand Up @@ -253,9 +252,8 @@ export default function PostForm() {

return (
<div className="min-h-screen w-full flex items-center justify-center overflow-hidden">
<GoBack />
{/* Container */}
<div className="flex flex-col justify-center min-h-[60%] h-fit tall:h-[90%] w-fit min-w-[60%] tall:w-[90%] space-y-8 tall:space-y-20 p-10 dark:bg-dark_bg_2 rounded-xl">
<div className="flex flex-col justify-center min-h-[60%] h-fit tall:h-[90%] w-fit min-w-[60%] tall:w-[90%] space-y-8 tall:space-y-2 p-10 dark:bg-dark_bg_2 rounded-xl">
{/*Heading*/}
<div className="text-center dark:text-dark_text_1">
<h2 className="mt-6 text-3xl font-bold">Publication</h2>
Expand All @@ -269,7 +267,7 @@ export default function PostForm() {
disablePictureInPicture
controlsList="nodownload"
width="100%"
className="mb-4 h-48 md:h-64 lg:h-96 xl:h-120"
className="h-48 md:h-64 lg:h-96 xl:h-120"
poster={thumbnail}
onLoadedMetadata={handleMetadata}
>
Expand All @@ -279,7 +277,7 @@ export default function PostForm() {
)}

{/*Form*/}
<form onSubmit={handleSubmit(onSubmit)} className="mt-6 space-y-6">
<form onSubmit={handleSubmit(onSubmit)} className="space-y-6">
<Input
name="title"
type="text"
Expand Down
2 changes: 0 additions & 2 deletions src/screens/Record.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
import React from "react";
import Film from "../components/video/Film";
import GoBack from "../components/GoBack";
import LogoutBtn from "../components/LogoutBtn";

export default function Record() {
return (
<div className="h-screen dark:bg-dark_bg_1 flex items-center justify-center overflow-hidden">
<LogoutBtn />
<GoBack itemToRemove={"selectedMusic"} />
{/*Container*/}
<div className="flex w-full mx-auto h-full">
Expand Down

0 comments on commit 0b6032b

Please sign in to comment.