Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
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
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: Release
on:
push:
branches:
- release
tags:
- 'v*.*.*'

jobs:
publish-tauri:
Expand All @@ -19,7 +19,7 @@ jobs:
- name: setup node
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 24
- name: install Rust stable
uses: dtolnay/rust-toolchain@stable
- name: install dependencies (ubuntu only)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/type-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '16'
node-version: '24'

- uses: pnpm/action-setup@v2
name: Install pnpm
Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
### 2.0.0
- Now you can add `Multiple` accounts and switch between them.
- Now fetching notifications are `change aware`. Instead of fetching all notificaitons every 60 seconds, now Gitification only fetches notifications if `Github API` hints that notifications are modified.
- This will reduce network usage but might make content stale if Github API fails to hint modified notifications.
- A new look for Gitification.
- Vibrancy is removed.
- Checkboxes are removed, now it mimics finder/explorer style selection with CMD/CTRL + Click, Shift + Click and right click highlights.
- Shift + Click is range aware.
- Mark as read on open is default behavior, cannot be changed.
- Turkish language support is removed, now only single language support is provided, English.


### 1.3.1
- Fixed app always starts in Turkish. (Sorry for that :sweat_smile:)

Expand Down
23 changes: 21 additions & 2 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
import config from '@kadiryazici/eslint-config'
import antfu from '@antfu/eslint-config'

export default config()
export default antfu({
rules: {
'no-console': 'off',
'vue/attribute-hyphenation': 'off',
'vue/v-on-event-hyphenation': 'off',
'ts/consistent-type-definitions': ['error', 'type'],
'vue/custom-event-name-casing': 'off',
'vue/max-attributes-per-line': ['error', {
singleline: {
max: 1,
},
multiline: {
max: 1,
},
}],
'style/arrow-parens': ['error', 'always'],
'curly': ['error', 'all'],
'brace-style': ['error', 'stroustrup', { allowSingleLine: false }],
},
})
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!DOCTYPE html>
<html lang="en">
<html lang="en" class="overscroll-none">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
Expand Down
43 changes: 23 additions & 20 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "gitification",
"type": "module",
"version": "1.3.2",
"version": "2.0.0",
"files": [
"README.md",
"package.json"
],
"scripts": {
"dev": "run-p vite:dev devtools",
"dev": "run-p vite:dev",
"devtools": "vue-devtools",
"vite:dev": "vite",
"build": "pnpm run typecheck && vite build",
Expand All @@ -16,39 +16,42 @@
"tauri": "tauri"
},
"dependencies": {
"@tailwindcss/vite": "^4.2.2",
"@tauri-apps/api": "^1.5.3",
"@vueuse/core": "^10.7.2",
"@vueuse/core": "^14.2.1",
"dayjs": "^1.11.10",
"es-toolkit": "^1.45.1",
"klona": "^2.0.6",
"ky": "^1.14.3",
"overlayscrollbars": "^2.5.0",
"overlayscrollbars-vue": "^0.5.7",
"p-all": "^5.0.0",
"redaxios": "^0.5.1",
"tailwindcss": "^4.2.2",
"tauri-plugin-autostart-api": "github:tauri-apps/tauri-plugin-autostart",
"tauri-plugin-store-api": "github:tauri-apps/tauri-plugin-store",
"vue": "^3.4.15",
"vue": "^3.5.32",
"vue-selectable-items": "^1.0.1",
"wowerlay": "1.1.0"
},
"devDependencies": {
"@iconify-json/octicon": "^1.1.52",
"@iconify-json/ph": "^1.1.11",
"@kadiryazici/eslint-config": "^1.0.3",
"@antfu/eslint-config": "^8.0.0",
"@iconify-json/hugeicons": "^1.2.2",
"@tauri-apps/cli": "^1.5.3",
"@types/node": "^20.11.16",
"@vitejs/plugin-vue": "5.0.3",
"@vue/devtools": "^7.0.15",
"async-mutex": "^0.4.1",
"eslint": "^8.56.0",
"eslint-plugin-unicorn": "^51.0.1",
"@types/node": "^25.5.2",
"@vitejs/plugin-vue": "^6.0.5",
"@vitejs/plugin-vue-jsx": "^5.1.5",
"@vue/devtools": "^8.1.1",
"async-mutex": "^0.5.0",
"eslint": "^10.1.0",
"eslint-plugin-unicorn": "^64.0.0",
"focus-visible": "^5.2.0",
"hotkeys-js": "3.13.7",
"hotkeys-js": "^4.0.3",
"npm-run-all": "^4.1.5",
"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"
"typescript": "^6.0.2",
"unplugin-icons": "^23.0.1",
"vite": "^8.0.3",
"vite-plugin-checker": "^0.12.0",
"vue-tsc": "^3.2.6"
}
}
Loading
Loading