Skip to content

Commit

Permalink
build v3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sualko committed Mar 15, 2016
1 parent 6edb032 commit ed8438f
Show file tree
Hide file tree
Showing 1,773 changed files with 43,415 additions and 20,662 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
v3.0.0 / 2016-03-15
===
- upgrade jsxc to v3.0.0
- add show roster button

v2.1.0 / 2015-07-31
===
- upgrade jsxc to v2.1.0
Expand Down
14 changes: 12 additions & 2 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,16 @@ module.exports = function(grunt) {
from: "$Id$",
to: "<%= app.version %>"
} ]
},
imageUrl: {
src: ['css/*.css'],
overwrite: true,
replacements: [
{
from: /image-url\(["'](.+)["']\)/g,
to: 'url(\'../js/jsxc/img/$1\')'
}
]
}
},
search: {
Expand Down Expand Up @@ -130,7 +140,7 @@ module.exports = function(grunt) {
watch: {
css: {
files: ['js/jsxc/scss/*', 'scss/*'],
tasks: ['sass', 'autoprefixer']
tasks: ['sass', 'replace:imageUrl', 'autoprefixer']
}
}
});
Expand All @@ -151,7 +161,7 @@ module.exports = function(grunt) {
// Default task.
grunt.registerTask('default', [ 'build', 'watch' ]);

grunt.registerTask('build', ['jshint', 'clean:css', 'copy:css', 'sass', 'autoprefixer']);
grunt.registerTask('build', ['jshint', 'clean:css', 'copy:css', 'sass', 'replace:imageUrl', 'autoprefixer']);

grunt.registerTask('build:prerelease', ['search:console', 'clean:build', 'build', 'copy:build', 'dataUri', 'usebanner', 'replace', 'compress']);

Expand Down
2 changes: 1 addition & 1 deletion build/classes/class.ilijsxcPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* Example user interface plugin
*
* @author Klaus Herberth <[email protected]>
* @version 2.1.0
* @version 3.0.0
*
*/
class ilijsxcPlugin extends ilUserInterfaceHookPlugin
Expand Down
2 changes: 1 addition & 1 deletion build/classes/class.ilijsxcUIHookGUI.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* User interface hook class
*
* @author Klaus Herberth <[email protected]>
* @version 2.1.0
* @version 3.0.0
* @ingroup ServicesUIComponent
*/
class ilijsxcUIHookGUI extends ilUIHookPluginGUI
Expand Down
189 changes: 0 additions & 189 deletions build/css/jquery.colorbox.css

This file was deleted.

Loading

0 comments on commit ed8438f

Please sign in to comment.