Merge branch 'master' into v3

This commit is contained in:
Nicolas Stepien 2013-04-01 20:15:20 +02:00
commit 4318413a92
2 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,9 @@
master
2.39.2
- Mayhem
Fix importing settings containing unicode characters.
2.39.1
- Mayhem
Add /gd/, /out/, /vp/ and /vr/ archive redirection.

View File

@ -402,7 +402,7 @@ Settings =
reader = new FileReader()
reader.onload = (e) ->
try
data = JSON.parse decodeURIComponent escape e.target.result
data = JSON.parse e.target.result
Settings.loadSettings data
if confirm 'Import successful. Refresh now?'
window.location.reload()