Skip to content

Commit 18428fb

Browse files
authored
Merge pull request #326 from Dn-Programming-Core-Management/version-incremement
Release Version 0.5.1.1
2 parents f291d67 + 482a09b commit 18428fb

11 files changed

+22
-10
lines changed

Dn-FamiTracker.rc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -535,8 +535,8 @@ END
535535
//
536536

537537
VS_VERSION_INFO VERSIONINFO
538-
FILEVERSION 0,5,1,0
539-
PRODUCTVERSION 0,5,1,0
538+
FILEVERSION 0,5,1,1
539+
PRODUCTVERSION 0,5,1,1
540540
FILEFLAGSMASK 0x3fL
541541
#ifdef _DEBUG
542542
FILEFLAGS 0x1L
@@ -553,12 +553,12 @@ BEGIN
553553
BEGIN
554554
VALUE "CompanyName", "Dn Programming Core Management"
555555
VALUE "FileDescription", "Dn-FamiTracker, Extension of FamiTracker"
556-
VALUE "FileVersion", "0.5.1.0"
556+
VALUE "FileVersion", "0.5.1.1"
557557
VALUE "InternalName", "Dn-FamiTracker.exe"
558558
VALUE "LegalCopyright", "(c) jsr 2005-2020, HertzDevil 2014-2018, Dn Programming Core Management 2020-2025. All rights reserved."
559559
VALUE "OriginalFilename", "Dn-FamiTracker.exe"
560560
VALUE "ProductName", "Dn-FamiTracker"
561-
VALUE "ProductVersion", "0.5.1.0"
561+
VALUE "ProductVersion", "0.5.1.1"
562562
END
563563
END
564564
BLOCK "VarFileInfo"

Dn-help

File renamed without changes.
File renamed without changes.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
This doc aims to detail how to add a custom chip to Dn-FT, should the
44
NSF/NSFe/NSF2/INES/INES2.0 update to add new expansion audio.
55

6+
Update 2025-01-13: TODO rewrite this in a less passive aggressive tone
7+
68
## Disclaimer
79

810
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.

docs/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,16 @@ Version 0.5.1.0 - January 7, 2025
88

99
---
1010

11+
## Dn0.5.1.1 - 2025-01-13
12+
13+
- ### Hotfixes
14+
15+
- Match submenu item instead of hardcoding indices (@Gumball2415 #317 #318)
16+
17+
- ### Internal:
18+
19+
- Port GitHub Wiki pages to markdown files in repo (@Gumball2415 #319)
20+
1121
## Dn0.5.1.0 - 2025-01-07
1222

1323
- ### Important changes:
File renamed without changes.
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ Block ID: `INSTRUMENTS`
190190
| int | 4 | | `m_pInstrumentManager->GetInstrumentCount()` | Instrument count | 0 to `MAX_INSTRUMENTS` | Count of existing instruments | 1+ |
191191
| int | 4 | Per instrument | Instrument index | Instrument index | 0 to `MAX_INSTRUMENTS - 1` | | 1+ |
192192
| char | 1 | ^ | `m_pInstrumentManager->GetInstrument()->m_iType` | Instrument type | `enum inst_type_t` | See table. | 1+ |
193-
| CInstrument | size of CInstrument object | ^ | `m_pInstrumentManager->GetInstrument()` | Instrument definition | | See [Dn-FT instrument format](Dn-FT%20instrument%20format.md). | 1+ |
193+
| 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+ |
194194
| int | 4 | ^ | `strlen()` of `m_pInstrumentManager->GetInstrument()->GetName()` | Instrument name length | 0 to `INST_NAME_MAX` | | 1+ |
195195
| char[] | Instrument name length | ^ | `m_pInstrumentManager->GetInstrument()->GetName()` | Instrument name | | | 1+ |
196196

@@ -207,14 +207,14 @@ Block ID: `INSTRUMENTS`
207207

208208
#### Notes
209209

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

215215
#### Instrument format
216216

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

219219
##### Notes
220220

0 commit comments

Comments
 (0)