Skip to content

Commit

Permalink
Version 11: Fixed local overrides export (download) function that was…
Browse files Browse the repository at this point in the history
… broken in version 10.
  • Loading branch information
bp2008 committed May 9, 2018
1 parent 2ba425a commit ba6c584
Show file tree
Hide file tree
Showing 54 changed files with 5 additions and 3 deletions.
Binary file added sounds/airhorn.mp3
Binary file not shown.
Binary file added sounds/alarm-frenzy.mp3
Binary file not shown.
Binary file added sounds/alarm.mp3
Binary file not shown.
Binary file added sounds/alarming.mp3
Binary file not shown.
Binary file added sounds/alien-message.mp3
Binary file not shown.
Binary file added sounds/alien-tune.mp3
Binary file not shown.
Binary file added sounds/are-you-kidding.mp3
Binary file not shown.
Binary file added sounds/attention-required.mp3
Binary file not shown.
Binary file added sounds/blocker.mp3
Binary file not shown.
Binary file added sounds/decay.mp3
Binary file not shown.
Binary file added sounds/demonstrative.mp3
Binary file not shown.
Binary file added sounds/determined.mp3
Binary file not shown.
Binary file added sounds/doorbell.mp3
Binary file not shown.
Binary file added sounds/enough-with-the-talking.mp3
Binary file not shown.
Binary file added sounds/gentle-alarm.mp3
Binary file not shown.
Binary file added sounds/gesture.mp3
Binary file not shown.
Binary file added sounds/good-morning.mp3
Binary file not shown.
Binary file added sounds/goodbye.mp3
Binary file not shown.
Binary file added sounds/hail.mp3
Binary file not shown.
Binary file added sounds/hell-yeah.mp3
Binary file not shown.
Binary file added sounds/high-pitch.mp3
Binary file not shown.
Binary file added sounds/i-demand-attention.mp3
Binary file not shown.
Binary file added sounds/i-saw-you.mp3
Binary file not shown.
Binary file added sounds/job-done.mp3
Binary file not shown.
Binary file added sounds/just-like-magic.mp3
Binary file not shown.
Binary file added sounds/long-chime-sound.mp3
Binary file not shown.
Binary file added sounds/may-i-have-your-attention.mp3
Binary file not shown.
Binary file added sounds/munchausen.mp3
Binary file not shown.
Binary file added sounds/news-bringer.mp3
Binary file not shown.
Binary file added sounds/no-way.mp3
Binary file not shown.
Binary file added sounds/not-kiddin.mp3
Binary file not shown.
Binary file added sounds/oh-really.mp3
Binary file not shown.
Binary file added sounds/on-serious-matters.mp3
Binary file not shown.
Binary file added sounds/paranoid.mp3
Binary file not shown.
Binary file added sounds/pizzicato.mp3
Binary file not shown.
Binary file added sounds/police.mp3
Binary file not shown.
Binary file added sounds/pop.mp3
Binary file not shown.
Binary file added sounds/professionals.mp3
Binary file not shown.
Binary file added sounds/quiet-knock.mp3
Binary file not shown.
Binary file added sounds/robot-walking.mp3
Binary file not shown.
Binary file added sounds/served.mp3
Binary file not shown.
Binary file added sounds/sorted.mp3
Binary file not shown.
Binary file added sounds/springy.mp3
Binary file not shown.
Binary file added sounds/surprise-on-a-spring.mp3
Binary file not shown.
Binary file added sounds/system-fault.mp3
Binary file not shown.
Binary file added sounds/the-squeaky-wheel-gets-the-grease.mp3
Binary file not shown.
Binary file added sounds/this-is-it.mp3
Binary file not shown.
Binary file added sounds/warning.mp3
Binary file not shown.
Binary file added sounds/what.mp3
Binary file not shown.
Binary file added sounds/wiggle.mp3
Binary file not shown.
Binary file added sounds/will-you.mp3
Binary file not shown.
Binary file added sounds/you-wouldnt-believe.mp3
Binary file not shown.
2 changes: 1 addition & 1 deletion ui3.htm
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
};
</script>
<script type="text/javascript">
var ui_version = "10";
var ui_version = "11";
var bi_version = "%%VERSION%%";
var combined_version = ui_version + "-" + bi_version;
//if (!!navigator.userAgent.match(/ Android /))
Expand Down
6 changes: 4 additions & 2 deletions ui3/ui3.js
Original file line number Diff line number Diff line change
Expand Up @@ -7214,6 +7214,8 @@ function SessionManager()
}

ProcessSoundsArray();

BI_CustomEvent.Invoke("Login Success", response);
}
var ProcessSoundsArray = function ()
{
Expand Down Expand Up @@ -15969,7 +15971,7 @@ function UISettingsPanel()
for (var i = 0; i < defaultSettings.length; i++)
{
var s = defaultSettings[i];
if (s.category != category)
if (s.category != category || !s.key)
continue;
var value = settings[s.key];
if (typeof value == "string")
Expand All @@ -15990,7 +15992,7 @@ function UISettingsPanel()
if (s.category != category)
continue;
var key = s.key;
if (key == "bi_rememberMe" || key == "bi_username" || key == "bi_password")
if (!key || key === "bi_rememberMe" || key === "bi_username" || key === "bi_password")
continue; // Don't write these to the file!
var value = settings[key];
sb.Append('OverrideDefaultSetting(');
Expand Down

0 comments on commit ba6c584

Please sign in to comment.