Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
Revision history for guacamole-auth-pam

1.5 2020-04-15 12:44:12 CET

- Update for Guacamole 1.1.0.

1.4 2019-02-01 18:48:11 CET

- Update for Guacamole 1.0.0.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ Building the extension requires Apache Maven.

## LICENSE AND COPYRIGHT

Copyright 2017-2019 Andreas Vögele
Copyright 2017-2020 Andreas Vögele

This extension is free software; you can redistribute and modify it under the
terms of the Apache 2.0 license.
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<groupId>com.andreasvoegele</groupId>
<artifactId>guacamole-auth-pam</artifactId>
<packaging>jar</packaging>
<version>1.0.0</version>
<version>1.1.0</version>
<name>guacamole-auth-pam</name>
<url>https://github.com/voegelas/guacamole-auth-pam</url>

Expand Down Expand Up @@ -99,7 +99,7 @@
<dependency>
<groupId>org.apache.guacamole</groupId>
<artifactId>guacamole-ext</artifactId>
<version>1.0.0</version>
<version>1.1.0</version>
<scope>provided</scope>
</dependency>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* PAM authentication provider for Guacamole
*
* Copyright 2017-2019 Andreas Voegele
* Copyright 2017-2020 Andreas Voegele
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* XML parser for unix-user-mapping.xml
*
* Copyright 2017-2019 Andreas Voegele
* Copyright 2017-2020 Andreas Voegele
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/guac-manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{

"guacamoleVersion" : "1.0.0",
"guacamoleVersion" : "1.1.0",

"name" : "PAM Authentication Extension",
"namespace" : "guac-pam",
Expand Down