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

Update packages #65

Merged
merged 1 commit into from
Feb 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions .github/issue_template.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
**`Environment (Required):`**
- **`OS:`**: <!--EXAMPLE--> Windows
- **`OS:`**: <!--EXAMPLE--> Windows
- **`Version:`**: <!--EXAMPLE--> 10

**`Issue explanation (Required):`**
- EXAMPLE: I was using this but that happened wtf is this library doing I am not gonna use it again.

**`Extra information (Optional):`**
- EXAMPLE: Hi my name is Cristiano Ronaldo
- EXAMPLE: Hi my name is Cristiano Ronaldo
2 changes: 1 addition & 1 deletion .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Closes: <!--If his PR does not solve an issue, remove this line--> ISSUE_LINK

**`Explanation (Required):`**
- EXPLANATION_HERE
- EXPLANATION_HERE
14 changes: 7 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'Release'
name: Release
on:
push:
branches:
Expand Down Expand Up @@ -37,7 +37,7 @@ jobs:
env:
RUNS_ON: '${{ matrix.platform }}'
with:
script: "return process.env.RUNS_ON === 'macos-latest' ? '--target universal-apple-darwin' : ''"
script: 'return process.env.RUNS_ON === ''macos-latest'' ? ''--target universal-apple-darwin'' : '''''
result-encoding: string

- uses: actions/github-script@v6
Expand All @@ -54,16 +54,16 @@ jobs:

- name: install aarch64-apple-darwin
if: matrix.platform == 'macos-latest'
run: 'rustup target add aarch64-apple-darwin'
run: rustup target add aarch64-apple-darwin

- uses: tauri-apps/tauri-action@v0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
TAURI_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }}
TAURI_KEY_PASSWORD: ${{ secrets.TAURI_KEY_PASSWORD }}
with:
tagName: __VERSION__
releaseName: '__VERSION__'
tagName: __VERSION__
releaseName: __VERSION__
releaseDraft: false
prerelease: false
args: ${{ steps.set-args.outputs.result }}
args: ${{ steps.set-args.outputs.result }}
5 changes: 2 additions & 3 deletions .github/workflows/type-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,7 @@ jobs:
${{ runner.os }}-pnpm-store-

- name: Install dependencies
run: pnpm install
run: pnpm install

- name: Check types
run: pnpm run typecheck

42 changes: 36 additions & 6 deletions .vscode/settings.default.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,43 @@
// Please convert this file name to settings.json and use settings below.
{
"prettier.enable": false,
"editor.formatOnSave": false,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit",
"source.organizeImports": "never"
},
"eslint.rules.customizations": [
{ "rule": "style/*", "severity": "off" },
{ "rule": "format/*", "severity": "off" },
{ "rule": "*-indent", "severity": "off" },
{ "rule": "*-spacing", "severity": "off" },
{ "rule": "*-spaces", "severity": "off" },
{ "rule": "*-order", "severity": "off" },
{ "rule": "*-dangle", "severity": "off" },
{ "rule": "*-newline", "severity": "off" },
{ "rule": "*quotes", "severity": "off" },
{ "rule": "*semi", "severity": "off" }
],
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
"vue",
"html",
"markdown",
"json",
"jsonc",
"yaml",
"toml"
],
"[rust]": {
"editor.defaultFormatter": "rust-lang.rust-analyzer"
},
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
"eslint.enable": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"eslint.experimental.useFlatConfig": true,
"vue.complete.casing.props": "camel",
"vue.complete.casing.tags": "pascal",
"vue.complete.normalizeComponentImportName": true
}
"vue.complete.normalizeComponentImportName": true,
"typescript.tsdk": "node_modules/typescript/lib"
}
43 changes: 36 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,11 @@
</div>

<div align="center">

[Download page](https://gitification.app/)

</div>


# Gitification (Beta)
An app to view your notifications easily on your menubar.

Expand All @@ -23,7 +22,6 @@ An app to view your notifications easily on your menubar.
<img style="border-radius: 30px" src="images/size_comparison.png" />
</div>


# Screenshots
<div align="center">
<img width="400" src="images/home.png" />
Expand All @@ -49,16 +47,47 @@ If you want to contribute you should install these extensions and set-up these s

```json
{
"prettier.enable": false,
"editor.formatOnSave": false,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit",
"source.organizeImports": "never"
},
"eslint.rules.customizations": [
{ "rule": "style/*", "severity": "off" },
{ "rule": "format/*", "severity": "off" },
{ "rule": "*-indent", "severity": "off" },
{ "rule": "*-spacing", "severity": "off" },
{ "rule": "*-spaces", "severity": "off" },
{ "rule": "*-order", "severity": "off" },
{ "rule": "*-dangle", "severity": "off" },
{ "rule": "*-newline", "severity": "off" },
{ "rule": "*quotes", "severity": "off" },
{ "rule": "*semi", "severity": "off" }
],
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
"vue",
"html",
"markdown",
"json",
"jsonc",
"yaml",
"toml"
],
"[rust]": {
"editor.defaultFormatter": "rust-lang.rust-analyzer"
},
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
"eslint.enable": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"eslint.experimental.useFlatConfig": true,
"vue.complete.casing.props": "camel",
"vue.complete.casing.tags": "pascal",
"vue.complete.normalizeComponentImportName": true
"vue.complete.normalizeComponentImportName": true,
"typescript.tsdk": "node_modules/typescript/lib"
}
```
- And lastly in extensions page search `@builtin typescript` then disable TypeScript LSP for your workspace, after reloading vscode you're good to go.
10 changes: 5 additions & 5 deletions .eslintrc.cjs → eslint.config.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
module.exports = {
extends: '@antfu',
import antfu from '@antfu/eslint-config'

export default antfu({
rules: {
'@typescript-eslint/consistent-type-imports': ['error', { prefer: 'type-imports', fixStyle: 'inline-type-imports' }],
'no-console': 'off',
'vue/attribute-hyphenation': 'off',
'vue/v-on-event-hyphenation': 'off',
'@typescript-eslint/no-unused-vars': 'error',
'ts/consistent-type-definitions': ['error', 'type'],
'vue/custom-event-name-casing': 'off',
'vue/max-attributes-per-line': ['error', {
singleline: {
Expand All @@ -16,4 +16,4 @@ module.exports = {
},
}],
},
}
})
58 changes: 29 additions & 29 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
{
"name": "gitification",
"version": "1.3.1",
"type": "module",
"version": "1.3.1",
"files": [
"README.md",
"package.json"
],
"scripts": {
"dev": "run-p vite:dev devtools",
"dev": "run-p vite:dev",
"vite:dev": "vite",
"devtools": "vue-devtools",
"build": "pnpm run typecheck && vite build",
Expand All @@ -13,42 +17,38 @@
},
"dependencies": {
"@tauri-apps/api": "^1.2.0",
"@vueuse/core": "^9.12.0",
"dayjs": "^1.11.7",
"overlayscrollbars": "^2.2.0",
"overlayscrollbars-vue": "^0.5.1",
"p-all": "^4.0.0",
"pinia": "^2.0.29",
"@vueuse/core": "^10.7.2",
"dayjs": "^1.11.10",
"overlayscrollbars": "^2.5.0",
"overlayscrollbars-vue": "^0.5.7",
"p-all": "^5.0.0",
"pinia": "^2.1.7",
"redaxios": "^0.5.1",
"tauri-plugin-autostart-api": "github:tauri-apps/tauri-plugin-autostart",
"tauri-plugin-store-api": "github:tauri-apps/tauri-plugin-store",
"vue": "^3.3.4",
"vue": "^3.4.15",
"vue-selectable-items": "^1.0.1",
"wowerlay": "1.1.0"
},
"files": [
"README.md",
"package.json"
],
"devDependencies": {
"@antfu/eslint-config": "^0.39.5",
"@iconify-json/octicon": "^1.1.30",
"@iconify-json/ph": "^1.1.4",
"@antfu/eslint-config": "^2.6.4",
"@iconify-json/octicon": "^1.1.52",
"@iconify-json/ph": "^1.1.11",
"@tauri-apps/cli": "^1.2.2",
"@types/node": "^18.7.10",
"@vitejs/plugin-vue": "^4.0.0",
"@vue/devtools": "^6.5.0",
"async-mutex": "^0.4.0",
"eslint": "^8.38.0",
"eslint-plugin-unicorn": "^47.0.0",
"@types/node": "^20.11.16",
"@vitejs/plugin-vue": "5.0.3",
"@vue/devtools": "^7.0.14",
"async-mutex": "^0.4.1",
"eslint": "^8.56.0",
"eslint-plugin-unicorn": "^51.0.1",
"focus-visible": "^5.2.0",
"hotkeys-js": "^3.10.1",
"hotkeys-js": "3.13.7",
"npm-run-all": "^4.1.5",
"sass": "^1.57.1",
"typescript": "^4.6.4",
"unplugin-icons": "^0.15.2",
"vite": "^4.0.0",
"vite-plugin-checker": "^0.5.5",
"vue-tsc": "^1.0.11"
"sass": "^1.70.0",
"typescript": "^5.3.3",
"unplugin-icons": "^0.18.5",
"vite": "5.0.12",
"vite-plugin-checker": "0.6.4",
"vue-tsc": "1.8.27"
}
}
Loading
Loading