Whatsapp Web & Lite fixed

This commit is contained in:
raweee 2023-09-30 19:16:41 +05:30
parent 0a272da620
commit d5d7d0e9fb
4 changed files with 694 additions and 91 deletions

View File

@ -163,7 +163,7 @@ Issues and Suggestions are welcome [here.](https://github.com/raweee/node-red-co
* `Ver-0.1.34` : Multiple Events reading options are added in Chats-In Node. * `Ver-0.1.34` : Multiple Events reading options are added in Chats-In Node.
* `Ver-0.1.36` : Check box added to show status as `Online/Offline` in Whatsapp-Link Node, to get push notifications. Ping-Interval added to keep whatsapp alive for long time. Multiple examples added. * `Ver-0.1.36` : Check box added to show status as `Online/Offline` in Whatsapp-Link Node, to get push notifications. Ping-Interval added to keep whatsapp alive for long time. Multiple examples added.
* `Ver-0.1.37` : Changes for correction of send message with images and use Chromium profiles in Puppeteer. * `Ver-0.1.37` : Changes for correction of send message with images and use Chromium profiles in Puppeteer.
* `Ver-0.1.39` : "Broken Whatsapp-Lite" fixed. working on easy to use nodes. * `Ver-0.1.39A` : Broken "Whatsapp-Web & Lite" fixed. Able to recive and send text. working on easy to use nodes.
## Future Nodes ## Future Nodes
Currently working on more Whatsapp Node and will be avilable soon - Currently working on more Whatsapp Node and will be avilable soon -

778
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{ {
"name": "node-red-contrib-whatsapp-link", "name": "node-red-contrib-whatsapp-link",
"version": "0.1.39", "version": "0.1.39A",
"description": "Node to send and receive whatsapp messages in groups and chats. | No third party APIs", "description": "Node to send and receive whatsapp messages in groups and chats. | No third party APIs",
"repository": { "repository": {
"type": "git", "type": "git",
@ -33,7 +33,7 @@
"@whiskeysockets/baileys": "latest", "@whiskeysockets/baileys": "latest",
"pino": "latest", "pino": "latest",
"qrcode": "^1.5.1", "qrcode": "^1.5.1",
"whatsapp-web.js": "^1.16.4-alpha.0" "whatsapp-web.js": "~1.22.2-alpha.1"
}, },
"engines": { "engines": {
"node": ">=8.0.0" "node": ">=8.0.0"

View File

@ -101,7 +101,6 @@ module.exports = function(RED) {
}); });
client.on(`ready`, ()=>{ client.on(`ready`, ()=>{
console.log("connected")
WAnode.log(`Status : Whatsapp Connected`); WAnode.log(`Status : Whatsapp Connected`);
pressenceUpdate(onlineStatus); pressenceUpdate(onlineStatus);
}); });