Skip to content

BNoteBot v1.4

Latest
Compare
Choose a tag to compare
@francescotarantino francescotarantino released this 25 Jul 20:22
· 4 commits to master since this release

⚠️ After this release, it should be executed

ALTER TABLE 'BNoteBot_user' DROP 'notes';
ALTER TABLE 'BNoteBot_user' ADD 'justwritemode' BOOLEAN NOT NULL DEFAULT TRUE;
CREATE TABLE IF NOT EXISTS `BNoteBot_sentinline` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `memo_id` int(11) NOT NULL,
  `msg_id` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 ;
ALTER TABLE `BNoteBot_memo` DROP COLUMN `memo`;
ALTER TABLE `BNoteBot_memo` ADD
  `memo` text,
   `file_id` text,
   `duration` int(11) NOT NULL DEFAULT '0',
   `timestamp` int(11) NOT NULL;
UPDATE * FROM BNoteBot_user SET type = 'text';

⚠️ After this release, it's necessary to enable /setinlinefeedback using BotFather.

Changelog

  • Just write mode
  • Added German language
  • Auto-update memos sent inline
  • Added support for Voice notes
  • Bug fixes