Skip to content

Commit

Permalink
More tests, improved reports, and UI fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
dacoaster committed Dec 7, 2022
1 parent bfc8ae1 commit 481f2bb
Show file tree
Hide file tree
Showing 91 changed files with 3,576 additions and 546 deletions.
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "yattie",
"version": "0.1.0",
"version": "0.1.1",
"private": true,
"main": "background.js",
"engines": {
Expand All @@ -27,7 +27,7 @@
"@fortawesome/fontawesome-free": "^6.2.1",
"@johmun/vue-tags-input": "^2.1.0",
"@tinymce/tinymce-vue": "^3.2.0",
"@toast-ui/vue-image-editor": "^3.15.2",
"tui-image-editor": "^3.15.3",
"adm-zip": "^0.5.9",
"core-js": "^3.8.3",
"d3": "^5.14.2",
Expand All @@ -39,6 +39,7 @@
"fluent-ffmpeg": "^2.1.2",
"lodash": "^4.17.21",
"simple-json-db": "^2.0.0",
"sinon": "^15.0.0",
"tinymce": "^6.2.0",
"uuid": "3.3.3",
"v-mask": "^2.3.0",
Expand Down
47 changes: 17 additions & 30 deletions src/App.vue
Original file line number Diff line number Diff line change
@@ -1,41 +1,28 @@
<template>
<v-app>
<v-main>
<v-overlay :absolute="true" :value="overlay"> </v-overlay>
<div class="app-wrapper">
<component :is="layout">
<router-view />
</v-main>
</v-app>
</component>
</div>
</template>

<script>
import { IPC_HANDLERS, IPC_FUNCTIONS } from "./modules/constants";
const default_layout = "default";
export default {
name: "App",
data: () => ({
overlay: false,
}),
mounted() {
if (!window.ipc) return;
window.ipc.on("OPEN_CHILD_WINDOW", () => {
this.overlay = true;
this.$forceUpdate();
});
window.ipc.on("CLOSE_CHILD_WINDOW", () => {
this.overlay = false;
this.$forceUpdate();
});
window.ipc.on("APP_SETTING", async () => {
await window.ipc.invoke(IPC_HANDLERS.CAPTURE, {
func: IPC_FUNCTIONS.OPEN_SETTING_WINDOW,
});
});
window.ipc.on("SET_THEME", ({ apperance }) => {
const isDarkMode = apperance === "dark" ? true : false;
this.$vuetify.theme.dark = isDarkMode;
localStorage.setItem("isDarkMode", isDarkMode);
});
computed: {
layout() {
return (this.$route.meta.layout || default_layout) + "-layout";
},
},
};
</script>
<style scoped>
.app-wrapper {
width: 100%;
height: 100vh;
background: transparent;
}
</style>
Binary file added src/assets/avatar.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/assets/icon/camera-white.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/assets/icon/expand.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/icon/jira.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions src/assets/icon/jira.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions src/assets/icon/microphone-slash-solid.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions src/assets/icon/microphone-solid.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions src/assets/icon/microphone-white.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 0 additions & 4 deletions src/assets/icon/microphone.svg

This file was deleted.

3 changes: 3 additions & 0 deletions src/assets/icon/pause-white.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions src/assets/icon/pencil-white1.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/icon/practitest.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions src/assets/icon/practitest.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/icon/qtest.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 481f2bb

Please sign in to comment.