Skip to content

Commit

Permalink
fix #64
Browse files Browse the repository at this point in the history
new version 0.9.13
  • Loading branch information
deleolajide committed Jul 13, 2020
1 parent 4dfe7c6 commit 1b9be90
Show file tree
Hide file tree
Showing 12 changed files with 36 additions and 21 deletions.
6 changes: 3 additions & 3 deletions build.cmd
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
call mvn clean package

copy ofmeet\target\ofmeet.jar C:\openfire_4_6_0\plugins\ofmeet.jar
copy offocus\target\offocus.jar C:\openfire_4_6_0\plugins\offocus.jar
copy pade\target\pade.jar C:\openfire_4_6_0\plugins\pade.jar
copy ofmeet\target\ofmeet.jar C:\openfire_4_5_1\plugins\ofmeet.jar
copy offocus\target\offocus.jar C:\openfire_4_5_1\plugins\offocus.jar
copy pade\target\pade.jar C:\openfire_4_5_1\plugins\pade.jar

pause
2 changes: 1 addition & 1 deletion config/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.igniterealtime.openfire.ofmeet</groupId>
<artifactId>parent</artifactId>
<version>0.9.12-SNAPSHOT</version>
<version>0.9.13-SNAPSHOT</version>
</parent>

<artifactId>config</artifactId>
Expand Down
19 changes: 17 additions & 2 deletions offocus/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.igniterealtime.openfire.ofmeet</groupId>
<artifactId>parent</artifactId>
<version>0.9.12-SNAPSHOT</version>
<version>0.9.13-SNAPSHOT</version>
</parent>

<artifactId>offocus</artifactId>
Expand All @@ -40,7 +40,7 @@
<dependency>
<groupId>org.igniterealtime.openfire.plugins</groupId>
<artifactId>openfire-plugin-assembly-descriptor</artifactId>
<version>${openfire.version}</version>
<version>4.2.0</version>
</dependency>
</dependencies>
<executions>
Expand Down Expand Up @@ -71,6 +71,21 @@
<version>3.0.0</version>
<extensions>true</extensions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<dependencies>
<dependency>
<groupId>org.igniterealtime.openfire.plugins</groupId>
<artifactId>openfire-plugin-assembly-descriptor</artifactId>
<version>${openfire.version}</version>
</dependency>
</dependencies>
<configuration>
<source>8</source>
<target>8</target>
</configuration>
</plugin>
</plugins>
</build>

Expand Down
2 changes: 1 addition & 1 deletion ofgasi/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<groupId>org.igniterealtime.openfire.ofmeet</groupId>
<artifactId>parent</artifactId>
<version>0.9.12-SNAPSHOT</version>
<version>0.9.13-SNAPSHOT</version>
</parent>

<artifactId>ofgasi</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions ofmeet/changelog.html
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,12 @@ <h1>
Pade VideoBridge Plugin Changelog
</h1>

<p><b>0.9.13</b> -- <i>July ??, 2020</i></p>
<p><b>0.9.13</b> -- <i>July 13, 2020</i></p>

<ul>
<li>Upgraded to latest Jitsi code build(4265)</li>
<li>Added party present confetti icon as example of how to use sendCommand</li>
<li>Added whiteboard (https://wbo.ophir.dev/) as another collaboration app using sendCommand</li>
<li>Fixed <a href="https://github.com/igniterealtime/openfire-pade-plugin/issues/64">Issue #64 - Feature: Lobby</li>
<li>Fixed <a href="https://github.com/igniterealtime/openfire-pade-plugin/issues/58">Issue #58 - Workaround: Prevent disruption of long-muted audio channel</a></li>
</ul>

Expand Down
2 changes: 1 addition & 1 deletion ofmeet/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<parent>
<groupId>org.igniterealtime.openfire.ofmeet</groupId>
<artifactId>parent</artifactId>
<version>0.9.12-SNAPSHOT</version>
<version>0.9.13-SNAPSHOT</version>
</parent>

<artifactId>ofmeet</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pade/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.igniterealtime.openfire.ofmeet</groupId>
<artifactId>parent</artifactId>
<version>0.9.12-SNAPSHOT</version>
<version>0.9.13-SNAPSHOT</version>
</parent>

<artifactId>pade</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pade/src/java/nl/martijndwars/webpush/Utils.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class Utils {
* @return
*/
public static byte[] savePublicKey(ECPublicKey publicKey) {
return publicKey.getQ().getEncoded();
return publicKey.getQ().getEncoded(true);
}

public static byte[] savePrivateKey(ECPrivateKey privateKey) {
Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

<groupId>org.igniterealtime.openfire.ofmeet</groupId>
<artifactId>parent</artifactId>
<version>0.9.12-SNAPSHOT</version>
<version>0.9.13-SNAPSHOT</version>
<packaging>pom</packaging>

<organization>
Expand All @@ -30,7 +30,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<openfire.version>4.5.1</openfire.version>
<videobridge.version>1.1-20200124.173127-125</videobridge.version>
<jicofo.version>1.1-20200630.220013-177</jicofo.version>
<jicofo.version>1.1-20200529.210421-162</jicofo.version>
<jigasi.version>1.1-20190806.132856-49</jigasi.version>
<jicoco.version>1.1-20190509.130302-15</jicoco.version>
<pade.url>https://igniterealtime.github.io/pade</pade.url>
Expand All @@ -41,9 +41,9 @@
<module>config</module>
<module>videobridge</module>
<module>ofmeet</module>
<!--module>offocus</module>
<module>offocus</module>
<module>ofgasi</module>
<module>pade</module-->
<module>pade</module>
</modules>

<licenses>
Expand Down
6 changes: 3 additions & 3 deletions rebuild.cmd
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
call mvn package

copy ofmeet\target\ofmeet.jar C:\openfire_4_6_0\plugins\ofmeet.jar
copy offocus\target\offocus.jar C:\openfire_4_6_0\plugins\offocus.jar
copy pade\target\pade.jar C:\openfire_4_6_0\plugins\pade.jar
copy ofmeet\target\ofmeet.jar C:\openfire_4_5_1\plugins\ofmeet.jar
copy offocus\target\offocus.jar C:\openfire_4_5_1\plugins\offocus.jar
copy pade\target\pade.jar C:\openfire_4_5_1\plugins\pade.jar

pause
2 changes: 1 addition & 1 deletion videobridge/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<groupId>org.igniterealtime.openfire.ofmeet</groupId>
<artifactId>parent</artifactId>
<version>0.9.12-SNAPSHOT</version>
<version>0.9.13-SNAPSHOT</version>
</parent>

<artifactId>videobridge</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion web/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.igniterealtime.openfire.ofmeet</groupId>
<artifactId>parent</artifactId>
<version>0.9.12-SNAPSHOT</version>
<version>0.9.13-SNAPSHOT</version>
</parent>

<artifactId>web</artifactId>
Expand Down

0 comments on commit 1b9be90

Please sign in to comment.