Skip to content

Commit 1c12813

Browse files
committed
Update changelog, fix some styles.
1 parent db0488f commit 1c12813

File tree

3 files changed

+24
-12
lines changed

3 files changed

+24
-12
lines changed

CHANGELOG.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Each change is prefixed with code of related module:
88
- *app* = web application
99
- *dbg* = debugger
1010

11-
## [Unreleased][unreleased]
11+
## [0.4.0] - 2015-11-29
1212
### Fixed
1313
- [core] Detection of NES 2.0 ROM image format.
1414
- [core] Correct size of PRG/CHR RAM that is read from ROM images (iNES / NES 2.0).
@@ -66,6 +66,6 @@ Each change is prefixed with code of related module:
6666
## 0.1.0 - 2015-04-26
6767
- Complete rewrite from CoffeeScript to ECMAScript 6.
6868

69-
[unreleased]: https://github.com/jpikl/cfxnes/compare/v0.3.0...HEAD
70-
[0.3.0]: https://github.com/jpikl/cfxnes/compare/v0.2.0...v0.3.0
71-
[0.2.0]: https://github.com/jpikl/cfxnes/compare/v0.1.0...v0.2.0
69+
[0.4.0]: https://github.com/jpikl/cfxnes/compare/v0.3.0...v0.4.0
70+
[0.3.0]: https://github.com/jpikl/cfxnes/compare/v0.2.0...v0.3.0
71+
[0.2.0]: https://github.com/jpikl/cfxnes/compare/v0.1.0...v0.2.0

app/src/client/styles/settings.less

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,17 +57,22 @@
5757
}
5858
}
5959
.reset-settings {
60-
display: table;
61-
> * {
62-
display: table-row;
60+
@media (min-width: @screen-sm-min) {
61+
display: table;
6362
> * {
64-
display: table-cell;
65-
padding: 8px;
63+
display: table-row;
64+
> * {
65+
display: table-cell;
66+
padding: 8px;
67+
}
6668
}
6769
}
6870
button {
6971
width: 150px;
7072
}
73+
p {
74+
margin-top: 10px;
75+
}
7176
}
7277
}
7378

app/src/client/tags/about/about-changelog.tag

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,27 +7,34 @@
77
<li><em>app</em> = web application</li>
88
<li><em>dbg</em> = debugger</li>
99
</ul>
10-
<h3><a href="https://github.com/jpikl/cfxnes/compare/v0.3.0...HEAD">Unreleased</a></h3>
10+
<h3><a href="https://github.com/jpikl/cfxnes/compare/v0.3.0...v0.4.0">0.4.0</a> - 2015-11-29</h3>
1111
<h4>Fixed</h4>
1212
<ul>
1313
<li>[core] Detection of NES 2.0 ROM image format.</li>
1414
<li>[core] Correct size of PRG/CHR RAM that is read from ROM images (iNES / NES 2.0).</li>
15-
<li>[core] MMC1 mapper imlementation (PRG RAM protection, PRG ROM mapping).</li>
15+
<li>[core] MMC1 mapper implementation (PRG RAM protection, PRG ROM mapping).</li>
1616
<li>[core] MMC3 mapper implementation (PRG RAM protection, CHR ROM mapping).</li>
17+
<li>[core, lib] Attempt to load invalid configuration won&#39;t crash emulator during initialization.</li>
1718
</ul>
1819
<h4>Added</h4>
1920
<ul>
20-
<li>[core] Support for BNROM and NINA-001 mappers.</li>
21+
<li>[core] Support for BNROM, NINA-001 and Color Dreams mappers.</li>
22+
<li>[core, app] - New color palettes: ASQ, BMF, FCEU(X), Nestopia.</li>
2123
<li>[lib] API to change loggging level.</li>
24+
<li>[lib, app] Multiple fullscreen modes.</li>
2225
<li>[app] Option to reset configuration.</li>
2326
<li>[app] Option to delete saved game data.</li>
2427
<li>[dbg] Debugger can take screenshots.</li>
28+
<li>[dbg] Debugger command line options <code>-i</code> and <code>-p</code>.</li>
2529
</ul>
2630
<h4>Changed</h4>
2731
<ul>
2832
<li>[core] Cartridge data (battery backed RAM) is stored in IndexedDB.</li>
2933
<li>[core, lib] API uses Promises for asynchronous operations.</li>
3034
<li>[lib, app] Default audio volume is 50%.</li>
35+
<li>[app] Vector graphics is used where possible.</li>
36+
<li>[app] Only single refresh when multiple files are changed in library.</li>
37+
<li>[app] <em>Game Library</em> renamed to <em>Library</em>.</li>
3138
</ul>
3239
<h3><a href="https://github.com/jpikl/cfxnes/compare/v0.2.0...v0.3.0">0.3.0</a> - 2015-08-09</h3>
3340
<h4>Fixed</h4>

0 commit comments

Comments
 (0)