-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add issues hyperlink and fix CI (#6)
* add issues url * update CI Update ci.yml fix build error in cheatsheet_example.tex Update write-gitid.sh * add issues url to test files * Update write-gitid.sh * Update write-gitid.sh * change link position in latex4ei_sheet.cls * fix language not working I dont know why, but this fixes the error that the language is set to german when english is passed as option. valid options are "english" and "ngerman" (not "german") * change default url placeholder * Update .github/workflows/ci.yml Co-authored-by: Markus Hofbauer <[email protected]> * Delete update.yml * Add git stuff to cheatsheet class * change if clause to `GitNiceDate` in latex4ei_sheet.cls * fix languages swapped * update date * Update .github/workflows/ci.yml Co-authored-by: Markus Hofbauer <[email protected]> * update .gitignore and remove md templates --------- Co-authored-by: Markus Hofbauer <[email protected]>
- Loading branch information
1 parent
00f0ede
commit 8137e9f
Showing
17 changed files
with
193 additions
and
74 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,12 @@ | ||
{ | ||
"name": "LaTeX4Ei Devcontainer", | ||
"image": "makeappdev/uselatex:latest", | ||
"extensions": [ | ||
"eamodio.gitlens", | ||
"James-Yu.latex-workshop", | ||
"ms-azuretools.vscode-docker", | ||
"ms-vscode-remote.vscode-remote-extensionpack", | ||
"ms-vscode.cmake-tools", | ||
"twxs.cmake" | ||
], | ||
} |
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,5 @@ | ||
blank_issues_enabled: true | ||
contact_links: | ||
- name: 🔍 Search for existing issues first. | ||
url: https://github.com/latex4ei/Allgemein/issues | ||
about: Please search to see if an issue already exists, either in this repo or our common issue in https://github.com/latex4ei/Allgemein/issues |
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,45 @@ | ||
name: Feature request | ||
description: Suggest an idea for this project | ||
labels: [enhancement] | ||
assignees: [] | ||
|
||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
**Is your feature request related to a problem? Please describe.** | ||
- type: textarea | ||
id: problem-description | ||
attributes: | ||
label: Problem Description | ||
description: A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] | ||
|
||
- type: markdown | ||
attributes: | ||
value: | | ||
**Describe the solution you'd like** | ||
- type: textarea | ||
id: solution-description | ||
attributes: | ||
label: Solution Description | ||
description: A clear and concise description of what you want to happen. | ||
|
||
- type: markdown | ||
attributes: | ||
value: | | ||
**Describe alternatives you've considered** | ||
- type: textarea | ||
id: alternatives-description | ||
attributes: | ||
label: Alternatives Description | ||
description: A clear and concise description of any alternative solutions or features you've considered. | ||
|
||
- type: markdown | ||
attributes: | ||
value: | | ||
**Additional context** | ||
- type: textarea | ||
id: additional-context | ||
attributes: | ||
label: Additional Context | ||
description: Add any other context or screenshots about the feature request here. |
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,25 @@ | ||
name: Inhaltlicher Fehler | ||
description: Hilf uns Fehler zu Verbessern | ||
labels: [bug] | ||
assignees: [] | ||
|
||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
**Fehlerbeschreibung** | ||
- type: textarea | ||
id: error-description | ||
attributes: | ||
label: Fehlerbeschreibung | ||
description: Beschreibe hier den Fehler | ||
|
||
- type: markdown | ||
attributes: | ||
value: | | ||
**Referenz** | ||
- type: textarea | ||
id: reference | ||
attributes: | ||
label: Referenz | ||
description: Wenn möglich immer eine Referenz zum Skript o.ä. angeben oder als Screenshot mit einfügen. |
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,14 @@ | ||
--- | ||
name: Vorschlag Fehlerkorrektur | ||
about: Du hast einen Fehler gefunden und willst ihn korrigieren | ||
title: '' | ||
labels: bug | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Fehlerbeschreibung** | ||
Beschreibe hier den Fehler | ||
|
||
**Referenz** | ||
Wenn möglich immer eine Referenz zum Skript o.ä. angeben oder als Screenshot mit einfügen. |
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,45 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches: [ master, main ] | ||
pull_request: | ||
branches: [ master, main ] | ||
|
||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
container: makeappdev/uselatex:latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Configure Git safe directory with GITHUB_WORKSPACE | ||
run: git config --global --add safe.directory $GITHUB_WORKSPACE | ||
|
||
- name: Build | ||
run: | | ||
cmake --version; pdflatex --version | ||
mkdir -p build && cd build | ||
cmake .. | ||
make | ||
- name: Prepare Deployment | ||
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/main' | ||
run: | | ||
mkdir -p export | ||
echo "# This branch is for deployment only" >> export/README.md | ||
cp build/doc/*.pdf export | ||
cp build/template-files/*.pdf export | ||
cp build/git.id export | ||
- name: Deploy | ||
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/main' | ||
uses: JamesIves/[email protected] | ||
with: | ||
branch: gh-pages | ||
folder: export | ||
single-commit: true | ||
silent: true |
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 |
---|---|---|
|
@@ -115,4 +115,4 @@ sympy-plots-for-*.tex/ | |
|
||
# xindy | ||
*.xdy | ||
StochastischeSignale.pdf | ||
*.DS_Store |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -17,4 +17,4 @@ Known Bugs: 1 | |
\section command. | ||
|
||
|
||
© 2011-2019, LaTeX4EI | ||
© 2011-2024, LaTeX4EI |
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