Commit Graph

324 Commits (521837299cef0bc2a4928b6aa7bbef480fb8a171)

Author SHA1 Message Date
Colin Kuebler 521837299c Merge branch 'development' of https://github.com/ct-Open-Source/tuya-convert into development 2020-01-01 18:51:41 -05:00
Colin Kuebler 932d896447 Add python3 version check 2020-01-01 15:35:08 -05:00
Colin Kuebler c2b33b6670
Merge pull request #417 from haniham/patch-1
Update README.md
2020-01-01 15:33:19 -05:00
Colin Kuebler 55537aabfd
Let's keep it semi-professional 2020-01-01 15:32:15 -05:00
Colin Kuebler 9e16171dc5 Add version information to wifi log for debugging 2020-01-01 15:16:35 -05:00
Colin Kuebler 5298a9c1c8 Revert identity prefix correction 2020-01-01 12:57:01 -05:00
Colin Kuebler 465d90748f
Merge pull request #466 from marcelm/master
Print a warning if running over SSH
2019-12-31 19:10:02 -05:00
Colin Kuebler 688cbde5d7
Merge pull request #477 from digiblur/development
Update tasmota.bin to 8.1.0.2
2019-12-31 10:47:12 -05:00
digiblur ffde70a16c Update tasmota.bin to 8.1.0.2
Corrects an issue in 8.1.0.1 with serial bridge taking over GPIO 1 and 3 sensor pins.
2019-12-30 23:54:54 -06:00
Colin Kuebler 283cf56e20
Merge pull request #467 from digiblur/development
Update tasmota.bin to version 8.1.0.1
2019-12-27 18:47:57 -05:00
Colin Kuebler e217a30b62
Merge pull request #443 from Cyber1000/addDocker
Added docker
2019-12-27 18:47:22 -05:00
digiblur 5db5f61460 Update tasmota.bin to version 8.1.0.1 2019-12-27 16:34:24 -06:00
Marcel Martin b30aece034 Print a warning if running over SSH
Close #426
2019-12-27 22:02:36 +01:00
Harald Heigl 07e9d828f2 adjusted README 2019-12-19 00:24:56 +01:00
Harald Heigl 040d60fbec Adjustements to packages and README 2019-12-19 00:11:21 +01:00
Harald Heigl 07d239c2c4 Added docker 2019-12-09 00:36:39 +01:00
Markus Hahnenkamm dbd4ceedc0
Update README.md
Added "Ubuntu 18.04.3 64Bit in VirtualBox on Win10 with a cheap-ass RTL8188CU Wifi Adapter connected to the VM" to tested Environments - should be helpful to other Windows Users
2019-11-25 16:14:29 +01:00
Colin Kuebler 70448fec6c Fix accidental file mode change 2019-11-24 15:34:32 -05:00
Colin Kuebler eb92c84bd9
Merge pull request #415 from kueblc/tabs
Change spaces used for indentation into tabs
2019-11-24 15:31:46 -05:00
Colin Kuebler 46cb505bfc Change spaces used for indentation into tabs 2019-11-23 17:45:50 -05:00
Colin Kuebler dbeab1ba9d
Release v2.3.0 2019-11-23 14:21:38 -05:00
Colin Kuebler 6ac6ab5b30 Call stop_flash automatically at the end of start_flash, now that the process is self contained 2019-11-23 13:50:54 -05:00
Colin Kuebler b5cfc5e6e1 Only show first 9 options, those that are accessible with a single keypress
This way a user does not accidentally install option 1 when intending >= 10
2019-11-22 12:54:14 -05:00
Colin Kuebler 060240794e Change return to exit since this is no longer a function 2019-11-22 12:42:04 -05:00
Colin Kuebler 37e8b62012
Merge pull request #411 from Cyber1000/separate-logfiles
Moving logfiles into backupfolder to get logfile-per-flashed-device
2019-11-20 00:27:59 -05:00
Harald Heigl 3560f12b99 Moving logfiles into backupfolder to get logfile-per-flashed-device 2019-11-19 23:29:08 +01:00
Colin Kuebler 15b043a325
Merge pull request #401 from kueblc/fix-hostapd-panic
Added check for blacklist file known to cause kernel panic in hostapd
2019-11-19 12:33:20 -05:00
Colin Kuebler d4171a16a9 Add link back to original discussion on hostapd kernel panic 2019-11-19 12:32:16 -05:00
Colin Kuebler ee88ae0fa3
Merge pull request #400 from kueblc/fix-identity-prefix
Always use the known PSK identity prefix to calculate the PSK
2019-11-19 12:30:19 -05:00
Colin Kuebler 09f20a3230 Print prefix if it does not match for debugging purposes 2019-11-19 12:28:55 -05:00
Colin Kuebler 889c16c5e0
Merge pull request #396 from kueblc/flash-menu
Replace manual `curl` calls with a menu driven UI
2019-11-19 12:27:26 -05:00
Colin Kuebler 3de90a8664
Merge pull request #405 from R0Wi/master
Add backward compatibility for hostapd v2.5 and older (fix #398)
2019-11-19 01:43:51 -05:00
R0Wi b5837490ed Improvements discussed in #404 2019-11-19 07:06:52 +01:00
Colin Kuebler 3cef06065f Merge remote-tracking branch 'upstream/master' into development 2019-11-18 21:57:18 -05:00
R0Wi 9cfa0f467e Add backward compatibility for hostapd v2.5 and older 2019-11-18 21:42:33 +01:00
Colin Kuebler dcfc08e100 Apply shellcheck recommendations 2019-11-18 13:14:24 -05:00
Colin Kuebler ecaada06da Implement recommendations from shellcheck thanks to @pfeerick 2019-11-18 13:07:18 -05:00
Colin Kuebler d0984d1769
Merge pull request #402 from cclauss/patch-1
Use ==/!= to compare str, bytes, and int literals
2019-11-18 12:57:53 -05:00
Christian Clauss 8d679574b3
Use ==/!= to compare str, bytes, and int literals
Identity is not the same thing as equality in Python so use ==/!= to compare str, bytes, and int literals. In Python >= 3.8, these instances will raise SyntaxWarnings so it is best to fix them now.  https://docs.python.org/3.8/whatsnew/3.8.html#porting-to-python-3-8
2019-11-18 14:41:07 +01:00
Colin Kuebler 42002e152b Warn user not to have anything plugged in while flashing, fix #385 2019-11-17 15:16:24 -05:00
Colin Kuebler b74a708dad Added check for blacklist file known to cause kernel panic in hostapd, fixes #373 2019-11-17 13:07:55 -05:00
Colin Kuebler c96ad7229f Always use the known PSK identity prefix to calculate the PSK 2019-11-17 12:55:53 -05:00
Colin Kuebler f2499d24f4 Encode all str keys passed to Crypto #332 2019-11-15 10:13:13 -05:00
Colin Kuebler 130a974629
Merge pull request #393 from kueblc/tuya-discovery
Tuya discovery
2019-11-14 18:36:56 -05:00
Colin Kuebler 1f4e880838 Updated README procedure 2019-11-14 18:31:16 -05:00
Colin Kuebler 06ee18cf48 Added firmware specific instructions to firmware picker prompt 2019-11-14 18:17:20 -05:00
Colin Kuebler 4eec3fa605 Allow user to attempt recovery if device could not be reached 2019-11-14 18:10:41 -05:00
Colin Kuebler 59357a3809 Specify which build of third party firmware is included 2019-11-14 18:05:36 -05:00
Colin Kuebler 6fd636d031 Renamed bundled binaries so they are easily discernable in the firmware picker 2019-11-14 18:04:32 -05:00
Colin Kuebler 49d24a2f23 Integrated firmware_picker into start_flash procedure 2019-11-14 18:02:03 -05:00