Skip to content

Commit a5a70d7

Browse files
authored
Merge pull request #576 from jely2002/feature/tauri-rewrite-v3
Release v3 rewrite
2 parents 29f63a5 + bbbdb4d commit a5a70d7

File tree

351 files changed

+45517
-14681
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

351 files changed

+45517
-14681
lines changed

.codecov.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
codecov:
2+
require_ci_to_pass: false
3+
4+
coverage:
5+
status:
6+
project: off
7+
patch: off
8+
changes: off

.eslintrc.js

Lines changed: 0 additions & 288 deletions
This file was deleted.

.github/FUNDING.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# These are supported funding model platforms
22
ko_fi: jely2002
3-
github: jely2002
3+
github: jely2002

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ A clear and concise description of what you expected to happen.
2424
If applicable, add screenshots to help explain your problem.
2525

2626
**Additional info (please complete the following information):**
27-
- OS: [e.g. Windows 10]
28-
- Application version [e.g. 1.8.4] (the version can be found in the settings menu)
29-
- Application type [e.g. portable, installer, Microsoft Store]
27+
- OS: [e.g. Windows 10]
28+
- Application version [e.g. 1.8.4] (the version can be found in the settings menu)
29+
- Application type [e.g. portable, installer, Microsoft Store]
3030

3131
**Additional context**
32-
Add any other context about the problem here.
32+
Add any other context about the problem here.

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ assignees: ''
88
---
99

1010
**Is your feature request related to a problem? Please describe.**
11-
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12-
13-
**Describe the solution you'd like**
14-
A clear and concise description of what you want to happen.
15-
16-
**Describe alternatives you've considered**
17-
A clear and concise description of any alternative solutions or features you've considered.
18-
19-
**Additional context**
20-
Add any other context or screenshots about the feature request here.
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe alternatives you've considered**
17+
A clear and concise description of any alternative solutions or features you've considered.
18+
19+
**Additional context**
20+
Add any other context or screenshots about the feature request here.

.github/ISSUE_TEMPLATE/question.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ assignees: ''
88
---
99

1010
**Is your question related to a problem? Please describe.**
11-
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12-
13-
**Describe the question you have.**
14-
A clear and concise question about youtube-dl-gui.
15-
16-
**Additional context**
17-
Add any other context or screenshots about the question here.
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the question you have.**
14+
A clear and concise question about youtube-dl-gui.
15+
16+
**Additional context**
17+
Add any other context or screenshots about the question here.
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: 'Install Tauri System Deps'
2+
description: 'Disable docs and install all system packages needed for Tauri builds'
3+
runs:
4+
using: composite
5+
steps:
6+
- name: Disable man-db/doc triggers
7+
shell: bash
8+
run: |
9+
sudo tee /etc/dpkg/dpkg.cfg.d/01_nodoc > /dev/null << 'EOF'
10+
path-exclude /usr/share/doc/*
11+
path-exclude /usr/share/man/*
12+
path-exclude /usr/share/info/*
13+
EOF
14+
- name: Install Ubuntu build prerequisites
15+
shell: bash
16+
run: |
17+
sudo apt-get update
18+
sudo apt-get install -y \
19+
build-essential \
20+
pkg-config \
21+
curl \
22+
wget \
23+
file \
24+
libssl-dev \
25+
libwebkit2gtk-4.*-dev \
26+
libgtk-3-dev \
27+
libayatana-appindicator3-dev \
28+
librsvg2-dev

0 commit comments

Comments
 (0)