Skip to content

Commit ff3a475

Browse files
1.06
1 parent 5349c10 commit ff3a475

File tree

3 files changed

+15
-9
lines changed

3 files changed

+15
-9
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
2+
## 1.06
3+
4+
2015-03-27
5+
6+
- initial "hello, open source!" release

release/changelog.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
<!-- ...................................................................... -->
1919

20-
<strong>1.06-alpha May 25, 2015</strong>:<ul>
20+
<strong>1.06-alpha May 26, 2015</strong>:<ul>
2121
<li>the plugin is <a href="https://github.com/seven-phases/spectrum-analyzer">open source</a> now</li>
2222
<li>added 64-bit version</li>
2323
<li>new presets and color schemes (double-click 'color-schemes.reg' to install)</li>

src/sa.settings.h

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ const int infEdge = -200; // dB
330330
const int barPad = 2; // px
331331
const Rect gridPad(24, 16, 24, 16); // px
332332

333-
const Size displaySize(653, 290); // px
333+
const Size displaySize(653, 261); // px
334334

335335
// grid frequencies, Hz, (second value specifies if the grid line is labeled)
336336
// "decimal" grid:
@@ -422,13 +422,13 @@ struct Defaults
422422

423423
Defaults()
424424
{
425-
namespace p = parameters;
426-
value[p::version] = presetVersion;
425+
namespace p = parameters;
426+
value[p::version] = presetVersion;
427427
value[p::display_] = 0;
428-
value[p::x] = ~3333;
429-
value[p::y] = ~3333;
430-
value[p::w] = displaySize.w;
431-
value[p::h] = displaySize.h;
428+
value[p::x] = 0;
429+
value[p::y] = 0;
430+
value[p::w] = displaySize.w;
431+
value[p::h] = displaySize.h;
432432

433433
Type v(value + SettingsIndex);
434434
v.defaults();
@@ -463,7 +463,7 @@ struct Pref
463463
const Pref prefs[PrefCount] =
464464
{
465465
keepColors, 1, "Keep current colors when loading presets",
466-
smartDisplay, 1, "Use presets to manage display size",
466+
smartDisplay, 0, "Use presets to manage display size",
467467
};
468468

469469
// ............................................................................

0 commit comments

Comments
 (0)