Skip to content

Commit a7acbf3

Browse files
committed
upgrade from original code
1 parent b797f2d commit a7acbf3

File tree

133 files changed

+3143
-5467
lines changed

Some content is hidden

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

133 files changed

+3143
-5467
lines changed
Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
name: Bug report
2+
description: This is not a forum or a help section, this is strictly developer oriented.
3+
body:
4+
- type: checkboxes
5+
attributes:
6+
label: Is there an existing issue for this?
7+
description: Only RetroArch bugs should be filed here. Not core bugs or game bugs
8+
options:
9+
- label: This is a bug in RetroArch frontend
10+
required: true
11+
- label: I have searched the existing issues
12+
13+
- type: textarea
14+
id: description
15+
attributes:
16+
label: Description
17+
description: Description of the actual behavior of the bug
18+
placeholder: What is actually happening
19+
validations:
20+
required: true
21+
22+
- type: textarea
23+
id: expected
24+
attributes:
25+
label: Expected behavior
26+
description: What you expected to happen
27+
28+
- type: textarea
29+
id: reproduce_steps
30+
attributes:
31+
label: Steps to reproduce the bug
32+
description: List all steps to reproduce the problem
33+
placeholder: |
34+
1. [First step]
35+
2. [Second step]
36+
3. [and so on...]
37+
validations:
38+
required: true
39+
40+
- type: input
41+
id: version
42+
attributes:
43+
label: Version/Commit
44+
description: You can find this information under Information/System Information
45+
placeholder: 1.19.1 (Git 0792144fe3)
46+
validations:
47+
required: true
48+
49+
- type: input
50+
id: bisecting
51+
attributes:
52+
label: Bisect Results
53+
description: Did this work with any older RetroArch version? Can you point to a version (or even commit) where it broke?
54+
placeholder: 43105ab
55+
56+
- type: dropdown
57+
id: nigthly
58+
attributes:
59+
label: Check in the nightly version
60+
description: This issue is reproducible with [nightly builds](https://buildbot.libretro.com/nightly/)?
61+
options:
62+
- I don't know
63+
- Yes, this is reproduced in the nightly build
64+
- No, looks like this is already resolved
65+
default: 0
66+
validations:
67+
required: true
68+
69+
- type: input
70+
id: platform
71+
attributes:
72+
label: Platform & operating system
73+
description: The system you're running RetroArch on
74+
placeholder: Linux aarch64, Windows 11 23H2, Android 14, PS Vita
75+
validations:
76+
required: true
77+
78+
- type: input
79+
id: cores
80+
attributes:
81+
label: Affected Cores
82+
description: List the affected cores and their versions here, if applicable. If the issue **only occurs with a single core** then the bug may not be with RetroArch; in that case, you should report it in that core's repository instead of here.
83+
placeholder: bsnes (115), FCEUmm ((SVN) aebea87), Snes9x (1.63.229933ea)
84+
85+
- type: textarea
86+
id: environment
87+
attributes:
88+
label: Environment information
89+
description: Additional information about hardware and software
90+
placeholder: |
91+
* Window Manager: dwm/X11
92+
* Affected video drivers: sdl2, glcore
93+
* Installed through Flatpak
94+
95+
- type: textarea
96+
id: logs
97+
attributes:
98+
label: Relevant log output
99+
description: Paste [RetroArch log](https://docs.libretro.com/guides/generating-retroarch-logs/) and/or [GDB backtrace](https://docs.libretro.com/development/retroarch/debugging/). This will be automatically formatted into code, so no need for backticks.
100+
render: shell
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
name: Feature request
3+
title: "[Feature Request] <FEATURE NAME>"
4+
about: Is there something you'd like to see in RetroArch?
5+
labels: feature request
6+
---

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
blank_issues_enabled: true
2+
contact_links:
3+
- name: Libretro Forums
4+
url: https://forums.libretro.com
5+
about: A place to discuss all things libretro
6+
- name: Discord
7+
url: https://ra-link.web.app/discord
8+
about: Join our Discord server for help
9+
- name: RetroArch/libretro subreddit
10+
url: https://www.reddit.com/r/RetroArch
11+
about: Subreddit dedicated to RetroArch and the libretro API framework
12+
- name: Documentation
13+
url: https://docs.libretro.com
14+
about: Official RetroArch documentation for users and developers

.github/workflows/Android.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
id: slug
3131
run: echo "::set-output name=sha8::$(echo ${GITHUB_SHA} | cut -c1-8)"
3232

33-
- uses: actions/upload-artifact@v3
33+
- uses: actions/upload-artifact@v4
3434
with:
3535
name: retroarch-android-${{ steps.slug.outputs.sha8 }}
3636
path: |

.github/workflows/DOS-DJGPP.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
id: slug
3232
run: echo "::set-output name=sha8::$(echo ${GITHUB_SHA} | cut -c1-8)"
3333

34-
- uses: actions/upload-artifact@v3
34+
- uses: actions/upload-artifact@v4
3535
with:
3636
name: RA-DOS-dummy-${{ steps.slug.outputs.sha8 }}
3737
path: |

.github/workflows/MacOS.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
id: slug
2727
run: echo "sha8=$(echo ${GITHUB_SHA} | cut -c1-8)" >> $GITHUB_OUTPUT
2828

29-
- uses: actions/upload-artifact@v3
29+
- uses: actions/upload-artifact@v4
3030
with:
3131
name: RetroArch-${{ steps.slug.outputs.sha8 }}
3232
path: |

.github/workflows/Miyoo.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
id: slug
3232
run: echo "::set-output name=sha8::$(echo ${GITHUB_SHA} | cut -c1-8)"
3333

34-
- uses: actions/upload-artifact@v3
34+
- uses: actions/upload-artifact@v4
3535
with:
3636
name: retroarch_miyoo_arm32${{ steps.slug.outputs.sha8 }}
3737
path: |

.github/workflows/PS2.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
id: slug
3737
run: echo "::set-output name=sha8::$(echo ${GITHUB_SHA} | cut -c1-8)"
3838

39-
- uses: actions/upload-artifact@v3
39+
- uses: actions/upload-artifact@v4
4040
with:
4141
name: RA-PS2-dummy-${{ steps.slug.outputs.sha8 }}
4242
path: |

.github/workflows/PS4-ORBIS.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
id: slug
3838
run: echo "::set-output name=sha8::$(echo ${GITHUB_SHA} | cut -c1-8)"
3939

40-
- uses: actions/upload-artifact@v3
40+
- uses: actions/upload-artifact@v4
4141
with:
4242
name: bin-${{ steps.slug.outputs.sha8 }}
4343
path: |

.github/workflows/PSP.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
id: slug
4343
run: echo "::set-output name=sha8::$(echo ${GITHUB_SHA} | cut -c1-8)"
4444

45-
- uses: actions/upload-artifact@v3
45+
- uses: actions/upload-artifact@v4
4646
with:
4747
name: RA-PSP-dummy-${{ steps.slug.outputs.sha8 }}
4848
path: |

0 commit comments

Comments
 (0)