Skip to content

Commit

Permalink
Merge pull request #10 from jakcron/v0.5.0-release
Browse files Browse the repository at this point in the history
libpietendo v0.5.0 Release
  • Loading branch information
jakcron authored Feb 12, 2023
2 parents 49c73ab + ac9f871 commit 3e5feb4
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: Compile Main Branch
name: Compile Main Branches

on:
push:
branches: [ main ]
branches: [ development-tip, stable ]
pull_request:
branches: [ main ]
branches: [ development-tip, stable ]
release:
types: [ created ]

Expand Down
2 changes: 1 addition & 1 deletion Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = libpietendo
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = v0.4.0
PROJECT_NUMBER = v0.5.0

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

![Platform](https://img.shields.io/badge/platform-linux:%20x86__64,%20i386%20%7C%20windows:%20x86__64,%20i386%20%7C%20macOS:%20x86__64,%20arm64-lightgrey.svg)

![Version](https://img.shields.io/badge/version-0.4.0%20%7C%20prerelease-green.svg)
![Version](https://img.shields.io/badge/version-0.5.0%20%7C%20prerelease-green.svg)

Library for parsing Nintendo file formats.

Expand Down
10 changes: 5 additions & 5 deletions include/pietendo/hac/define/nca.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,11 @@ namespace nca
enum ContentType : byte_t
{
ContentType_Program = 0,
ContentType_Meta = 2,
ContentType_Control = 3,
ContentType_Manual = 4,
ContentType_Data = 5,
ContentType_PublicData = 6
ContentType_Meta = 1,
ContentType_Control = 2,
ContentType_Manual = 3,
ContentType_Data = 4,
ContentType_PublicData = 5
};

enum KeyBankIndex
Expand Down

0 comments on commit 3e5feb4

Please sign in to comment.