GUAC-1392: Update "guacamoleVersion" of all guac-manifest.json to "0.9.9". Update ExtensionModule to accept only "0.9.9" (or "*").

This commit is contained in:
Michael Jumper
2015-12-15 13:00:59 -08:00
parent 6a77c39c68
commit bef2139822
5 changed files with 5 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
{
"guacamoleVersion" : "0.9.8",
"guacamoleVersion" : "0.9.9",
"name" : "MySQL Authentication",
"namespace" : "guac-mysql",

View File

@@ -1,6 +1,6 @@
{
"guacamoleVersion" : "0.9.8",
"guacamoleVersion" : "0.9.9",
"name" : "PostgreSQL Authentication",
"namespace" : "guac-postgresql",

View File

@@ -1,6 +1,6 @@
{
"guacamoleVersion" : "0.9.8",
"guacamoleVersion" : "0.9.9",
"name" : "LDAP Authentication",
"namespace" : "guac-ldap",

View File

@@ -1,6 +1,6 @@
{
"guacamoleVersion" : "0.9.8",
"guacamoleVersion" : "0.9.9",
"name" : "Disabled Authentication",
"namespace" : "guac-noauth",

View File

@@ -65,7 +65,7 @@ public class ExtensionModule extends ServletModule {
private static final List<String> ALLOWED_GUACAMOLE_VERSIONS =
Collections.unmodifiableList(Arrays.asList(
"*",
"0.9.8"
"0.9.9"
));
/**