Releases: eigenein/bestmobabot
Releases · eigenein/bestmobabot
3.0b2
- First check if enemy user is
None
3.0b1
- Automatically level up and drop titan hero gift
- Task retries are now persisted
- Retry arena if estimated win probability is too low
- Use
orjson
- New scheduler
3.0b0
- Automatic tower
- Auto-enchant rune
heroes.js
interface
- Vendored game resources
2.4
- Fix critical error in
send_expeditions
- Set timeout on VK.com API
- Upgrade
numpy
- Fix
numpy
warning
- Upgrade
pandas
- Update
User-Agent
- Add
i_am_alive
recurring task
2.4b11
- fix: improve logging for
send_expeditions
- feat: set
PYTHONOPTIMIZE=2
for the Python interpreter
- Upgrade
loguru
2.4b10
- Send multiple expeditions at once
2.4b9
- Fix storing arena enemies in the database
2.4b7
- Change
Database
interface. The model must be re-trained after deployment
- Store heroes of arena enemies in the database
2.4b6
- Merge
index
and key
columns in the database. Manual upgrade script:
CREATE TABLE `new` (
`key` TEXT PRIMARY KEY NOT NULL,
value TEXT,
modified_on DATETIME DEFAULT CURRENT_TIMESTAMP
);
INSERT INTO `new` (`key`, value, modified_on) SELECT `index` || ':' || `key`, value, modified_on FROM `default`;
DROP TABLE IF EXISTS `backup`;
ALTER TABLE `default` RENAME TO `backup`;
ALTER TABLE `new` RENAME TO `default`;