Skip to content
Open
Changes from 1 commit
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
6fb142c
Fixes issue #991. If disk has invalid signature, for example a Wii-U-…
cyberstudio10 Mar 21, 2022
6fd3b03
Update credits according to GitHub's contributor list
cyberstudio10 Mar 21, 2022
3af36e1
Since the update check directly references the GitHub repository, CI …
cyberstudio10 Mar 21, 2022
1ce080e
Correct loader path
cyberstudio10 Mar 21, 2022
c5d1967
loader.dol
Mar 21, 2022
403c410
Second place with a list of contributors, used by main.c to write a n…
cyberstudio10 Mar 21, 2022
7aba39f
loader.dol
cyberstudio10 Mar 21, 2022
2ab8549
When loader writes its own meta.xml it is now able to write the curre…
cyberstudio10 Mar 22, 2022
118c2bb
loader.dol
cyberstudio10 Mar 22, 2022
35188ae
Pass down GitHub CI workflow sequence number to be the MINOR_VERSION …
cyberstudio10 Mar 22, 2022
e5dc72a
loader.dol 7.7
cyberstudio10 Mar 22, 2022
8e84886
NintendontVersion.h has to be automatically committed, too, because t…
cyberstudio10 Mar 22, 2022
cef494a
Use devkitppc tag 20210619 because that's the oldest with both devkit…
cyberstudio10 Mar 22, 2022
a024307
loader.dol v7.9
cyberstudio10 Mar 22, 2022
451304f
We shall use the date/time of the last commit as the date/time in met…
cyberstudio10 Mar 23, 2022
5e1a9e7
loader.dol v7.10
cyberstudio10 Mar 23, 2022
cbc998a
Move version number change from loader level to top level
cyberstudio10 Mar 23, 2022
d742680
Need to define where NintendontVersion.h is
cyberstudio10 Mar 23, 2022
e394181
loader.dol v7.12
cyberstudio10 Mar 23, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,13 @@ jobs:
- uses: actions/checkout@v2
- name: Compile Nintendont
uses: ./.github/actions
- name: Commit loader.dol
run: |
git config user.name '${GITHUB_ACTOR}'
git config user.email '${GITHUB_ACTOR}@users.noreply.github.com'
git add nintendont/loader.dol
git commit -m "loader.dol"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Shouldn't the version at least be written here?

@cyberstudio10 cyberstudio10 Mar 22, 2022

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You mean, something like loader.dol v<major ver>.<build number>?

git push
- uses: actions/upload-artifact@v1
with:
name: Nintendont
Expand Down