Skip to content

Commit

Permalink
add unified logs view
Browse files Browse the repository at this point in the history
add enable extra logs in electron buiding
add preliminary poki upload
  • Loading branch information
Armaldio committed Jan 17, 2025
1 parent cafa159 commit c67aca7
Show file tree
Hide file tree
Showing 17 changed files with 491 additions and 115 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* text eol=lf
2 changes: 2 additions & 0 deletions assets/electron/template/app/config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
* @property {string} appCategoryType
* @property {string} icon
* @property {boolean} disableAsarPackaging
* @property {boolean} enableExtraLogging
* @property {boolean} enableSteamSupport
* @property {number} steamGameId
*/
Expand All @@ -38,6 +39,7 @@ const config = {
description: 'A simple Electron application',
electronVersion: '',
disableAsarPackaging: false,
enableExtraLogging: false,
enableDisableRendererBackgrounding: false,
enableInProcessGPU: false,
frame: true,
Expand Down
20 changes: 10 additions & 10 deletions assets/electron/template/app/pipelab-plugin.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -17,33 +17,33 @@ module.exports = class PipelabPlugin extends PluginBase {
}

prePackage() {
console.log('running prePackage hook')
// console.log('running prePackage hook')
}
generateAssets() {
console.log('running generateAssets hook')
// console.log('running generateAssets hook')
}
postStart() {
console.log('running postStart hook')
// console.log('running postStart hook')
}
packageAfterCopy() {
console.log('running packageAfterCopy hook')
// console.log('running packageAfterCopy hook')
}
packageAfterPrune() {
console.log('running packageAfterPrune hook')
// console.log('running packageAfterPrune hook')
}
packageAfterExtract() {
console.log('running packageAfterExtract hook')
// console.log('running packageAfterExtract hook')
}
postPackage() {
console.log('running postPackage hook')
// console.log('running postPackage hook')
}
preMake() {
console.log('running preMake hook')
// console.log('running preMake hook')
}
postMake() {
console.log('running postMake hook')
// console.log('running postMake hook')
}
readPackageJson() {
console.log('running readPackageJson hook')
// console.log('running readPackageJson hook')
}
}
11 changes: 0 additions & 11 deletions components.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,6 @@ export {}
/* prettier-ignore */
declare module 'vue' {
export interface GlobalComponents {
Accordion: typeof import('primevue/accordion')['default']
AccordionContent: typeof import('primevue/accordioncontent')['default']
AccordionHeader: typeof import('primevue/accordionheader')['default']
AccordionPanel: typeof import('primevue/accordionpanel')['default']
Avatar: typeof import('primevue/avatar')['default']
Badge: typeof import('primevue/badge')['default']
Button: typeof import('primevue/button')['default']
Checkbox: typeof import('primevue/checkbox')['default']
Chip: typeof import('primevue/chip')['default']
Expand All @@ -35,11 +29,6 @@ declare module 'vue' {
Select: typeof import('primevue/select')['default']
SelectButton: typeof import('primevue/selectbutton')['default']
Skeleton: typeof import('primevue/skeleton')['default']
Tab: typeof import('primevue/tab')['default']
TabList: typeof import('primevue/tablist')['default']
TabPanel: typeof import('primevue/tabpanel')['default']
TabPanels: typeof import('primevue/tabpanels')['default']
Tabs: typeof import('primevue/tabs')['default']
Toast: typeof import('primevue/toast')['default']
}
}
74 changes: 2 additions & 72 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
href="https://fonts.gstatic.com"
crossorigin
>
<link href="https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Geist+Mono:[email protected]&family=Geist:[email protected]&family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<style>
html,
body,
Expand All @@ -36,79 +37,8 @@
height: 100%;
}

@font-face {
font-family: 'Geist';
src: url('node_modules/geist/dist/fonts/geist-sans/Geist-Black.woff2') format('woff2');
font-weight: 900;
font-style: normal;
}

@font-face {
font-family: 'Geist';
src: url('node_modules/geist/dist/fonts/geist-sans/Geist-Bold.woff2') format('woff2');
font-weight: 700;
font-style: normal;
}

@font-face {
font-family: 'Geist';
src: url('node_modules/geist/dist/fonts/geist-sans/Geist-Light.woff2') format('woff2');
font-weight: 300;
font-style: normal;
}

@font-face {
font-family: 'Geist';
src: url('node_modules/geist/dist/fonts/geist-sans/Geist-Medium.woff2') format('woff2');
font-weight: 500;
font-style: normal;
}

@font-face {
font-family: 'Geist';
src: url('node_modules/geist/dist/fonts/geist-sans/Geist-Regular.woff2') format('woff2');
font-weight: 400;
font-style: normal;
}

@font-face {
font-family: 'Geist';
src: url('node_modules/geist/dist/fonts/geist-sans/Geist-SemiBold.woff2') format('woff2');
font-weight: 600;
font-style: normal;
}

@font-face {
font-family: 'Geist';
src: url('node_modules/geist/dist/fonts/geist-sans/Geist-Thin.woff2') format('woff2');
font-weight: 100;
font-style: normal;
}

@font-face {
font-family: 'Geist';
src: url('node_modules/geist/dist/fonts/geist-sans/Geist-UltraBlack.woff2') format('woff2');
font-weight: 950;
font-style: normal;
}

@font-face {
font-family: 'Geist';
src: url('node_modules/geist/dist/fonts/geist-sans/Geist-UltraLight.woff2') format('woff2');
font-weight: 200;
font-style: normal;
}

@font-face {
font-family: 'Geist';
src: url('node_modules/geist/dist/fonts/geist-sans/Geist-Variable.woff2') format('woff2');
font-weight: 100 900;
font-style: normal;
}


html {
font-family: "Geist", sans-serif !important;
font-family: "Geist", serif;
/* font-optical-sizing: auto;
font-weight: normal;
font-style: normal;
Expand Down
4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,13 @@
"@jitl/quickjs-wasmfile-release-sync": "0.31.0",
"@lydell/node-pty": "1.0.3",
"@pipelab/core": "1.3.3",
"@poki/cli": "0.1.16",
"@primevue/themes": "4.1.1",
"@sentry/electron": "5.4.0",
"@sentry/vue": "8.32.0",
"@supabase/supabase-js": "2.45.6",
"@trpc/client": "10.45.2",
"@types/date-fns": "2.6.3",
"@types/dompurify": "3.0.5",
"@vee-validate/valibot": "4.13.2",
"@vuelidate/core": "2.0.3",
Expand All @@ -75,6 +77,7 @@
"es-toolkit": "1.25.2",
"esm": "3.2.25",
"execa": "9.4.1",
"fancy-ansi": "0.1.3",
"geist": "1.3.1",
"get-value": "3.0.1",
"klona": "2.0.6",
Expand Down Expand Up @@ -141,6 +144,7 @@
"@vue/eslint-config-prettier": "9.0.0",
"@vue/eslint-config-typescript": "13.0.0",
"@vue/test-utils": "2.4.6",
"editorconfig": "2.0.0",
"electron": "32.1.2",
"electron-vite": "2.3.0",
"eslint": "9.13.0",
Expand Down
Loading

0 comments on commit c67aca7

Please sign in to comment.