Skip to content
This repository has been archived by the owner on Aug 8, 2024. It is now read-only.

Commit

Permalink
chore(release): version 1.0.0 (#233)
Browse files Browse the repository at this point in the history
* chore(deps): use @open-wa/wa-automate for the client

* chore: add CODEOWNERS

* chore: add FUNDING

* chore(release): add dev tag

* chore: intialize package.json

* chore: add swc config

* chore: add editor config file

* chore: sync tsconfig to the project

* feat(handler): use command handler

* feat(handler): use listener handler

* chore: modified template file

* chore: add types

* chore: listen automate qr event

* feat: use metadata decorator

* chore: add Utils and Logger

* fix(deps): update dependency @discordjs/collection to ^0.6.0

* chore(release): why the hell this can be bumped

* chore(*): beautify

* feat(command): Ping Command

* feat(command): Avatar Command

* feat(command): Sticker Command

* fix(utils): FIx import from platform win32

* chore: Add `qrTimeout` option

* feat(handler): Handle `onMessage`

* chore(typings): add missing types

* chore: change property name `client` to `whatsappbot`

* chore: add some dependencies

* fix(deps): update all non-major dependencies (#236)

Co-authored-by: Renovate Bot <[email protected]>

* chore(deps): update dependency ts-node to v10.8.0

* chore(*): update string content

and also new aliases for avatar command

* chore(*): beautify

* chore(CommandHandler): Implement devOnly for future development

* chore(StickerCommand): Added GIF/Video support

* chore(deps-dev): Removed unnecessary dependency

* ci(lint): Fix error.

* feat(command): Help Command

* feat(command): Eval Command

* feat(config): Project Config

* fix(handler): must continue not return

* chore: add some more logic

* chore: add parseEnvValue

* chore: add missing property

* chore(deps): add dotenv

* chore(deps): update all non-major dependencies to v5.26.0

* chore(deps): update all non-major dependencies (#239)

* chore(deps): update all non-major dependencies

* chore(deps): update lockfile

Co-authored-by: Renovate Bot <[email protected]>
Co-authored-by: mzrtamp <[email protected]>

* chore(deps): update all non-major dependencies (#240)

Co-authored-by: Renovate Bot <[email protected]>

* chore(tsconfig): change moduleResolution

* fix(deps): update all non-major dependencies

* chore(deps): update dependency @swc/core to v1.2.196

* fix(deps): update dependency @open-wa/wa-automate to v4.37.2

* chore(config): update env_example file content

* chore: change `WhatsappBot` to `WhatsAppBot`

* chore(WhatsAppBot): trying to fix naming failure changes

* fix(WhatsAppBot): upload it again

* chore(PingCommand): update string content

* ci(setup): use actual version tags

* chore(*): beautify

* chore(StickerCommand): update string

* chore(release): version 1.0.0

Co-authored-by: Orchit07 <[email protected]>
Co-authored-by: Renovate Bot <[email protected]>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Tiramitzu <[email protected]>
  • Loading branch information
5 people authored Jun 3, 2022
1 parent 5387135 commit 96eb764
Show file tree
Hide file tree
Showing 28 changed files with 16,243 additions and 2,023 deletions.
12 changes: 12 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# EditorConfig is awesome: https://EditorConfig.org

# top-most EditorConfig file
root = true

[*]
charset = utf-8
end_of_line = lf
indent_size = 4
indent_style = space
insert_final_newline = false
trim_trailing_whitespace = false
16 changes: 16 additions & 0 deletions .env_example
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#==============================================================================
# IMPORTANT - What is the name of your bot?
# Example: BOT_NAME="Clytage Bot"
# Default: Clytage Bot
BOT_NAME=""

#==============================================================================
# IMPORTANT - What should be the main prefix of your bot?
# Example: PREFIX="/"
# Default: /
PREFIX=""

#==============================================================================
# MULTIPLE - What are the IDs (phone number) of the bot developers?
# Example: DEVS="6281234567890, 62813312394852"
DEVS=""
2 changes: 2 additions & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Global
* @mzrtamp @noxzym @Tiramitzu
2 changes: 2 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
patreon: clytage
custom: ["https://paypal.me/clytage", "https://karyakarsa.com/clytage"]
8 changes: 4 additions & 4 deletions .github/workflows/setup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
node-version: [">=16.6.0 <17.x"]
steps:
- name: Checkout repository
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # tag=v3
uses: actions/checkout@v3

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@17f8bd926464a1afa4c6a11669539e9c1ba77048 # tag=v3.2.0
uses: actions/[email protected]
with:
node-version: ${{ matrix.node-version }}
check-latest: true
Expand All @@ -38,10 +38,10 @@ jobs:
node-version: [">=16.6.0 <17.x"]
steps:
- name: Checkout repository
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # tag=v3
uses: actions/checkout@v3

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@17f8bd926464a1afa4c6a11669539e9c1ba77048 # tag=v3.2.0
uses: actions/[email protected]
with:
node-version: ${{ matrix.node-version }}
check-latest: true
Expand Down
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -98,3 +98,9 @@ dist

# TernJS port file
.tern-port

# managed
**.data.json
**.node-persist**
**_IGNORE_**
# end managed
13 changes: 13 additions & 0 deletions .swcrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"jsc": {
"parser": {
"syntax": "typescript",
"tsx": false,
"decorators": true
},
"target": "es2021"
},
"module": {
"type": "es6"
}
}
Loading

0 comments on commit 96eb764

Please sign in to comment.