Skip to content

Commit e762deb

Browse files
Merge pull request #29 from Oppro-net-Development/2.0.0
ManagerX V2.0.0 – Update
2 parents c583691 + a661f89 commit e762deb

218 files changed

Lines changed: 7834 additions & 31968 deletions

File tree

Some content is hidden

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

.github/workflows/label.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212

1313
steps:
1414
# Schritt 1: Fügt den Checkout-Schritt hinzu, um die Dateien lokal abzurufen
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v6
1616

1717
# Schritt 2: Führt den Labeler aus.
18-
- uses: actions/labeler@v5
18+
- uses: actions/labeler@v6
1919
with:
2020
# configuration-path ist jetzt optional, aber sicherheitshalber belassen wir ihn
2121
configuration-path: .github/labeler.yml

.github/workflows/static.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Deploy static content to Pages
33

44
on:
5-
# Runs on pushes targeting the default branch
5+
# Runs on pushes targeting the 2.0.0 branch
66
push:
77
branches: ["2.0.0"]
88

@@ -15,29 +15,29 @@ permissions:
1515
pages: write
1616
id-token: write
1717

18-
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
19-
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
18+
# Allow only one concurrent deployment
2019
concurrency:
2120
group: "pages"
2221
cancel-in-progress: false
2322

2423
jobs:
25-
# Single deploy job since we're just deploying
2624
deploy:
2725
environment:
2826
name: github-pages
2927
url: ${{ steps.deployment.outputs.page_url }}
3028
runs-on: ubuntu-latest
3129
steps:
3230
- name: Checkout
33-
uses: actions/checkout@v4
31+
uses: actions/checkout@v6 # Updated to stable v4
32+
3433
- name: Setup Pages
3534
uses: actions/configure-pages@v5
35+
3636
- name: Upload artifact
37-
uses: actions/upload-pages-artifact@v3
37+
uses: actions/upload-pages-artifact@v4
3838
with:
39-
# Upload entire repository
40-
path: 'site'
39+
# This points to your specific folder
40+
path: 'site/'
4141
- name: Deploy to GitHub Pages
4242
id: deployment
43-
uses: actions/deploy-pages@v4
43+
uses: actions/deploy-pages@v4

.gitignore

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ DevTools/backend/utils/config.py
2727
command.yaml
2828
wiki_stats.json
2929
checker.py
30+
bot_stats.json
3031

3132
# Build-Ordner: alles ignorieren...
3233
_build/*
@@ -39,13 +40,4 @@ docs/_build/html/_sources/
3940
furo.js.LICENSE.txt
4041
fontawesome.js.LICENSE.txt
4142
.map
42-
docs/_build/doctrees/
43-
44-
45-
# ...außer HTML & CSS im html-Ordner
46-
!_build/html/
47-
!_build/html/**/*.html
48-
!_build/html/**/*.css
49-
!_build/html/_static/
50-
!_build/html/_static/**/*.css
51-
!_build/html/_static/**/*.js
43+
docs/_build/*

.readthedocs.yaml

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,26 @@
1+
2+
# Read the Docs configuration file
3+
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
4+
5+
# Required
16
version: 2
27

8+
# Set the OS, Python version, and other tools you might need
39
build:
410
os: ubuntu-24.04
511
tools:
612
python: "3.12"
713

14+
# Build documentation in the "docs/" directory with Sphinx
15+
sphinx:
16+
configuration: docs/conf.py
17+
18+
# Optionally, but recommended,
19+
# declare the Python requirements required to build your documentation
20+
# See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
21+
# python:
22+
# install:
23+
# - requirements: docs/requirements.txt
824
python:
925
install:
10-
- requirements: docs/req.txt # <- hier die Datei für die Docs
11-
12-
sphinx:
13-
configuration: docs/conf.py # Pfad zu deiner conf.py
26+
- requirements: requirements/docs_req.txt
Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,4 @@
22

33
from .config import *
44

5-
from .utils import *
6-
75
from .logging import *

0 commit comments

Comments
 (0)