Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

merge main from develop #25

Merged
merged 43 commits into from
Dec 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
6c99fc0
chore: add LICENSE
RuanAragao Dec 12, 2023
dc3c224
chore: add lints config files
RuanAragao Dec 12, 2023
59cfc24
chore: add nuxt eslint
RuanAragao Dec 12, 2023
6a4581d
chore: add prettier
RuanAragao Dec 12, 2023
56e64f2
chore: add scripts and prettier ignore
RuanAragao Dec 12, 2023
036d43b
chore: config eslint
RuanAragao Dec 12, 2023
bc0fbc4
core: add lint config to applications
RuanAragao Dec 12, 2023
9bb073d
Merge pull request #1 from RuanAragao/config-lints
RuanAragao Dec 12, 2023
61e9d67
feat: remove console.log
RuanAragao Dec 12, 2023
75edc65
fix: remove deprecated v-on '.native'
RuanAragao Dec 12, 2023
c2260c3
feat(a11y): add keyboard accessibility to launcher grid
RuanAragao Dec 12, 2023
ccea987
chore: add vitest configuration and update dependencies
RuanAragao Dec 13, 2023
7309884
test: add AppLauncher unit test
RuanAragao Dec 13, 2023
3c63170
Merge pull request #2 from RuanAragao/add-vitest
RuanAragao Dec 13, 2023
47c14bf
🦄 refactor: change tag to header
RuanAragao Dec 13, 2023
c254f61
🧪 test: add unit test for WindowComponent
RuanAragao Dec 13, 2023
cfcc3b7
chore: add husky and lint-staged
RuanAragao Dec 13, 2023
5cb59c5
chore: remove auto run test on commit
RuanAragao Dec 13, 2023
95b1782
Merge pull request #3 from RuanAragao/add-husky
RuanAragao Dec 13, 2023
47d6b95
chore: add stylelint
RuanAragao Dec 13, 2023
a11a9ed
chore: add eslintcache to gitignore
RuanAragao Dec 13, 2023
c53ac18
Merge pull request #4 from RuanAragao/add-stylelint
RuanAragao Dec 13, 2023
46a6835
ci: add github actions and dependabot
RuanAragao Dec 13, 2023
b02aa9b
Merge pull request #5 from RuanAragao/config-github
RuanAragao Dec 13, 2023
126faf3
fix: change pnpm to yarn to run linters
RuanAragao Dec 13, 2023
9ae3ff1
ci: change node_modules path cache
RuanAragao Dec 13, 2023
ec5b689
ci: add cache to node_modules
RuanAragao Dec 13, 2023
b5b166f
test: refactor unit tests
RuanAragao Dec 13, 2023
30a37d4
chore: add vitest dep
RuanAragao Dec 13, 2023
7db0f1c
Unit test (#9)
RuanAragao Dec 14, 2023
d91993a
Chore/ci add build step (#10)
RuanAragao Dec 14, 2023
8792a17
Feature/boot desktop gui (#11)
RuanAragao Dec 14, 2023
f5c4992
Feature/boot applications file system (#13)
RuanAragao Dec 16, 2023
1ffd62c
Merge branch 'main' into develop
RuanAragao Dec 16, 2023
918d7ea
fix: fix non development path (#15)
RuanAragao Dec 18, 2023
0c873d2
chore: remove unused deps
RuanAragao Dec 18, 2023
26dbf82
refactor: remove async and add head data
RuanAragao Dec 18, 2023
ab1511b
fix: Add unhead package and import useHead from unhead
RuanAragao Dec 20, 2023
e2411f1
feat: add xterm.js and disable app (#22)
RuanAragao Dec 20, 2023
50f27a6
Merge branch 'main' into develop
RuanAragao Dec 20, 2023
98a6b3e
fix: remove xterm
RuanAragao Dec 20, 2023
ecc4b82
chore(deps-dev): bump eslint from 8.55.0 to 8.56.0 (#17)
dependabot[bot] Dec 20, 2023
c1ba45c
fix(deps): bump actions/setup-node from 4.0.0 to 4.0.1 (#19)
dependabot[bot] Dec 20, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
uses: actions/checkout@master

- name: Setup node env 🏗
uses: actions/setup-node@v4.0.0
uses: actions/setup-node@v4.0.1
with:
node-version: ${{ matrix.node }}
check-latest: true
Expand Down
3 changes: 1 addition & 2 deletions applications/index.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import type { Application } from '../types'

import about from './about/settings'
import xterm from './xterm/settings'

export default function Applications() {
return [about, xterm] as Application[]
return [about] as Application[]
}
10 changes: 0 additions & 10 deletions applications/xterm/data.json

This file was deleted.

Binary file removed applications/xterm/icon.png
Binary file not shown.
26 changes: 0 additions & 26 deletions applications/xterm/index.vue

This file was deleted.

12 changes: 0 additions & 12 deletions applications/xterm/settings.ts

This file was deleted.

2 changes: 1 addition & 1 deletion components/window-component.vue
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
></button>
</div>
</header>
<div class="content p-4">
<div class="content">
<slot></slot>
</div>
<div
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"@typescript-eslint/parser": "^6.14.0",
"@vue/test-utils": "^2.4.3",
"@vue/vue3-jest": "^29.2.6",
"eslint": "^8.55.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-nuxt": "^4.0.0",
"eslint-plugin-prettier": "^5.0.1",
Expand Down
Loading
Loading