Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Prince-Mendiratta/BotsApp
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: multi-device
Choose a base ref
...
head repository: sureshfizzy/Athena
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: athena
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
Loading
Showing with 33,302 additions and 5,290 deletions.
  1. +1 −0 .dockerignore
  2. +4 −2 .gitignore
  3. +17,749 −0 .pnp.cjs
  4. +2,042 −0 .pnp.loader.mjs
  5. +1 −1 .vscode/launch.json
  6. +14 −14 BotsApp.js → Athena.js
  7. +41 −32 BotsApp.ts → Athena.ts
  8. +1 −1 Dockerfile
  9. +34 −45 README.md
  10. +5 −6 app.json
  11. +19 −8 config.ts
  12. +39 −39 core/clearance.ts
  13. +1 −0 core/dbAuth.cjs
  14. +0 −1 core/dbAuth.js
  15. +1 −1 core/gitpull.ts
  16. +40 −36 core/helper.ts
  17. +1 −1 database/auth.ts
  18. +2 −2 database/blacklist.ts
  19. +2 −2 database/greeting.ts
  20. +2 −2 database/user.ts
  21. +19 −0 docker-compose.yml
  22. BIN images/Athena_Logo.png
  23. BIN images/Athena_invite.png
  24. BIN images/BotsApp_Logo.png
  25. BIN images/BotsApp_invite.jpeg
  26. +20 −20 lib/cpp.js
  27. +50 −9 lib/db.ts
  28. +21 −21 lib/neko.js
  29. +18 −0 local.Dockerfile
  30. +27 −27 modules/abl.ts
  31. +36 −36 modules/add.ts
  32. +16 −16 modules/admins.ts
  33. +10 −10 modules/alive.ts
  34. +101 −0 modules/bing.ts
  35. +16 −16 modules/block.ts
  36. +33 −33 modules/carbon.ts
  37. +22 −22 modules/cpp.bak
  38. +15 −15 modules/create.bak
  39. +25 −25 modules/decodeqr.ts
  40. +28 −28 modules/demote.ts
  41. +17 −17 modules/disappear.ts
  42. +11 −11 modules/getdp.ts
  43. +18 −18 modules/github.ts
  44. +34 −34 modules/goodbye.ts
  45. +110 −0 modules/gpt.ts
  46. +13 −13 modules/help.ts
  47. +21 −21 modules/invite.ts
  48. +22 −22 modules/lyrics.ts
  49. +15 −15 modules/meaning.ts
  50. +27 −27 modules/mute.bak
  51. +23 −23 modules/news.ts
  52. +26 −26 modules/ocr.ts
  53. +25 −25 modules/promote.ts
  54. +16 −16 modules/qr.ts
  55. +30 −30 modules/quote.ts
  56. +31 −31 modules/rbl.ts
  57. +39 −39 modules/remove.ts
  58. +20 −20 modules/rename.ts
  59. +20 −20 modules/setdp.ts
  60. +55 −36 modules/song.ts
  61. +38 −38 modules/sticker.ts
  62. +22 −22 modules/stoi.ts
  63. +15 −15 modules/stov.ts
  64. +28 −28 modules/tagall.ts
  65. +32 −32 modules/translate.ts
  66. +25 −20 modules/tts.ts
  67. +16 −16 modules/unblock.ts
  68. +14 −14 modules/unmute.bak
  69. +16 −16 modules/urban-dictionary.ts
  70. +92 −0 modules/video.ts
  71. +25 −25 modules/weather.ts
  72. +45 −45 modules/welcome.ts
  73. +22 −22 modules/yt.ts
  74. +11,740 −0 package-lock.json
  75. +57 −49 package.json
  76. +48 −12 sidekick/client.ts
  77. +1 −1 sidekick/command.ts
  78. +20 −20 sidekick/input-sanitization.ts
  79. +3 −1 sidekick/message-type.ts
  80. +3 −3 sidekick/sidekick.ts
  81. +11 −3 tsconfig.json
  82. +0 −3,993 yarn.lock
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
6 changes: 4 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -6,7 +6,9 @@ build/Release
tmp/*
.vs/
.idea/
BotsApp.db
Athena.db
yarn-error.log
dist/
session.data.json
session.data.json
.yarn
.yarnrc.yml
Loading