-
-
Notifications
You must be signed in to change notification settings - Fork 205
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2119 from OnlineDynamic/accessibilityandsecurityd…
…ec24 Fix UI for scenario where fpp version unknown
- Loading branch information
Showing
4 changed files
with
55 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,53 @@ | ||
<?php | ||
|
||
function getFPPVersion() { return "Unknown"; } | ||
function getFPPBranch() { return "Unknown"; } | ||
function getFPPVersionFloat() { return 99.999; } | ||
function getFPPVersionFloatStr() { return "99.999"; } | ||
function getFPPMajorVersion() { return "99"; } | ||
function getFPPMinorVersion() { return "999"; } | ||
function getFPPPatchVersion() { return "Unknown"; } | ||
function getFPPVersionTriplet() { return "99.999"; } | ||
function getFPPVersion() | ||
{ | ||
return "Unknown"; | ||
} | ||
function getFPPBranch() | ||
{ | ||
return "Unknown"; | ||
} | ||
function getFPPVersionFloat() | ||
{ | ||
return 99.999; | ||
} | ||
function getFPPVersionFloatStr() | ||
{ | ||
return "99.999"; | ||
} | ||
function getFPPMajorVersion() | ||
{ | ||
return "99"; | ||
} | ||
function getFPPMinorVersion() | ||
{ | ||
return "999"; | ||
} | ||
function getFPPPatchVersion() | ||
{ | ||
return ""; | ||
} | ||
function getFPPVersionTriplet() | ||
{ | ||
return "99.999"; | ||
} | ||
|
||
function writeFPPVersionJavascriptFunctions() { | ||
?> | ||
function writeFPPVersionJavascriptFunctions() | ||
{ | ||
?> | ||
|
||
function getFPPVersion() { return "Unknown"; } | ||
function getFPPBranch() { return "Unknown"; } | ||
function getFPPVersionFloat() { return 99.999; } | ||
function getFPPVersionFloatStr() { return "99.999"; } | ||
function getFPPMajorVersion() { return "99"; } | ||
function getFPPMinorVersion() { return "999"; } | ||
function getFPPPatchVersion() { return "Unknown"; } | ||
function getFPPPatchVersion() { return ""; } | ||
function getFPPVersionTriplet() { return "99.999"; } | ||
?> | ||
?> | ||
|
||
</script> | ||
<? | ||
</script> | ||
<? | ||
} | ||
?> | ||
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters