mirror of https://github.com/arendst/Tasmota.git
Fix Linux compile error
5.6.1j * Fix compile error on Linux due to language folder name * Add basic internationalization and localization (#763) * Fix invalid JSON (#822)
This commit is contained in:
parent
0fbbc23b2c
commit
1facc146cc
|
@ -1,7 +1,7 @@
|
|||
## Sonoff-Tasmota
|
||||
Provide ESP8266 based Sonoff by [iTead Studio](https://www.itead.cc/) and ElectroDragon IoT Relay with Serial, Web and MQTT control allowing 'Over the Air' or OTA firmware updates using Arduino IDE.
|
||||
|
||||
Current version is **5.6.1i** - See [sonoff/_releasenotes.ino](https://github.com/arendst/Sonoff-Tasmota/blob/development/sonoff/_releasenotes.ino) for change information.
|
||||
Current version is **5.6.1j** - See [sonoff/_releasenotes.ino](https://github.com/arendst/Sonoff-Tasmota/blob/development/sonoff/_releasenotes.ino) for change information.
|
||||
|
||||
### ATTENTION All versions
|
||||
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
/* 5.6.1i
|
||||
/* 5.6.1j
|
||||
* Fix compile error on Linux due to language folder name
|
||||
*
|
||||
* 5.6.1i
|
||||
* Add basic internationalization and localization (#763)
|
||||
* Fix invalid JSON (#822)
|
||||
*
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
*/
|
||||
|
||||
#ifndef LANGUAGE
|
||||
#define LANGUAGE "language\en-GB.h"
|
||||
#define LANGUAGE "language/en-GB.h"
|
||||
#endif
|
||||
#include LANGUAGE
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
- Select IDE Tools - Flash Size: "1M (no SPIFFS)"
|
||||
====================================================*/
|
||||
|
||||
#define VERSION 0x05060109 // 5.6.1i
|
||||
#define VERSION 0x0506010A // 5.6.1j
|
||||
|
||||
enum log_t {LOG_LEVEL_NONE, LOG_LEVEL_ERROR, LOG_LEVEL_INFO, LOG_LEVEL_DEBUG, LOG_LEVEL_DEBUG_MORE, LOG_LEVEL_ALL};
|
||||
enum week_t {Last, First, Second, Third, Fourth};
|
||||
|
|
|
@ -26,8 +26,8 @@
|
|||
\*********************************************************************************************/
|
||||
|
||||
// -- Localization --------------------------------
|
||||
#define LANGUAGE "language\en-GB.h"
|
||||
//#define LANGUAGE "language\nl-NL.h"
|
||||
#define LANGUAGE "language/en-GB.h"
|
||||
//#define LANGUAGE "language/nl-NL.h"
|
||||
|
||||
// -- Project -------------------------------------
|
||||
#define PROJECT "sonoff" // PROJECT is used as the default topic delimiter and OTA file name
|
||||
|
|
Loading…
Reference in New Issue