diff --git a/minim_v3_0_76.zip b/minim_v3_0_77.zip similarity index 76% rename from minim_v3_0_76.zip rename to minim_v3_0_77.zip index fb03c6d..45437a1 100644 Binary files a/minim_v3_0_76.zip and b/minim_v3_0_77.zip differ diff --git a/src/App.scss b/src/App.scss index 7ec7730..1955a2a 100644 --- a/src/App.scss +++ b/src/App.scss @@ -282,7 +282,9 @@ body { flex-direction: column; justify-content: space-between; .bottom { + position: fixed; padding: 0px 14px; + bottom: 0px; display: flex; justify-content: space-between; align-items: flex-start; @@ -343,7 +345,7 @@ body { grid-row-gap: 0px; width: 100%; - height: 100%; + height: calc(100vh - 50px); padding: 0px 28px; diff --git a/src/WallpaperInfoSpinner.tsx b/src/WallpaperInfoSpinner.tsx index 0f09482..1264905 100644 --- a/src/WallpaperInfoSpinner.tsx +++ b/src/WallpaperInfoSpinner.tsx @@ -77,7 +77,7 @@ export function WallpaperInfoSpinner({}) { {meta && ( diff --git a/src/settings/BackgroundToggles.tsx b/src/settings/BackgroundToggles.tsx index 2cbeff0..c28832e 100644 --- a/src/settings/BackgroundToggles.tsx +++ b/src/settings/BackgroundToggles.tsx @@ -1,4 +1,4 @@ -import { mdiDotsGrid, mdiImageFilterBlackWhite } from "@mdi/js"; +import { mdiBlur, mdiSquareOpacity } from "@mdi/js"; import { IconButton } from "../components/IconButton"; import { useWallpaper, @@ -12,7 +12,7 @@ export function BackgroundToggles() { return (
{ @@ -26,7 +26,7 @@ export function BackgroundToggles() { }} /> { diff --git a/src/version.json b/src/version.json index b0c28e4..d01c368 100644 --- a/src/version.json +++ b/src/version.json @@ -1,3 +1,3 @@ { - "version": "3.0.76" + "version": "3.0.78" } diff --git a/src/wallpaper/WallpaperSurface.tsx b/src/wallpaper/WallpaperSurface.tsx index a9e0eae..a4110c7 100644 --- a/src/wallpaper/WallpaperSurface.tsx +++ b/src/wallpaper/WallpaperSurface.tsx @@ -28,7 +28,10 @@ export const WallpaperSurface = ({ tick }: {}) => { }, []); useEffect(() => { - if (wallpaper.changeEvery === "never" || wallpaper.type !== "photography") + if ( + wallpaper.changeEvery === "never" || + wallpaper.wallpaperType !== "photography" + ) return; const nextWallpaperChangeAt = parseInt( diff --git a/src/wallpaper/image-store.ts b/src/wallpaper/image-store.ts index a800abd..1ba7a31 100644 --- a/src/wallpaper/image-store.ts +++ b/src/wallpaper/image-store.ts @@ -107,7 +107,6 @@ export async function fetchLatestImage(): Promise { const images = (event.target as IDBRequest<[ImageEntry]>).result; if (images.length > 0) { blobToBase64(images[images.length - 1].image).then((base64) => { - console.log(images[images.length - 1]) resolve({ wallpaper_url: base64 as string, meta: images[images.length - 1].metadata,