Skip to content

Commit

Permalink
updated grid view
Browse files Browse the repository at this point in the history
  • Loading branch information
u-Kuro committed Jul 21, 2023
1 parent 420662c commit f061915
Show file tree
Hide file tree
Showing 9 changed files with 7 additions and 13 deletions.
Binary file modified Kanshi.apk
Binary file not shown.
Binary file modified android/app/release/Kanshi.apk
Binary file not shown.
2 changes: 1 addition & 1 deletion android/app/src/main/assets/www/build/bundle.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion android/app/src/main/assets/www/build/bundle.js.map

Large diffs are not rendered by default.

4 changes: 1 addition & 3 deletions android/app/src/main/assets/www/src/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -242,9 +242,7 @@
// Auto Play
let _autoPlay = await retrieveJSON("autoPlay");
if (typeof _autoPlay === "boolean") $autoPlay = _autoPlay;
let portrait = screen.availHeight > screen.availWidth;
let _gridFullView =
(await retrieveJSON("gridFullView")) ?? portrait;
let _gridFullView = (await retrieveJSON("gridFullView")) ?? true;
if (typeof _gridFullView === "boolean")
$gridFullView = _gridFullView;
// Hidden Entries
Expand Down
2 changes: 1 addition & 1 deletion docs/build/bundle.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/build/bundle.js.map

Large diffs are not rendered by default.

4 changes: 1 addition & 3 deletions docs/src/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -242,9 +242,7 @@
// Auto Play
let _autoPlay = await retrieveJSON("autoPlay");
if (typeof _autoPlay === "boolean") $autoPlay = _autoPlay;
let portrait = screen.availHeight > screen.availWidth;
let _gridFullView =
(await retrieveJSON("gridFullView")) ?? portrait;
let _gridFullView = (await retrieveJSON("gridFullView")) ?? true;
if (typeof _gridFullView === "boolean")
$gridFullView = _gridFullView;
// Hidden Entries
Expand Down
4 changes: 1 addition & 3 deletions src/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -242,9 +242,7 @@
// Auto Play
let _autoPlay = await retrieveJSON("autoPlay");
if (typeof _autoPlay === "boolean") $autoPlay = _autoPlay;
let portrait = screen.availHeight > screen.availWidth;
let _gridFullView =
(await retrieveJSON("gridFullView")) ?? portrait;
let _gridFullView = (await retrieveJSON("gridFullView")) ?? true;
if (typeof _gridFullView === "boolean")
$gridFullView = _gridFullView;
// Hidden Entries
Expand Down

1 comment on commit f061915

@vercel
Copy link

@vercel vercel bot commented on f061915 Jul 21, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

kanshi – ./

kanshi-git-main-u-kuro.vercel.app
kanshi.vercel.app
kanshi-u-kuro.vercel.app

Please sign in to comment.