Skip to content

Commit

Permalink
Merge pull request #326 from Dn-Programming-Core-Management/version-i…
Browse files Browse the repository at this point in the history
…ncremement

Release Version 0.5.1.1
  • Loading branch information
Gumball2415 authored Jan 13, 2025
2 parents f291d67 + 482a09b commit 18428fb
Show file tree
Hide file tree
Showing 11 changed files with 22 additions and 10 deletions.
8 changes: 4 additions & 4 deletions Dn-FamiTracker.rc
Original file line number Diff line number Diff line change
Expand Up @@ -535,8 +535,8 @@ END
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 0,5,1,0
PRODUCTVERSION 0,5,1,0
FILEVERSION 0,5,1,1
PRODUCTVERSION 0,5,1,1
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -553,12 +553,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "Dn Programming Core Management"
VALUE "FileDescription", "Dn-FamiTracker, Extension of FamiTracker"
VALUE "FileVersion", "0.5.1.0"
VALUE "FileVersion", "0.5.1.1"
VALUE "InternalName", "Dn-FamiTracker.exe"
VALUE "LegalCopyright", "(c) jsr 2005-2020, HertzDevil 2014-2018, Dn Programming Core Management 2020-2025. All rights reserved."
VALUE "OriginalFilename", "Dn-FamiTracker.exe"
VALUE "ProductName", "Dn-FamiTracker"
VALUE "ProductVersion", "0.5.1.0"
VALUE "ProductVersion", "0.5.1.1"
END
END
BLOCK "VarFileInfo"
Expand Down
2 changes: 1 addition & 1 deletion Dn-help
File renamed without changes.
2 changes: 2 additions & 0 deletions docs/How to add a chip.md → docs/Adding_new_chips.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
This doc aims to detail how to add a custom chip to Dn-FT, should the
NSF/NSFe/NSF2/INES/INES2.0 update to add new expansion audio.

Update 2025-01-13: TODO rewrite this in a less passive aggressive tone

## Disclaimer

Dn-FamiTracker's aim is to fill in the gaps of NSF, NSFe and NSF2 features and/or emerging NESDev homebrew standards that 0CC or Vanilla fails to meet due to a lack of maintenance.
Expand Down
10 changes: 10 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,16 @@ Version 0.5.1.0 - January 7, 2025

---

## Dn0.5.1.1 - 2025-01-13

- ### Hotfixes

- Match submenu item instead of hardcoding indices (@Gumball2415 #317 #318)

- ### Internal:

- Port GitHub Wiki pages to markdown files in repo (@Gumball2415 #319)

## Dn0.5.1.0 - 2025-01-07

- ### Important changes:
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ Block ID: `INSTRUMENTS`
| int | 4 | | `m_pInstrumentManager->GetInstrumentCount()` | Instrument count | 0 to `MAX_INSTRUMENTS` | Count of existing instruments | 1+ |
| int | 4 | Per instrument | Instrument index | Instrument index | 0 to `MAX_INSTRUMENTS - 1` | | 1+ |
| char | 1 | ^ | `m_pInstrumentManager->GetInstrument()->m_iType` | Instrument type | `enum inst_type_t` | See table. | 1+ |
| CInstrument | size of CInstrument object | ^ | `m_pInstrumentManager->GetInstrument()` | Instrument definition | | See [Dn-FT instrument format](Dn-FT%20instrument%20format.md). | 1+ |
| CInstrument | size of CInstrument object | ^ | `m_pInstrumentManager->GetInstrument()` | Instrument definition | | See [Dn-FT_instrument_format_v2.4](Dn-FT_instrument_format_v2.4.md). | 1+ |
| int | 4 | ^ | `strlen()` of `m_pInstrumentManager->GetInstrument()->GetName()` | Instrument name length | 0 to `INST_NAME_MAX` | | 1+ |
| char[] | Instrument name length | ^ | `m_pInstrumentManager->GetInstrument()->GetName()` | Instrument name | | | 1+ |

Expand All @@ -207,14 +207,14 @@ Block ID: `INSTRUMENTS`

#### Notes

- See [Dn-FT instrument format](Dn-FT%20instrument%20format.md) for more details.
- See [Dn-FT_instrument_format_v2.4](Dn-FT_instrument_format_v2.4.md) for more details.
- If FDS is used then version must be at least 4 or recent files won't load
- v6 adds DPCM delta settings
- This block is only written if any instruments exist

#### Instrument format

See [Dn-FT instrument format](Dn-FT%20instrument%20format.md).
See [Dn-FT_instrument_format_v2.4](Dn-FT_instrument_format_v2.4.md).

##### Notes

Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions version.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@


// Define this for beta builds
#define WIP
//#define WIP


#define VERSION_API 0
#define VERSION_MAJ 5
#define VERSION_MIN 1
#define VERSION_REV 0
#define VERSION_REV 1

#define VERSION VERSION_API,VERSION_MAJ,VERSION_MIN,VERSION_REV

Expand Down

0 comments on commit 18428fb

Please sign in to comment.