Skip to content

Commit

Permalink
Merge pull request #4 from deadlyjack/main
Browse files Browse the repository at this point in the history
update 08.11.2024
  • Loading branch information
antikruk authored Nov 8, 2024
2 parents b5064de + bd92c6c commit 83dec34
Show file tree
Hide file tree
Showing 1,053 changed files with 56,872 additions and 40,930 deletions.
12 changes: 2 additions & 10 deletions .babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,11 @@
}
]
],
"env": {
"test": {
"presets": [
"@babel/env"
]
}
},
"plugins": [
"html-tag-js/jsx/jsx-to-tag.js",
"html-tag-js/jsx/syntax-parser.js",
[
"@babel/plugin-transform-runtime"
]
"@babel/plugin-transform-runtime",
"@babel/plugin-transform-block-scoping"
],
"compact": false,
"sourceMaps": "inline"
Expand Down
44 changes: 44 additions & 0 deletions .github/ISSUE_TEMPLATE/0_bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: Bug Report
description: |
Use this template for bug reports.
labels: []
body:
- type: checkboxes
attributes:
label: Check for existing issues
description: Check the backlog of issues to reduce duplicates; if an issue already exists, place a 👍 on it.
options:
- label: Completed
required: true
- type: textarea
attributes:
label: Describe the bug / provide steps to reproduce it
description: A clear and concise description of what the bug is. If possible, then include a clip
validations:
required: true
- type: textarea
id: environment
attributes:
label: Environment
description: Provide your app version, Android version, webview version, etc (Search "Copy Device Info" in command palette to get all these info and share it)
validations:
required: true
- type: textarea
attributes:
label: If applicable, add mockups / screenshots regarding your vission
description: Drag issues into the text input below
validations:
required: false
- type: textarea
attributes:
label: If applicable, attach your Acode.log file to this issue.
description: |
Search for `Open Log File` in Acode command palette, it will open Acode.log file then share it
or Check this location for log file: `/storage/emulated/0/Android/com.foxdebug.acode{in case of free version there will be bit more}/files/Acode.log`
value: |
<details><summary>Acode.log</summary><pre>
<!-- Click below this line and paste or drag-and-drop your log-->
<!-- Click above this line and paste or drag-and-drop your log--></pre></details>
validations:
required: false
24 changes: 24 additions & 0 deletions .github/ISSUE_TEMPLATE/1_feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Feature Request
description: "Suggest a new feature for Acode"
labels: ["enhancement"]
body:
- type: checkboxes
attributes:
label: Check for existing issues
description: Check the backlog of issues to reduce duplicates; if an issue already exists, place a `+1` (👍) on it.
options:
- label: Completed
required: true
- type: textarea
attributes:
label: Describe the feature
description: A clear and concise description of what you want to happen.
validations:
required: true
- type: textarea
attributes:
label: |
If applicable, add mockups / screenshots to help present your vision of the feature
description: Drag images into the text input below
validations:
required: false
11 changes: 11 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
blank_issues_enabled: false
contact_links:
- name: Ask Questions
url: https://github.com/deadlyjack/Acode/discussions
about: Ask any questions regarding Acode and its ecosystem
- name: Telegram Group
url: https://t.me/foxdebug_acode
about: Friendly Acode Community for helps regarding Acode, development and more
- name: Discord Server
url: https://discord.gg/vVxVWYUAWD
about: Acode discord server
35 changes: 35 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: CI

on:
push:
pull_request:

jobs:
spell-check:
timeout-minutes: 5
name: Check spelling
runs-on: ubuntu-latest

steps:
- name: Checkout Actions Repository
uses: actions/checkout@v4

- name: Check spelling
uses: crate-ci/typos@master
with:
config: ./_typos.toml

quality:
timeout-minutes: 5
name: Linting and formatting
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Setup Biome
uses: biomejs/setup-biome@v2

- name: Run Biome
run: biome ci .
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,8 @@
/platforms
/keystore.jks
/platforms/android/debug-signing.properties
/platforms/android/release-signing.properties
/platforms/android/release-signing.properties
**/*/.DS_Store
.DS_Store
pnpm-lock.yaml
.zed
5 changes: 4 additions & 1 deletion .hintrc
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
],
"hints": {
"compat-api/css": "off",
"css-prefix-order": "off"
"css-prefix-order": "off",
"meta-viewport": "off",
"detect-css-reflows/composite": "off",
"detect-css-reflows/paint": "off"
}
}
2 changes: 1 addition & 1 deletion .vscode/plugins.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"plugins":["cordova-clipboard","cordova-plugin-vibration","cordova-plugin-buildinfo","cordova-plugin-device","cordova-plugin-file","cordova-plugin-sdcard","cordova-plugin-system","cordova-plugin-sftp","cordova-plugin-iap","cordova-plugin-server","cordova-plugin-ftp"]}
{"plugins":["cordova-clipboard","cordova-plugin-buildinfo","cordova-plugin-device","cordova-plugin-file","cordova-plugin-sftp","cordova-plugin-server","cordova-plugin-ftp","cordova-plugin-sdcard","cordova-plugin-browser","cordova-plugin-system","cordova-plugin-iap"]}
Loading

0 comments on commit 83dec34

Please sign in to comment.