Skip to content

Commit

Permalink
v1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
TheBronx committed Aug 24, 2015
1 parent f54ed60 commit ee9a2b3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions library.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"use strict";

var plugin = {'version': '1.0.0'},
var plugin = {'settingsVersion': '1.0.0'},
db = module.parent.require('./database'),
winston = require('winston'),
users = module.parent.require('./user'),
Expand Down Expand Up @@ -262,7 +262,7 @@ plugin.onLoad = function (params, callback) {
};

var defaultSettings = Config.getSettings();
pluginSettings = new Settings('reputation-rules', plugin.version, defaultSettings, function() {
pluginSettings = new Settings('reputation-rules', plugin.settingsVersion, defaultSettings, function() {
winston.info("[reputation-rules] settings loaded");
Config.setSettings(pluginSettings.get());
callback();
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nodebb-plugin-reputation-rules",
"version": "1.0.0",
"version": "1.0.1",
"description": "Reputation rules to prevent abuse and make it more reliable",
"main": "library.js",
"repository": {
Expand Down

0 comments on commit ee9a2b3

Please sign in to comment.