Skip to content

Commit

Permalink
Release v1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Myself086 committed Jul 22, 2022
1 parent c8c80ec commit 18b72e4
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions Assembly/Project/RomInfo.asm
Original file line number Diff line number Diff line change
Expand Up @@ -171,9 +171,9 @@ RomInfo_InputMap:
// ---------------------------------------------------------------------------

// Version number
[80ffdB] = 0x04
[80ffdB] = 0x06 // !
.macro RomInfo_VersionString
.string0 "1.5"
.string0 "1.6" // !
.endm

RomInfo_Title:
Expand Down Expand Up @@ -288,25 +288,25 @@ RomInfo_Description:
RomInfo_SummaryMac "Defines ROM range 0x8000-0x9fff as static."
RomInfo_SummaryMac "May improve compatibility."
RomInfo_SummaryMac ""
RomInfo_SummaryMac "Improves performance slightly since v1.5.1"
RomInfo_SummaryMac "Improves performance slightly since v1.6"
RomInfo_DefineMac "public bool MemoryEmulation.StaticRange_80 : Static range 8000", RomInfo_StaticRanges, 0x10

RomInfo_SummaryMac "Defines ROM range 0xa000-0xbfff as static."
RomInfo_SummaryMac "May improve compatibility."
RomInfo_SummaryMac ""
RomInfo_SummaryMac "Improves performance slightly since v1.5.1"
RomInfo_SummaryMac "Improves performance slightly since v1.6"
RomInfo_DefineMac "public bool MemoryEmulation.StaticRange_a0 : Static range a000", RomInfo_StaticRanges, 0x20

RomInfo_SummaryMac "Defines ROM range 0xc000-0xdfff as static."
RomInfo_SummaryMac "May improve compatibility."
RomInfo_SummaryMac ""
RomInfo_SummaryMac "Improves performance slightly since v1.5.1"
RomInfo_SummaryMac "Improves performance slightly since v1.6"
RomInfo_DefineMac "public bool MemoryEmulation.StaticRange_c0 : Static range c000", RomInfo_StaticRanges, 0x40

RomInfo_SummaryMac "Defines ROM range 0xe000-0xffff as static."
RomInfo_SummaryMac "May improve compatibility."
RomInfo_SummaryMac ""
RomInfo_SummaryMac "Improves performance slightly since v1.5.1"
RomInfo_SummaryMac "Improves performance slightly since v1.6"
RomInfo_DefineMac "public bool MemoryEmulation.StaticRange_e0 : Static range e000", RomInfo_StaticRanges, 0x80

RomInfo_DefineMac "public void Tab_Cartridge : Cartridge settings.", 0, 0
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

Dev build:
v1.6:
- Added support for .pal file for custom palette
- Added support for Game Genie codes
- Added AOT inline for game code (must enable "AOT optimization")
Expand Down
Binary file modified Project Nested/Project_Nested.smc
Binary file not shown.
4 changes: 2 additions & 2 deletions Project Nested/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.5.0")]
[assembly: AssemblyFileVersion("1.5.0")]
[assembly: AssemblyVersion("1.6.0")]
[assembly: AssemblyFileVersion("1.6.0")]

0 comments on commit 18b72e4

Please sign in to comment.