Compare commits

...

7 Commits

5 changed files with 16 additions and 16 deletions

1
.gitignore vendored
View File

@ -1,5 +1,6 @@
# Do not index node.js modules that are used for building
node_modules
package-lock.json
# Do not index bower components
vendor

View File

@ -86,7 +86,7 @@ class Plugin extends \Mibew\Plugin\AbstractPlugin implements \Mibew\Plugin\Plugi
public function attachJSFiles(&$args)
{
if ($this->isAppropriatePage($args['request'])) {
$base_path = $this->getFilesPath();
$base_path = str_replace(DIRECTORY_SEPARATOR, '/', $this->getFilesPath());
$args['js'][] = $base_path . '/vendor/es5-shim/es5-shim.js';
$args['js'][] = $base_path . '/vendor/emojify.js/emojify.js';
$args['js'][] = $base_path . '/js/plugin.js';
@ -101,7 +101,7 @@ class Plugin extends \Mibew\Plugin\AbstractPlugin implements \Mibew\Plugin\Plugi
public function attachCssFiles(&$args)
{
if ($this->isAppropriatePage($args['request'])) {
$args['css'][] = $this->getFilesPath() . '/css/styles.css';
$args['css'][] = str_replace(DIRECTORY_SEPARATOR, '/', $this->getFilesPath()) . '/css/styles.css';
}
}
@ -116,7 +116,8 @@ class Plugin extends \Mibew\Plugin\AbstractPlugin implements \Mibew\Plugin\Plugi
if ($this->isAppropriatePage($request)) {
$args['plugins']['MibewEmoji'] = array(
'imagesDir' => ($request->getBasePath() . '/' . $this->getFilesPath()
'imagesDir' => ($request->getBasePath() . '/'
. str_replace(DIRECTORY_SEPARATOR, '/', $this->getFilesPath())
. '/vendor/emojify.js/images/emoji'),
'ignoreEmoticons' => $this->config['ignore_emoticons'],
);
@ -130,7 +131,7 @@ class Plugin extends \Mibew\Plugin\AbstractPlugin implements \Mibew\Plugin\Plugi
*/
public static function getVersion()
{
return '1.0.0';
return '1.0.1';
}
/**

View File

@ -7,7 +7,7 @@ Emoticons like :-) and ;D are also supported.
## Installation
1. Get the archive with the plugin sources. At the moment the only option is to build the plugin from sources.
1. Get the archive with the plugin sources. You can download it from the [official site](https://mibew.org/plugins#mibew-emoji) or build the plugin from sources.
2. Untar/unzip the plugin's archive.

View File

@ -18,7 +18,7 @@ gulp.task('bower', function(callback) {
});
});
gulp.task('prepare-release', ['bower'], function() {
gulp.task('prepare-release', gulp.series('bower', function() {
var version = require('./package.json').version;
return eventStream.merge(
@ -30,12 +30,10 @@ gulp.task('prepare-release', ['bower'], function() {
)
.pipe(chmod(0644))
.pipe(gulp.dest('release'));
});
}));
// Builds and packs plugins sources
gulp.task('default', ['prepare-release'], function() {
// The "default" task is just an alias for "prepare-release" task.
});
gulp.task('default', gulp.series('prepare-release'));
/**
* Returns files stream with the plugin sources.

View File

@ -1,13 +1,13 @@
{
"version": "1.0.0",
"version": "1.0.1",
"devDependencies": {
"bower": "~1.3.12",
"gulp": "~3.8.10",
"bower": "~1.8.8",
"gulp": "~4.0.0",
"event-stream": "~3.1.7",
"gulp-zip": "~2.0.2",
"gulp-tar": "~1.3.1",
"gulp-tar": "~3.1.0",
"gulp-gzip": "~0.0.8",
"gulp-chmod": "~1.2.0",
"gulp-chmod": "~3.0.0",
"gulp-rename": "~1.2.0"
}
}
}