-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #592 from trobonox/main (Release v0.7.1)
Release v0.7.1
- Loading branch information
Showing
26 changed files
with
751 additions
and
400 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# SPDX-FileCopyrightText: Copyright (c) 2022-2024 trobonox <[email protected]> | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
name: DevSkim | ||
|
||
on: | ||
push: | ||
branches: [ "main" ] | ||
pull_request: | ||
branches: [ "main" ] | ||
schedule: | ||
- cron: '33 12 * * 4' | ||
|
||
jobs: | ||
lint: | ||
name: DevSkim | ||
runs-on: ubuntu-20.04 | ||
permissions: | ||
actions: read | ||
contents: read | ||
security-events: write | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Run DevSkim scanner | ||
uses: microsoft/DevSkim-Action@v1 | ||
|
||
- name: Upload DevSkim scan results to GitHub Security tab | ||
uses: github/codeql-action/upload-sarif@v3 | ||
with: | ||
sarif_file: devskim-results.sarif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,8 +11,8 @@ Since this app is constantly changing and previous versions are not receiving an | |
|
||
| Version | Supported | | ||
| ------- | ------------------ | | ||
| 0.6.1 | :white_check_mark: | | ||
| < 0.6.1 | :x: | | ||
| 0.7.0 | :white_check_mark: | | ||
| < 0.7.0 | :x: | | ||
|
||
## Reporting a Vulnerability | ||
If you find any vulnerability, please write an email at [email protected] with a short description, reproduction steps and possible attacks. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<!-- SPDX-FileCopyrightText: Copyright (c) 2022-2024 trobonox <hello@trobo.dev> --> | ||
<!-- --> | ||
<!-- SPDX-License-Identifier: GPL-3.0-or-later --> | ||
<!-- | ||
Kanri is an offline Kanban board app made using Tauri and Nuxt. | ||
Copyright (C) 2022-2024 trobonox <[email protected]> | ||
|
||
This program is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
|
||
This program is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
|
||
You should have received a copy of the GNU General Public License | ||
along with this program. If not, see <https://www.gnu.org/licenses/>. --> | ||
|
||
<template> | ||
<div | ||
class="bg-elevation-3 rounded-xl px-2 py-0.5 text-xs" | ||
:class="getTagTextColor" | ||
:style="props.tag.style" | ||
> | ||
{{ props.tag.text }} | ||
</div> | ||
</template> | ||
|
||
<script setup lang="ts"> | ||
import type { Tag } from '~/types/kanban-types'; | ||
|
||
const props = defineProps<{ | ||
tag: Tag; | ||
}>(); | ||
|
||
const getTagTextColor = computed(() => { | ||
return getContrast(props.tag.color); | ||
}); | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "kanri", | ||
"private": true, | ||
"version": "0.7.0", | ||
"version": "0.7.1", | ||
"description": "Offline-first Kanban board desktop app", | ||
"author": "trobonox <[email protected]>", | ||
"license": "GPL-3.0", | ||
|
@@ -21,10 +21,10 @@ | |
"@nuxt/eslint-config": "0.3.13", | ||
"@nuxtjs/tailwindcss": "6.12.0", | ||
"@tauri-apps/cli": "1.5.14", | ||
"@types/node": "^18.11.18", | ||
"@types/node": "^20.14.7", | ||
"@vueuse/core": "^10.2.1", | ||
"@vueuse/nuxt": "^10.2.1", | ||
"eslint": "9.4.0", | ||
"eslint": "9.5.0", | ||
"eslint-plugin-perfectionist": "^2.2.0", | ||
"eslint-plugin-tailwindcss": "^3.8.0", | ||
"nuxt": "^3.7.1", | ||
|
@@ -35,7 +35,7 @@ | |
}, | ||
"dependencies": { | ||
"@eslint/eslintrc": "^3.1.0", | ||
"@heroicons/vue": "2.1.3", | ||
"@heroicons/vue": "2.1.4", | ||
"@paralleldrive/cuid2": "^2.1.0", | ||
"@phosphor-icons/vue": "^2.1.6", | ||
"@pinia/nuxt": "0.5.1", | ||
|
@@ -59,7 +59,7 @@ | |
}, | ||
"resolutions": { | ||
"terser": "5.31.1", | ||
"undici": "6.18.2", | ||
"undici": "6.19.2", | ||
"json5": "2.2.3", | ||
"semver": "7.6.2" | ||
} | ||
|
Oops, something went wrong.