Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enhanced Task Management, Message Delay Control, International Code Prefix & Dependency Updates #minor #2

Merged
merged 3 commits into from
Apr 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,088 changes: 689 additions & 399 deletions package-lock.json

Large diffs are not rendered by default.

22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,29 +17,29 @@
"url": "git+https://github.com/marcosvrs/wtf.git"
},
"dependencies": {
"@wppconnect/wa-js": "^2.22.2",
"@wppconnect/wa-js": "^2.23.3",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/chrome": "^0.0.224",
"@types/jest": "^29.4.4",
"@types/react": "^18.0.28",
"@types/chrome": "^0.0.233",
"@types/jest": "^29.5.1",
"@types/react": "^18.0.38",
"@types/react-dom": "^18.0.11",
"autoprefixer": "^10.4.14",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"cssnano": "^5.1.15",
"cssnano": "^6.0.0",
"jest": "^29.5.0",
"postcss-loader": "^7.0.2",
"rimraf": "^4.4.0",
"postcss-loader": "^7.2.4",
"rimraf": "^5.0.0",
"speed-measure-webpack-plugin": "^1.5.0",
"style-loader": "^3.3.2",
"tailwindcss": "^3.2.7",
"ts-jest": "^29.0.5",
"tailwindcss": "^3.3.1",
"ts-jest": "^29.1.0",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"webpack-cli": "^5.0.1",
"typescript": "^5.0.4",
"webpack-cli": "^5.0.2",
"webpack-merge": "^5.8.0"
}
}
3 changes: 3 additions & 0 deletions public/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@
"run_at": "document_start"
}
],
"externally_connectable": {
"matches": ["https://web.whatsapp.com/*"]
},
"homepage_url": "https://github.com/marcosvrs/wtf",
"options_ui": {
"open_in_tab": false,
Expand Down
8 changes: 8 additions & 0 deletions public/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@
"title": "Message to be sent to the contact",
"type": "string"
},
"delay": {
"title": "Sets the delay between the messages sent",
"type": "integer"
},
"prefix": {
"title": "Prefix to be added to the contact number",
"type": "integer"
},
"attachment": {
"title": "Attachment to be sent to the contact",
"type": "object",
Expand Down
74 changes: 0 additions & 74 deletions src/components/LogTable.tsx

This file was deleted.

244 changes: 0 additions & 244 deletions src/components/MessageButtonsForm.tsx

This file was deleted.

Loading