1212
1313### Rule #1
1414** Upvoting** In order to upvote, the user must have
15- - ` {MIN_POSTS_TO_UPVOTE} ` posts or more
16- - at least ` {MIN_DAYS_TO_UPVOTE} ` days since registration
15+ - ` {MIN_POSTS_TO_UPVOTE} ` posts or more
16+ - at least ` {MIN_DAYS_TO_UPVOTE} ` days since registration
1717
1818### Rule #2
1919** Downvoting** In order to downvote, the user must have
20- - ` {MIN_POSTS_TO_DOWNVOTE} ` posts or more
21- - at least ` {MIN_DAYS_TO_DOWNVOTE} ` since registration
22- - ` {MIN_REPUTATION_TO_DOWNVOTE} ` reputation or more
20+ - ` {MIN_POSTS_TO_DOWNVOTE} ` posts or more
21+ - at least ` {MIN_DAYS_TO_DOWNVOTE} ` since registration
22+ - ` {MIN_REPUTATION_TO_DOWNVOTE} ` reputation or more
2323
2424### Rule #3
2525Downvoting costs ` {DOWNVOTE_PENALIZATION} ` reputation (user who votes loses some reputation)
@@ -41,15 +41,15 @@ A user cannot vote more than 5 messages in the same thread
4141
4242### Rule #8
4343Upvotes give extra reputation depending on the user who is voting:
44- - extra reputation = ` floor(votersReputation * 5%) ` (you can change this percentage in the ACP)
44+ - extra reputation = ` floor(votersReputation * 5%) ` (you can change this percentage in the ACP)
4545
4646Downvotes decrease extra reputation depending on the user who is voting:
47- - extra reputation = ` floor(votersReputation * 5%) ` (you can change this percentage in the ACP)
47+ - extra reputation = ` floor(votersReputation * 5%) ` (you can change this percentage in the ACP)
4848
4949### Rule #9
5050Undoing votes:
51- - undoing an upvote should remove extra reputation awarded when upvote was given (extra rep should not be recalculated)
52- - undoing a downvote should remove penalization to voter and give the extra reputation the author lost when he got the downvote
51+ - undoing an upvote should remove extra reputation awarded when upvote was given (extra rep should not be recalculated)
52+ - undoing a downvote should remove penalization to voter and give the extra reputation the author lost when he got the downvote
5353
5454### Rule #10
5555Upvotes and downvotes should have a maximum weight, configurable. So that rule ** #8 ** doesn't make vote points tend to infinity.
@@ -63,18 +63,18 @@ You can configure what "too old" means for you, for example 30 days, 90 days, or
6363
6464v1.2.2
6565
66- - Big refactor mainly to use async/await instead of callbacks
66+ - Big refactor mainly to use async/await instead of callbacks
6767
6868v1.2.1
6969
70- - Fix typos on "weigh"
71- - Add a section for Rule 4 on the settings panel. It is not configurable but it is a rule that is being applied
72- - Added explanations for most of the settings so they are easier to understand
70+ - Fix typos on "weigh"
71+ - Add a section for Rule 4 on the settings panel. It is not configurable but it is a rule that is being applied
72+ - Added explanations for most of the settings so they are easier to understand
7373
7474v1.2.0
7575
76- - Updated compatibility to 1.18.2
77- - Removed the "Reload" button in the ACP as this is no longer needed
78- - Added debug logs to track down any errors
79- - Fix: vote max weight was being used as a min, instead of a max
76+ - Updated compatibility to 1.18.2
77+ - Removed the "Reload" button in the ACP as this is no longer needed
78+ - Added debug logs to track down any errors
79+ - Fix: vote max weight was being used as a min, instead of a max
8080
0 commit comments