5 Commits
0.3.0 ... 0.4.0

Author SHA1 Message Date
6df4546b81 update sample files 2023-10-31 20:29:06 +06:00
15bd013eaa Update libs.versions.toml 2023-09-30 07:28:37 +06:00
39b607c4e7 Update gradle.properties 2023-09-26 16:11:33 +06:00
98f3e2a461 Update libs.versions.toml 2023-09-26 16:11:06 +06:00
0d31d90efd Merge pull request #17 from InsanusMokrassar/0.3.0
0.3.0
2023-08-21 11:44:07 +06:00
4 changed files with 32 additions and 9 deletions

View File

@@ -10,4 +10,4 @@ android.enableJetifier=true
# Project data
group=dev.inmo
version=0.3.0
version=0.4.0

View File

@@ -3,12 +3,12 @@
kotlin = "1.8.22"
kotlin-serialization = "1.5.1"
plagubot = "7.1.0"
tgbotapi = "9.1.0"
plagubot = "7.2.1"
tgbotapi = "9.2.1"
microutils = "0.19.9"
kslog = "1.1.2"
krontab = "2.1.2"
plagubot-plugins = "0.14.0"
plagubot-plugins = "0.15.1"
dokka = "1.8.20"

View File

@@ -33,11 +33,11 @@
},
"ratingsPolls": {
"variants": {
"Круть": 2,
"Ок": 1,
"Не ок": -1,
"Совсем не ок": -2,
"Посмотреть результаты": 0
"Cool": 2,
"Ok": 1,
"Not ok": -1,
"Inappropriate": -2,
"Results": 0
},
"autoAttach": true,
"ratingOfferText": "What do you think about it?"

View File

@@ -0,0 +1,23 @@
version: "3.4"
services:
plaguposter_postgres:
image: postgres:15.4-bullseye
container_name: "plaguposter_postgres"
restart: "unless-stopped"
environment:
POSTGRES_USER: "test"
POSTGRES_PASSWORD: "test"
POSTGRES_DB: "test"
volumes:
- "./db/:/var/lib/postgresql/data"
ports:
- "127.0.0.1:8091:5432"
plaguposter:
image: insanusmokrassar/plaguposter:latest
container_name: "plaguposter"
restart: "unless-stopped"
volumes:
- "./config.json:/config.json"
depends_on:
- "plaguposter_postgres"