Skip to content

Commit

Permalink
Added option for space in SSID and password
Browse files Browse the repository at this point in the history
  • Loading branch information
BorcheM committed Oct 19, 2019
1 parent 8841c00 commit 5052d80
Show file tree
Hide file tree
Showing 33 changed files with 57 additions and 57 deletions.
Binary file modified esp8266_deauther/data/web/LICENSE.gz
Binary file not shown.
Binary file modified esp8266_deauther/data/web/attack.html.gz
Binary file not shown.
Binary file modified esp8266_deauther/data/web/index.html.gz
Binary file not shown.
Binary file modified esp8266_deauther/data/web/info.html.gz
Binary file not shown.
Binary file modified esp8266_deauther/data/web/js/attack.js.gz
Binary file not shown.
Binary file modified esp8266_deauther/data/web/js/scan.js.gz
Binary file not shown.
Binary file modified esp8266_deauther/data/web/js/settings.js.gz
Binary file not shown.
Binary file modified esp8266_deauther/data/web/js/site.js.gz
Binary file not shown.
Binary file modified esp8266_deauther/data/web/js/ssids.js.gz
Binary file not shown.
Binary file modified esp8266_deauther/data/web/lang/cn.lang.gz
Binary file not shown.
Binary file modified esp8266_deauther/data/web/lang/cs.lang.gz
Binary file not shown.
Binary file modified esp8266_deauther/data/web/lang/de.lang.gz
Binary file not shown.
Binary file modified esp8266_deauther/data/web/lang/en.lang.gz
Binary file not shown.
Binary file modified esp8266_deauther/data/web/lang/es.lang.gz
Binary file not shown.
Binary file modified esp8266_deauther/data/web/lang/fi.lang.gz
Binary file not shown.
Binary file modified esp8266_deauther/data/web/lang/fr.lang.gz
Binary file not shown.
Binary file modified esp8266_deauther/data/web/lang/it.lang.gz
Binary file not shown.
Binary file modified esp8266_deauther/data/web/lang/ro.lang.gz
Binary file not shown.
Binary file modified esp8266_deauther/data/web/lang/ru.lang.gz
Binary file not shown.
Binary file modified esp8266_deauther/data/web/lang/tlh.lang.gz
Binary file not shown.
Binary file modified esp8266_deauther/data/web/scan.html.gz
Binary file not shown.
Binary file modified esp8266_deauther/data/web/settings.html.gz
Binary file not shown.
Binary file modified esp8266_deauther/data/web/ssids.html.gz
Binary file not shown.
Binary file modified esp8266_deauther/data/web/style.css.gz
Binary file not shown.
110 changes: 55 additions & 55 deletions esp8266_deauther/webfiles.h

Large diffs are not rendered by default.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion utils/web_converter/webConverter.py
Expand Up @@ -222,7 +222,7 @@
f.write("\n")
f.write("void copyWebFiles(bool force){\n")
f.write("#ifdef USE_PROGMEM_WEB_FILES\n")
f.write("if(settings.getWebSpiffs()){\n")
f.write("if(settings.getWebSettings().use_spiffs){\n")
f.write(copy_files_function)
f.write("}\n")
f.write("#endif\n")
Expand Down
2 changes: 1 addition & 1 deletion web_interface/js/settings.js
Expand Up @@ -23,7 +23,7 @@ function draw(){
}else if(typeof settingsJson[key] == "number"){
html += "<input type='number' name='"+key+"' value="+settingsJson[key]+" onchange='save(\""+key+"\",parseInt(this.value))'>";
}else if(typeof settingsJson[key] == "string"){
html += "<input type='text' name='"+key+"' value="+settingsJson[key]+" "+(key=="version"?"readonly":"")+" onchange='save(\""+key+"\",this.value)'>";
html += "<input type='text' name='"+key+"' value='"+settingsJson[key].toString()+"' "+(key=="version"?"readonly":"")+" onchange='save(\""+key+"\",this.value)'>";
}

html += "</div>"
Expand Down

0 comments on commit 5052d80

Please sign in to comment.