Skip to content

Commit 0f0f83b

Browse files
committed
Merge remote-tracking branch 'origin/main' into feature/116-create-an-installer-for-windows
2 parents ca94d19 + 78c074c commit 0f0f83b

File tree

563 files changed

+14334
-2966
lines changed

Some content is hidden

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

563 files changed

+14334
-2966
lines changed

.github/FUNDING.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
custom: ["https://paypal.me/mathoudebine"]

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,14 @@ Steps to reproduce the behavior:
2626
A clear and concise description of what you expected to happen.
2727

2828
**Screenshots / photos of the Turing screen**
29-
Add screenshots or photos of the rendering on the Turing screen to help explain your problem.
29+
Add screenshots or photos of the rendering on the smart screen to help explain your problem.
3030
You can drag and drop photos here to add them to the description.
3131

3232
**Environment:**
33-
- Revision of this project [e.g. 1.1.1, `main` branch, specific commit]
33+
- Smart screen model [e.g. Turing 5", XuanFang 3.5”]
34+
- Revision of this project [e.g. 3.0.0, `main` branch, specific commit]
3435
- OS with version [e.g. Windows 11, Ubuntu 22.04]
35-
- Python version [e.g. Python 3.8]
36+
- Python version [e.g. Python 3.10]
3637
- Hardware [e.g. Intel CPU, Nvidia GPU, Raspberry Pi 3 B+ ...]
3738

3839
**Additional context**

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
blank_issues_enabled: false
22
contact_links:
3-
- name: Existing issues
4-
url: https://github.com/mathoudebine/turing-smart-screen-python/issues?q=is%3Aissue+
5-
about: Please search for existing issues here first before opening a new one.
63
- name: FAQ / Troubleshooting
74
url: https://github.com/mathoudebine/turing-smart-screen-python/wiki/Troubleshooting
8-
about: Please check the FAQ page before opening a new issue.
5+
about: ⚠️ Please check the FAQ page before opening a new issue.
6+
- name: Existing issues
7+
url: https://github.com/mathoudebine/turing-smart-screen-python/issues?q=is%3Aissue+
8+
about: ⚠️ Please search for existing issues first before opening a new one.
99
- name: Discussions
1010
url: https://github.com/mathoudebine/turing-smart-screen-python/discussions
11-
about: Use the discussion space to have conversations, ask questions and post informations without opening issues.
11+
about: ℹ️ Use the discussion space to share your experience, ask questions and discuss with the community without opening issues.

.github/dependabot.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
version: 2
2+
3+
updates:
4+
- package-ecosystem: "pip"
5+
directory: "/"
6+
schedule:
7+
interval: "daily"
8+
allow:
9+
- dependency-type: "all"
10+
commit-message:
11+
prefix: ":arrow_up:"
12+
open-pull-requests-limit: 50
13+
14+
- package-ecosystem: "github-actions"
15+
directory: "/"
16+
schedule:
17+
interval: "daily"
18+
allow:
19+
- dependency-type: "all"
20+
commit-message:
21+
prefix: ":arrow_up:"
22+
open-pull-requests-limit: 50

.github/workflows/codeql.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ jobs:
3838

3939
steps:
4040
- name: Checkout repository
41-
uses: actions/checkout@v3
41+
uses: actions/checkout@v4
4242

4343
# Initializes the CodeQL tools for scanning.
4444
- name: Initialize CodeQL
45-
uses: github/codeql-action/init@v2
45+
uses: github/codeql-action/init@v3
4646
with:
4747
languages: ${{ matrix.language }}
4848
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -56,7 +56,7 @@ jobs:
5656
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, or Java).
5757
# If this step fails, then you should remove it and run the build manually (see below)
5858
- name: Autobuild
59-
uses: github/codeql-action/autobuild@v2
59+
uses: github/codeql-action/autobuild@v3
6060

6161
# ℹ️ Command-line programs to run using the OS shell.
6262
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
@@ -69,6 +69,6 @@ jobs:
6969
# ./location_of_script_within_repo/buildscript.sh
7070

7171
- name: Perform CodeQL Analysis
72-
uses: github/codeql-action/analyze@v2
72+
uses: github/codeql-action/analyze@v3
7373
with:
7474
category: "/language:${{matrix.language}}"

.github/workflows/dependency-review.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: 'Checkout Repository'
18-
uses: actions/checkout@v3
18+
uses: actions/checkout@v4
1919
- name: 'Dependency Review'
20-
uses: actions/dependency-review-action@v2
20+
uses: actions/dependency-review-action@v4

.github/workflows/lint-flake8.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,11 @@ jobs:
1111
lint-flake8:
1212

1313
runs-on: ubuntu-latest
14-
strategy:
15-
fail-fast: false
1614

1715
steps:
18-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1917
- name: Set up Python 3.x
20-
uses: actions/setup-python@v3
18+
uses: actions/setup-python@v5
2119
with:
2220
python-version: '3.x'
2321

.github/workflows/simple-program-linux.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ on:
77
- 'releases/**'
88
pull_request:
99

10-
1110
jobs:
1211
simple-program:
1312

@@ -16,12 +15,12 @@ jobs:
1615
strategy:
1716
fail-fast: false
1817
matrix:
19-
python-version: ["3.7", "3.8", "3.9", "3.10"]
18+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
2019

2120
steps:
22-
- uses: actions/checkout@v3
21+
- uses: actions/checkout@v4
2322
- name: Set up Python ${{ matrix.python-version }}
24-
uses: actions/setup-python@v4
23+
uses: actions/setup-python@v5
2524
with:
2625
python-version: ${{ matrix.python-version }}
2726

@@ -60,7 +59,7 @@ jobs:
6059
cp screencap.png screenshot-py${{ matrix.python-version }}.png
6160
6261
- name: Archive a screenshot
63-
uses: actions/upload-artifact@v3
62+
uses: actions/upload-artifact@v4
6463
with:
6564
name: screenshot-py${{ matrix.python-version }}
6665
path: screenshot-*.png

.github/workflows/simple-program-macos.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
python-version: ["3.7", "3.8", "3.9", "3.10"]
18+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
1919

2020
steps:
21-
- uses: actions/checkout@v3
21+
- uses: actions/checkout@v4
2222
- name: Set up Python ${{ matrix.python-version }}
23-
uses: actions/setup-python@v4
23+
uses: actions/setup-python@v5
2424
with:
2525
python-version: ${{ matrix.python-version }}
2626

@@ -59,7 +59,7 @@ jobs:
5959
cp screencap.png screenshot-py${{ matrix.python-version }}.png
6060
6161
- name: Archive a screenshot
62-
uses: actions/upload-artifact@v3
62+
uses: actions/upload-artifact@v4
6363
with:
6464
name: screenshot-py${{ matrix.python-version }}
6565
path: screenshot-*.png

.github/workflows/simple-program-windows.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
python-version: ["3.7", "3.8", "3.9", "3.10"]
18+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
1919

2020
steps:
21-
- uses: actions/checkout@v3
21+
- uses: actions/checkout@v4
2222
- name: Set up Python ${{ matrix.python-version }}
23-
uses: actions/setup-python@v4
23+
uses: actions/setup-python@v5
2424
with:
2525
python-version: ${{ matrix.python-version }}
2626

@@ -65,7 +65,7 @@ jobs:
6565
cp screencap.png screenshot-py${{ matrix.python-version }}.png
6666
6767
- name: Archive a screenshot
68-
uses: actions/upload-artifact@v3
68+
uses: actions/upload-artifact@v4
6969
with:
7070
name: screenshot-py${{ matrix.python-version }}
7171
path: screenshot-*.png

0 commit comments

Comments
 (0)