-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into feat-dynamic-text-size-with-custom-header
- Loading branch information
Showing
112 changed files
with
864 additions
and
674 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
name: "Bug Report" | ||
description: "Report a bug to help us improve." | ||
title: "bug: " | ||
labels: ["🐛 bug"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
## Thank you for taking the time to report this bug! | ||
Before submitting, please check if a similar issue exists. | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: "Describe the Bug" | ||
description: "A clear and concise description of the issue." | ||
placeholder: "A bug happened!" | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: steps | ||
attributes: | ||
label: "Steps to Reproduce" | ||
description: "List the steps to reproduce the issue." | ||
placeholder: | | ||
1. Go to '...' | ||
2. Click on '...' | ||
3. Observe the issue | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: expected-behavior | ||
attributes: | ||
label: "Expected Behavior" | ||
description: "What should have happened?" | ||
placeholder: "Describe the expected outcome." | ||
|
||
- type: textarea | ||
id: actual-behavior | ||
attributes: | ||
label: "Actual Behavior" | ||
description: "What actually happened?" | ||
placeholder: "Describe what actually happens." | ||
|
||
- type: input | ||
id: server-version | ||
attributes: | ||
label: "Rocket.Chat Server Version" | ||
placeholder: "Enter the server version" | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: app-version | ||
attributes: | ||
label: "Rocket.Chat App Version" | ||
placeholder: "Enter the app version" | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: device-name | ||
attributes: | ||
label: "Device Name" | ||
placeholder: "e.g., iPhone 13, Samsung Galaxy S22" | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: os-version | ||
attributes: | ||
label: "OS Version" | ||
placeholder: "e.g., iOS 17, Android 14" | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: additional-context | ||
attributes: | ||
label: "Additional Context" | ||
description: "Provide any other relevant information about the problem." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
name: "Feature Suggestion" | ||
description: "Suggest a new feature to improve our mobile application." | ||
title: "feature request: " | ||
labels: ["🎉 feature"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
## Thank you for suggesting a new feature for our mobile application! | ||
Please provide as much detail as possible below so we can evaluate your idea. | ||
- type: textarea | ||
id: feature-description | ||
attributes: | ||
label: "Feature Description" | ||
description: "A clear and concise description of the proposed feature." | ||
placeholder: "Describe the feature you are proposing..." | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: motivation | ||
attributes: | ||
label: "Motivation and Use Case" | ||
description: "Explain why this feature would improve the mobile experience and describe any specific use cases or issues it addresses." | ||
placeholder: "Explain the benefits and use case for the feature..." | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: implementation-ideas | ||
attributes: | ||
label: "Implementation Ideas" | ||
description: "Share any thoughts on how this feature might be implemented." | ||
placeholder: "Share your ideas or potential solutions..." | ||
validations: | ||
required: false | ||
|
||
- type: dropdown | ||
id: existing-feature | ||
attributes: | ||
label: "Is this feature available in the API or web version?" | ||
description: "Select an option if this feature is already present elsewhere." | ||
options: | ||
- "Available in API" | ||
- "Available in Web Version" | ||
- "Not available" | ||
- "Not sure" | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: server-version | ||
attributes: | ||
label: "Rocket.Chat Server Version" | ||
placeholder: "Enter the server version" | ||
validations: | ||
required: false | ||
|
||
- type: input | ||
id: app-version | ||
attributes: | ||
label: "Rocket.Chat App Version" | ||
placeholder: "Enter the app version" | ||
validations: | ||
required: false | ||
|
||
- type: input | ||
id: device-name | ||
attributes: | ||
label: "Device Name" | ||
placeholder: "e.g., iPhone 13, Samsung Galaxy S22" | ||
validations: | ||
required: false | ||
|
||
- type: input | ||
id: os-version | ||
attributes: | ||
label: "OS Version" | ||
placeholder: "e.g., iOS 17, Android 14" | ||
validations: | ||
required: false | ||
|
||
- type: textarea | ||
id: additional-context | ||
attributes: | ||
label: "Additional Context" | ||
description: "Any additional information or context to help us better understand your suggestion." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
blank_issues_enabled: true | ||
contact_links: | ||
- name: Community Support | ||
url: https://open.rocket.chat/channel/react-native | ||
about: Please ask and answer questions here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
name: Format Code with Prettier | ||
|
||
on: | ||
push: | ||
branches: | ||
- '*' | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
format: | ||
if: ${{ github.repository != 'RocketChat/Rocket.Chat.ReactNative' || (github.ref != 'refs/heads/master' && github.ref != 'refs/heads/develop' && github.ref != 'refs/heads/single-server') }} | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: '22' | ||
cache: 'yarn' | ||
|
||
- name: Cache node_modules | ||
uses: actions/cache@v4 | ||
with: | ||
path: node_modules | ||
key: ${{ runner.os }}-node-modules-${{ hashFiles('**/yarn.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-node-modules-${{ hashFiles('**/yarn.lock') }} | ||
- name: Install dependencies | ||
run: yarn install | ||
|
||
- name: Run Prettier | ||
run: yarn prettier --write . | ||
|
||
- name: Check for changes | ||
id: check_changes | ||
run: | | ||
if git diff --quiet; then | ||
echo "No code format changes detected" | ||
echo "changes=false" >> $GITHUB_OUTPUT | ||
else | ||
echo "Code format changes detected" | ||
echo "changes=true" >> $GITHUB_OUTPUT | ||
fi | ||
- name: Commit and push changes | ||
if: env.changes == 'true' | ||
run: | | ||
git config user.name "${{ github.actor }}" | ||
git config user.email "${{ github.actor }}@users.noreply.github.com" | ||
git add . | ||
git commit -m "chore: format code with Prettier [skip ci]" | ||
git push origin ${{ github.ref_name }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.