Skip to content

Commit

Permalink
add upscaler & gallery
Browse files Browse the repository at this point in the history
added upscaler

improve upscaler UI

update vue-tsc

tidy up model for upscaler

add chain & gallery base

rename params in models to snake_case

fix type error

add splide basic

remove unused import

working basic gallery

working splide

fix text color

ongoing add social media

change diffusers to use pip again
  • Loading branch information
fvsionai committed Oct 11, 2022
1 parent 36c1817 commit 6c9472b
Show file tree
Hide file tree
Showing 32 changed files with 1,158 additions and 203 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ lerna-debug.log*
node_modules
dist
dist_py
dist_electron
build
release
dist-ssr
Expand Down
4 changes: 4 additions & 0 deletions components.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ declare module '@vue/runtime-core' {
AppTopBar: typeof import('./src/components/AppTopBar.vue')['default']
BrandLogo: typeof import('./src/components/images/BrandLogo.vue')['default']
BrandType: typeof import('./src/components/images/BrandType.vue')['default']
ChainForm: typeof import('./src/components/ChainForm.vue')['default']
FormKitExample: typeof import('./src/components/FormKitExample.vue')['default']
GalleryDisplay: typeof import('./src/components/GalleryDisplay.vue')['default']
ICarbonMenu: typeof import('~icons/carbon/menu')['default']
ICarbonMoon: typeof import('~icons/carbon/moon')['default']
ICarbonSun: typeof import('~icons/carbon/sun')['default']
Expand All @@ -28,6 +30,8 @@ declare module '@vue/runtime-core' {
SavedStatus: typeof import('./src/components/SavedStatus.vue')['default']
SdForm: typeof import('./src/components/SdForm.vue')['default']
ServerStatus: typeof import('./src/components/ServerStatus.vue')['default']
SocialMedia: typeof import('./src/components/SocialMedia.vue')['default']
UpForm: typeof import('./src/components/UpForm.vue')['default']
VIconButton: typeof import('./src/components/VIconButton.vue')['default']
}
}
4 changes: 2 additions & 2 deletions electron-builder.json5
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
appId: "Fvsion",
asar: true,
directories: {
output: "release/${version}",
output: "dist_electron",
},
files: ["dist"],
mac: {
Expand All @@ -25,6 +25,6 @@
oneClick: false,
perMachine: false,
allowToChangeInstallationDirectory: true,
deleteAppDataOnUninstall: false,
deleteAppDataOnUninstall: true,
},
}
1 change: 0 additions & 1 deletion electron/main/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ const PYPATH = app.isPackaged
: join(process.env.DIST, "../py");

import { app, BrowserWindow, shell, ipcMain, session } from "electron";
import { release } from "os";
import { join } from "path";

// // Disable GPU Acceleration for Windows 7
Expand Down

0 comments on commit 6c9472b

Please sign in to comment.