Change logs
Note: Since the latest WhatsApp update by WhatsApp, button, list and message messages are temporarily only supported on IOS devices and WhatsApp web.
* This update is a continuation update from version 6.0.0 as of March 7 2024, if you want to upgrade from version 6.0.0
Log Update:
+ Additions:
- Connect device menggunakai pairing code
- Api disconnect device
+- Update & fix
- Campaign updates, you can create multiple campaigns without waiting for existing campaigns to be successful
- Changes to rotate and blast queue in the campaign
- Fix emoji
- License validation changes (for regular users)
- and fix other small bug
Additional external:
- Fix sejoli & woocommerce plugin
- Menambah plugin wordpress : elementor,contact form 7,2FA authentication
To update, to make it simpler, please replace the following folder, but before replacing, first deactivate the js node...
- app/Http (folder)
- resources/views (folder)
- routes/web.php (file)
- server/ (folder)
- config/database.php (file)
- database/migrations/* (folder)
- server.js (file)
- package.json (file)
- composer.json (file)
and run the following two sql to change some columns to utf8mb4
SQL:
-- Convert 'autoreplies' table
ALTER TABLE autoreplies
CONVERT TO CHARACTER SET utf8mb4
COLLATE utf8mb4_unicode_ci;
-- Convert 'blasts' table
ALTER TABLE blasts
CONVERT TO CHARACTER SET utf8mb4
COLLATE utf8mb4_unicode_ci;
-- Convert 'campaigns' table
ALTER TABLE campaigns
CONVERT TO CHARACTER SET utf8mb4
COLLATE utf8mb4_unicode_ci;
-- Convert 'contacts' table
ALTER TABLE contacts
CONVERT TO CHARACTER SET utf8mb4
COLLATE utf8mb4_unicode_ci;
-- Convert 'devices' table
ALTER TABLE devices
CONVERT TO CHARACTER SET utf8mb4
COLLATE utf8mb4_unicode_ci;
-- Convert 'message_histories' table
ALTER TABLE message_histories
CONVERT TO CHARACTER SET utf8mb4
COLLATE utf8mb4_unicode_ci;
-- Convert 'migrations' table
ALTER TABLE migrations
CONVERT TO CHARACTER SET utf8mb4
COLLATE utf8mb4_unicode_ci;
-- Convert 'tags' table
ALTER TABLE tags
CONVERT TO CHARACTER SET utf8mb4
COLLATE utf8mb4_unicode_ci;
-- Convert 'users' table
ALTER TABLE users
CONVERT TO CHARACTER SET utf8mb4
COLLATE utf8mb4_unicode_ci;