Skip to content

Commit

Permalink
- upgrade version numbers
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.bigbluebutton.org/project-bbb/trunk@79 6ac8b576-4aa1-4e98-a958-8badfeb98c9d
  • Loading branch information
ritzalam committed Mar 5, 2010
1 parent b7515fa commit b024b4e
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion deskshare/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ usePlugin 'scala'
usePlugin 'java'
usePlugin 'war'

version = '0.62'
version = '0.64'

jar.enabled = true

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class BlockManager(room: String, screenDim: Dimension, blockDim: Dimension) exte
for (i: Int <- 0 until blankPixels.length) {
blankPixels(i) = 0xFFFF;
}
val encodedPixels = ScreenVideoEncoder.encodePixels(blankPixels, dim.width, dim.height, false, true)
val encodedPixels = ScreenVideoEncoder.encodePixels(blankPixels, dim.width, dim.height)
block.update(encodedPixels, true)
blocksMap.put(position, block)
}
Expand Down
3 changes: 2 additions & 1 deletion deskshare/applet/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
ant.importBuild 'build.xml'

version = '0.64'
archivesBaseName = 'bbb-deskshare-applet'

dependencies {
Expand All @@ -21,6 +22,6 @@ jar.doFirst {
* do not want to sign and manage 2 jar files.
**/'''

jar.merge('../common/build/libs/bbb-deskshare-common-0.62.jar')
jar.merge('../common/build/libs/bbb-deskshare-common-0.64.jar')
}

4 changes: 2 additions & 2 deletions deskshare/applet/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
</target>
<target name="signJar" depends="getPassword">
<signjar jar="build/libs/bbb-deskshare-applet-0.62.jar"
<signjar jar="build/libs/bbb-deskshare-applet-0.64.jar"
alias="${keystore.alias}"
keystore="${keystore}"
storepass="${keystore.password}" />
Expand Down Expand Up @@ -64,7 +64,7 @@
</target>

<target name="sign-jar" depends="get-password">
<signjar jar="build/libs/bbb-deskshare-applet-0.62.jar"
<signjar jar="build/libs/bbb-deskshare-applet-0.64.jar"
alias="${keystore.alias}"
keystore="${keystore}"
storepass="${keystore.password}" />
Expand Down
3 changes: 2 additions & 1 deletion deskshare/common/build.gradle
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@

usePlugin 'java'
version = '0.64'
archivesBaseName = 'bbb-deskshare-common'

0 comments on commit b024b4e

Please sign in to comment.