File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
3
## Unreleased
4
+ - …
5
+
6
+ ## v0.1.1
4
7
- Add: message when user tries to enter fewer than minimum amount of points
5
8
6
9
## v0.1.0
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " firebot-gambling-script" ,
3
3
"description" : " A script to gamble currency." ,
4
- "version" : " 0.1.0 " ,
4
+ "version" : " 0.1.1 " ,
5
5
"license" : " EUPL-1.2" ,
6
6
"author" : " pirak" ,
7
7
"contributors" : [],
Original file line number Diff line number Diff line change @@ -11,6 +11,8 @@ import { GambleModePercentage } from './model/gamble-mode-percentage';
11
11
import { GambleEntry } from './model/gamble-entry' ;
12
12
import { ChatMessageEffect } from './helpers/effects/chat-message-effect' ;
13
13
14
+ const scriptVersion = '0.1.1' ;
15
+
14
16
export interface Params {
15
17
currencyId : string ;
16
18
userCurrentPoints : string ;
@@ -120,7 +122,7 @@ export class GamblingScript implements Firebot.CustomScript<Params> {
120
122
name : 'Firebot Gambling Script' ,
121
123
description : 'A script that lets chat users gamble currency' ,
122
124
author : 'pirak__' ,
123
- version : '0.1.0' ,
125
+ version : scriptVersion ,
124
126
firebotVersion : '5' ,
125
127
} ;
126
128
}
You can’t perform that action at this time.
0 commit comments