Skip to content

Commit 67d4877

Browse files
authoredFeb 6, 2022
Merge pull request #2 from JiPaix/beta
0.0.44
2 parents 084c596 + bff0ade commit 67d4877

File tree

7 files changed

+15
-5
lines changed

7 files changed

+15
-5
lines changed
 

‎.github/workflows/lint.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ on:
1717
- '**.vue'
1818
- 'package-lock.json'
1919
- '.github/workflows/lint.yml'
20-
20+
concurrency:
21+
group: lint-${{ github.ref }}-${{ github.sha }}
22+
cancel-in-progress: false
2123

2224
defaults:
2325
run:

‎.github/workflows/release-beta.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
- '.gitignore'
1111
- '.github/**'
1212
- '!.github/workflows/release.yml'
13-
13+
- '!.github/workflows/beta.yml'
1414
concurrency:
1515
group: release-${{ github.ref }}
1616
cancel-in-progress: true

‎.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
- '.gitignore'
1111
- '.github/**'
1212
- '!.github/workflows/release.yml'
13-
13+
- '!.github/workflows/release-beta.yml'
1414
concurrency:
1515
group: release-${{ github.ref }}
1616
cancel-in-progress: true

‎.github/workflows/tests.yml

+4
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ on:
1616
- 'package-lock.json'
1717
- '.github/workflows/tests.yml'
1818

19+
concurrency:
20+
group: tests-${{ github.ref }}-${{ github.sha }}
21+
cancel-in-progress: false
22+
1923
defaults:
2024
run:
2125
shell: 'bash'

‎.github/workflows/typechecking.yml

+4
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ on:
1818
- 'package-lock.json'
1919
- '.github/workflows/typechecking.yml'
2020

21+
concurrency:
22+
group: typecheck-${{ github.ref }}-${{ github.sha }}
23+
cancel-in-progress: false
24+
2125
defaults:
2226
run:
2327
shell: 'bash'

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "all-mangas-reader-desktop",
33
"description": "All Mangas Reader Desktop",
4-
"version": "0.0.43",
4+
"version": "0.0.44",
55
"private": false,
66
"engines": {
77
"node": ">=v16.13",

‎packages/renderer/src/components/QuasarAppBar.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
rounded
99
class="bg-purple-8 text-white"
1010
>
11-
We can't find your saved recipes until you sign in.
11+
that's a v-card replacement using quasar
1212

1313
<template #action>
1414
<q-btn

0 commit comments

Comments
 (0)
Please sign in to comment.