Skip to content

Commit 5e8a2a2

Browse files
committed
Switch encoder default back to mode 4C?
Thinking through the upgrade sequence, I think we can make the transition from 4C to B fairly painless -- if the decoder has auto-detect logic. So in line with that hope, we'll leave 4C as the default mode in 0.6.0.
1 parent d09bdda commit 5e8a2a2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/lib/cimbar_js/cimbar_js.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ namespace {
2222
unsigned _ecc = cimbar::Config::ecc_bytes();
2323
unsigned _colorBits = cimbar::Config::color_bits();
2424
int _compressionLevel = cimbar::Config::compression_level();
25-
bool _legacyMode = false;
25+
bool _legacyMode = true;
2626
}
2727

2828
extern "C" {

web/index.html

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

272272
<input style="display:none;" type="file" name="file_input" id="file_input" onchange="Main.fileInput(this);" />
273273

274-
<div id="nav-container" class="mode-b">
274+
<div id="nav-container" class="mode-4c">
275275
<div class="bg" onclick="Main.blurNav();"></div>
276276
<button id="nav-button" tabindex="0" onclick="Main.clickNav();">
277277
<span class="icon-bar"></span>

0 commit comments

Comments
 (0)