Skip to content

Commit

Permalink
build v3.0.0-beta1b
Browse files Browse the repository at this point in the history
  • Loading branch information
sualko committed Jan 29, 2016
1 parent 6c50da5 commit 142e5f7
Show file tree
Hide file tree
Showing 34 changed files with 1,027 additions and 482 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ node_modules/
*.zip.sig
.settings/
archives/
css/
/css/

composer.phar
/vendor/
Expand Down
6 changes: 3 additions & 3 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ module.exports = function(grunt) {
build: {
files: [ {
expand: true,
src: [ 'js/*.js', 'css/*', 'appinfo/*', 'ajax/*', 'img/**', 'templates/*', 'sound/*', 'vendor/**', 'settings.php', 'LICENSE' ],
src: [ 'js/*.js', 'css/*', 'appinfo/*', 'ajax/*', 'img/**', 'templates/*', 'sound/*', 'vendor/**', 'lib/**', 'settings.php', 'LICENSE' ],
dest: 'build/'
}, {
expand: true,
Expand Down Expand Up @@ -55,15 +55,15 @@ module.exports = function(grunt) {
src: [ 'build/appinfo/info.xml', 'appinfo/info.xml' ],
overwrite: true,
replacements: [ {
from: /<version>[\d.]+<\/version>/,
from: /<version>[^<]+<\/version>/,
to: "<version><%= app.version %></version>"
} ]
},
version: {
src: [ 'build/appinfo/version', 'appinfo/version' ],
overwrite: true,
replacements: [ {
from: /[\d.]+/,
from: /.+/,
to: "<%= app.version %>"
} ]
},
Expand Down
2 changes: 0 additions & 2 deletions appinfo/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@
OCP\Util::addScript('ojsxc', 'ojsxc');

// ############# CSS #############
OCP\Util::addStyle ( 'ojsxc', 'jquery.mCustomScrollbar' );
OCP\Util::addStyle ( 'ojsxc', 'jquery.colorbox' );
OCP\Util::addStyle ( 'ojsxc', 'jsxc.oc' );

$version = OCP\Util::getVersion();
Expand Down
2 changes: 1 addition & 1 deletion appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<id>ojsxc</id>
<name>JavaScript XMPP Chat</name>
<description>XMPP Chat with OTR</description>
<version>3.0.0-beta1</version>
<version>3.0.0-beta1b</version>
<licence>MIT</licence>
<author>Klaus Herberth</author>
<require>5</require>
Expand Down
2 changes: 1 addition & 1 deletion appinfo/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.0.0-beta1
3.0.0-beta1b
2 changes: 0 additions & 2 deletions build/appinfo/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@
OCP\Util::addScript('ojsxc', 'ojsxc');

// ############# CSS #############
OCP\Util::addStyle ( 'ojsxc', 'jquery.mCustomScrollbar' );
OCP\Util::addStyle ( 'ojsxc', 'jquery.colorbox' );
OCP\Util::addStyle ( 'ojsxc', 'jsxc.oc' );

$version = OCP\Util::getVersion();
Expand Down
2 changes: 1 addition & 1 deletion build/appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<id>ojsxc</id>
<name>JavaScript XMPP Chat</name>
<description>XMPP Chat with OTR</description>
<version>3.0.0-beta1</version>
<version>3.0.0-beta1b</version>
<licence>MIT</licence>
<author>Klaus Herberth</author>
<require>5</require>
Expand Down
2 changes: 1 addition & 1 deletion build/appinfo/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.0.0-beta1
3.0.0-beta1b
189 changes: 0 additions & 189 deletions build/css/jquery.colorbox.css

This file was deleted.

Loading

0 comments on commit 142e5f7

Please sign in to comment.