Skip to content

Commit

Permalink
Merge branch 'main' into 1441-signle-note-widget-card-radius-too-big
Browse files Browse the repository at this point in the history
  • Loading branch information
abdusalamApps authored Apr 10, 2023
2 parents e7ee2b6 + 6b336e4 commit e8689dd
Show file tree
Hide file tree
Showing 187 changed files with 4,167 additions and 1,197 deletions.
2 changes: 2 additions & 0 deletions .bundle/config
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
---
BUNDLE_PATH: "vendor/bundle"
3 changes: 1 addition & 2 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# These are supported funding model platforms

liberapay: stefan-niedermann
custom: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=K7HVLE6J7SXXA
custom: https://nextcloud.com/include/
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ labels: bug
Guidelines for submitting issues:
* Bug reports which do not fill the complete issue template will be closed.
* Please have a look at our [FAQ](https://github.com/stefan-niedermann/nextcloud-notes/blob/master/FAQ.md)
* Please have a look at our [FAQ](https://github.com/nextcloud/notes-android/blob/main/FAQ.md)
* Please search the existing issues first, it's likely that your issue was already reported or even fixed.
* This repository is *only* for issues within the Nextcloud Notes Android app
-->
Expand Down
26 changes: 16 additions & 10 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
# synced from @nextcloud/android-config
version: 2
updates:
- package-ecosystem: gradle
directory: "/"
schedule:
interval: daily
open-pull-requests-limit: 10
- package-ecosystem: github-actions
directory: "/"
schedule:
interval: daily
open-pull-requests-limit: 10
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
- package-ecosystem: gradle
directory: "/"
schedule:
interval: daily
time: "03:00"
timezone: Europe/Paris
rebase-strategy: "disabled"
open-pull-requests-limit: 10
labels:
- 3. to review
- dependencies
5 changes: 4 additions & 1 deletion .github/workflows/android.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Android CI

on: [push, pull_request]
on:
pull_request:
push:
branches: [ main, stable-* ]

permissions:
contents: read
Expand Down
30 changes: 30 additions & 0 deletions .github/workflows/autoApproveDependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# synced from @nextcloud/android-config
name: Auto approve dependabot

on:
pull_request_target:
branches:
- main
- master
- stable-*

permissions:
contents: read

concurrency:
group: dependabot-approve-${{ github.head_ref || github.run_id }}
cancel-in-progress: true

jobs:
auto-approve:
name: Auto approve dependabot
runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]'
permissions:
# needed to approve the PR
pull-requests: write

steps:
- uses: hmarr/auto-approve-action@44888193675f29a83e04faf4002fa8c0b537b1e4 # v3.2.1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
29 changes: 29 additions & 0 deletions .github/workflows/autoApproveSync.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# synced from @nextcloud/android-config
name: Auto approve sync
on:
pull_request_target:
branches:
- master
- main
types:
- opened
- reopened
- synchronize
- labeled

concurrency:
group: sync-approve-${{ github.head_ref || github.run_id }}
cancel-in-progress: true

permissions:
pull-requests: write

jobs:
auto-approve:
name: Auto approve sync
runs-on: ubuntu-latest
if: ${{ contains(github.event.pull_request.labels.*.name, 'sync') && github.actor == 'nextcloud-android-bot' }}
steps:
- uses: hmarr/auto-approve-action@44888193675f29a83e04faf4002fa8c0b537b1e4 # v3.2.1
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
48 changes: 35 additions & 13 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -1,27 +1,49 @@
name: CodeQL security scan
# synced from @nextcloud/android-config
name: "CodeQL"

on:
push:
branches: [ "master", "main", "stable-*" ]
pull_request:
branches: [ "master", "main" ]
schedule:
- cron: '0 12 * * *'
- cron: '24 18 * * 3'

permissions:
contents: read
security-events: write
pull-requests: read

jobs:
codeql:
name: CodeQL security scan
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [ 'java' ]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Checkout repository
uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3 # v3.5.0
- name: Set Swap Space
uses: pierotofy/set-swap-space@49819abfb41bd9b44fb781159c033dba90353a7c # v1.0
with:
swap-size-gb: 10
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
uses: github/codeql-action/init@04df1262e6247151b5ac09cd2c303ac36ad3f62b # v2.2.9
with:
languages: ${{ matrix.language }}
- name: Set up JDK
uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3.11.0
with:
languages: java
- name: Build debug APK
run: bash ./gradlew assembleDev --stacktrace
distribution: "temurin"
java-version: 11
- name: Assemble
run: |
mkdir -p "$HOME/.gradle"
echo "org.gradle.jvmargs=-Xmx2g -XX:MaxMetaspaceSize=512m -XX:+HeapDumpOnOutOfMemoryError" > "$HOME/.gradle/gradle.properties"
./gradlew assembleDebug
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
uses: github/codeql-action/analyze@04df1262e6247151b5ac09cd2c303ac36ad3f62b # v2.2.9
51 changes: 51 additions & 0 deletions .github/workflows/command-rebase.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
# This workflow is provided via the organization template repository
#
# https://github.com/nextcloud/.github
# https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization

name: Rebase command

on:
issue_comment:
types: created

permissions:
contents: read

jobs:
rebase:
runs-on: ubuntu-latest
permissions:
contents: none

# On pull requests and if the comment starts with `/rebase`
if: github.event.issue.pull_request != '' && startsWith(github.event.comment.body, '/rebase')

steps:
- name: Add reaction on start
uses: peter-evans/create-or-update-comment@67dcc547d311b736a8e6c5c236542148a47adc3d # v2.1.1
with:
token: ${{ secrets.COMMAND_BOT_PAT }}
repository: ${{ github.event.repository.full_name }}
comment-id: ${{ github.event.comment.id }}
reaction-type: "+1"

- name: Checkout the latest code
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3
with:
fetch-depth: 0
token: ${{ secrets.COMMAND_BOT_PAT }}

- name: Automatic Rebase
uses: cirrus-actions/rebase@b87d48154a87a85666003575337e27b8cd65f691 # 1.8
env:
GITHUB_TOKEN: ${{ secrets.COMMAND_BOT_PAT }}

- name: Add reaction on failure
uses: peter-evans/create-or-update-comment@67dcc547d311b736a8e6c5c236542148a47adc3d # v2.1.1
if: failure()
with:
token: ${{ secrets.COMMAND_BOT_PAT }}
repository: ${{ github.event.repository.full_name }}
comment-id: ${{ github.event.comment.id }}
reaction-type: "-1"
32 changes: 32 additions & 0 deletions .github/workflows/detectNewJavaFiles.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# synced from @nextcloud/android-config
name: "Detect new java files"

on:
pull_request:
branches: [ master, main, stable-* ]

permissions: read-all

jobs:
detectNewJavaFiles:
runs-on: ubuntu-latest
steps:
- id: file_changes
uses: trilom/file-changes-action@a6ca26c14274c33b15e6499323aac178af06ad4b # v1.2.4
with:
output: ','
- name: Detect new java files
run: |
if [ -z '${{ steps.file_changes.outputs.files_added }}' ]; then
echo "No new files added"
exit 0
fi
new_java=$(echo '${{ steps.file_changes.outputs.files_added }}' | tr ',' '\n' | grep '\.java$' | cat)
if [ -n "$new_java" ]; then
# shellcheck disable=SC2016
printf 'New java files detected:\n```\n%s\n```\n' "$new_java" | tee "$GITHUB_STEP_SUMMARY"
exit 1
else
echo "No new java files detected"
exit 0
fi
18 changes: 18 additions & 0 deletions .github/workflows/gradle-wrapper-validation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# synced from @nextcloud/android-config
name: "Validate Gradle Wrapper"
on:
pull_request:
branches: [ master, stable-* ]
push:
branches: [ master, stable-* ]

# Declare default permissions as read only.
permissions: read-all

jobs:
validation:
name: "Validation"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3 # v3.5.0
- uses: gradle/wrapper-validation-action@8d49e559aae34d3e0eb16cde532684bc9702762b # v1.0.6
38 changes: 38 additions & 0 deletions .github/workflows/scorecard.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# synced from @nextcloud/android-config
name: Scorecard supply-chain security
on:
branch_protection_rule:
schedule:
- cron: '32 23 * * 4'
push:
branches: [ "main", "master" ]

# Declare default permissions as read only.
permissions: read-all

jobs:
analysis:
name: Scorecard analysis
runs-on: ubuntu-latest
permissions:
# Needed to upload the results to code-scanning dashboard.
security-events: write

steps:
- name: "Checkout code"
uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3 # v3.5.0
with:
persist-credentials: false

- name: "Run analysis"
uses: ossf/scorecard-action@80e868c13c90f172d68d1f4501dee99e2479f7af # v2.1.3
with:
results_file: results.sarif
results_format: sarif
publish_results: false

# Upload the results to GitHub's code scanning dashboard.
- name: "Upload to code-scanning"
uses: github/codeql-action/upload-sarif@04df1262e6247151b5ac09cd2c303ac36ad3f62b # v2.2.9
with:
sarif_file: results.sarif
28 changes: 28 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# synced from @nextcloud/android-config
name: 'Close stale issues'
on:
schedule:
- cron: '0 0 * * *'

# Declare default permissions as read only.
permissions: read-all

jobs:
stale:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/stale@1160a2240286f5da8ec72b1c0816ce2481aabf84 # v8.0.0
with:
days-before-stale: 28
days-before-close: 14
days-before-pr-close: -1
only-labels: 'bug,needs info'
exempt-issue-labels: 'no-stale'
stale-issue-message: >-
This bug report did not receive an update in the last 4 weeks.
Please take a look again and update the issue with new details,
otherwise the issue will be automatically closed in 2 weeks. Thank you!
exempt-all-pr-milestones: true
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,6 @@
/.idea/
*.iml
/projectFilesBackup/
# fastlane
/vendor/bundle
fastlane/report.xml
7 changes: 4 additions & 3 deletions .tx/config
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
[main]
host = https://www.transifex.com

[nextcloud.android-notes]
[o:nextcloud:p:nextcloud:r:android-notes]
file_filter = app/src/main/res/values-<lang>/strings.xml
source_file = app/src/main/res/values/strings.xml
type = ANDROID
source_lang = en
lang_map = af_ZA: af-rZA, am_ET: am-rET, ar_AE: ar-rAE, ar_BH: ar-rBH, ar_DZ: ar-rDZ, ar_EG: ar-rEG, ar_IQ: ar-rIQ, ar_JO: ar-rJO, ar_KW: ar-rKW, ar_LB: ar-rLB, ar_LY: ar-rLY, ar_MA: ar-rMA, ar_OM: ar-rOM, ar_QA: ar-rQA, ar_SA: ar-rSA, ar_SY: ar-rSY, ar_TN: ar-rTN, ar_YE: ar-rYE, arn_CL: arn-rCL, as_IN: as-rIN, az_AZ: az-rAZ, ba_RU: ba-rRU, be_BY: be-rBY, bg_BG: bg-rBG, bn_BD: bn-rBD, bn_IN: bn-rIN, bo_CN: bo-rCN, br_FR: br-rFR, bs_BA: bs-rBA, ca_ES: ca-rES, co_FR: co-rFR, cs_CZ: cs-rCZ, cy_GB: cy-rGB, da_DK: da-rDK, de_AT: de-rAT, de_CH: de-rCH, de_DE: de-rDE, de_LI: de-rLI, de_LU: de-rLU, dsb_DE: dsb-rDE, dv_MV: dv-rMV, el_GR: el-rGR, en_AU: en-rAU, en_BZ: en-rBZ, en_CA: en-rCA, en_GB: b+en+001, en_IE: en-rIE, en_IN: en-rIN, en_JM: en-rJM, en_MY: en-rMY, en_NZ: en-rNZ, en_PH: en-rPH, en_SG: en-rSG, en_TT: en-rTT, en_US: en-rUS, en_ZA: en-rZA, en_ZW: en-rZW, en@pirate: en-rpirate, es_AR: es-rAR, es_BO: es-rBO, es_CL: es-rCL, es_CO: es-rCO, es_CR: es-rCR, es_DO: es-rDO, es_EC: es-rEC, es_ES: es-rES, es_GT: es-rGT, es_HN: es-rHN, es_MX: es-rMX, es_NI: es-rNI, es_PA: es-rPA, es_PE: es-rPE, es_PR: es-rPR, es_PY: es-rPY, es_SV: es-rSV, es_419: b+es+419, es_UY: es-rUY, es_VE: es-rVE, et_EE: et-rEE, eu_ES: eu-rES, fa_IR: fa-rIR, fi_FI: fi-rFI, fil_PH: fil-rPH, fo_FO: fo-rFO, fr_BE: fr-rBE, fr_CA: fr-rCA, fr_CH: fr-rCH, fr_FR: fr-rFR, fr_LU: fr-rLU, fr_MC: fr-rMC, fy_NL: fy-rNL, ga_IE: ga-rIE, gd_GB: gd-rGB, gl_ES: gl-rES, gsw_FR: gsw-rFR, gu_IN: gu-rIN, ha_NG: ha-rNG, he_IL: he-rIL, hi_IN: hi-rIN, hr_BA: hr-rBA, hr_HR: hr-rHR, hsb_DE: hsb-rDE, hu_HU: hu-rHU, hy_AM: hy-rAM, id_ID: id-rID, ig_NG: ig-rNG, ii_CN: ii-rCN, is_IS: is-rIS, it_CH: it-rCH, it_IT: it-rIT, iu_CA: iu-rCA, ja_JP: ja-rJP, ka_GE: ka-rGE, kk_KZ: kk-rKZ, kl_GL: kl-rGL, km_KH: km-rKH, kn_IN: kn-rIN, ko_KR: ko-rKR, kok_IN: kok-rIN, ku_IQ: ku-rIQ, ky_KG: ky-rKG, lb_LU: lb-rLU, lo_LA: lo-rLA, lt_LT: lt-rLT, lv_LV: lv-rLV, mi_NZ: mi-rNZ, mk_MK: mk-rMK, ml_IN: ml-rIN, mn_CN: mn-rCN, mn_MN: mn-rMN, moh_CA: moh-rCA, mr_IN: mr-rIN, ms_BN: ms-rBN, ms_MY: ms-rMY, my_MM: my, mt_MT: mt-rMT, nb_NO: nb-rNO, ne_NP: ne-rNP, nl_BE: nl-rBE, nl_NL: nl-rNL, nn_NO: nn-rNO, nso_ZA: nso-rZA, oc_FR: oc-rFR, or_IN: or-rIN, pa_IN: pa-rIN, pl_PL: pl-rPL, prs_AF: prs-rAF, ps_AF: ps-rAF, pt_BR: pt-rBR, pt_PT: pt-rPT, qut_GT: qut-rGT, quz_BO: quz-rBO, quz_EC: quz-rEC, quz_PE: quz-rPE, rm_CH: rm-rCH, ro_RO: ro-rRO, ru_RU: ru-rRU, rw_RW: rw-rRW, sa_IN: sa-rIN, sah_RU: sah-rRU, se_FI: se-rFI, se_NO: se-rNO, se_SE: se-rSE, si_LK: si-rLK, sk_SK: sk-rSK, sl_SI: sl-rSI, sma_NO: sma-rNO, sma_SE: sma-rSE, smj_NO: smj-rNO, smj_SE: smj-rSE, smn_FI: smn-rFI, sms_FI: sms-rFI, sq_AL: sq-rAL, sr_BA: sr-rBA, sr_CS: sr-rCS, sr_ME: sr-rME, sr_RS: sr-rRS, sr@latin: sr-rSP, sv_FI: sv-rFI, sv_SE: sv-rSE, sw_KE: sw-rKE, syr_SY: syr-rSY, ta_IN: ta-rIN, ta_LK: ta-rLK, te_IN: te-rIN, tg_TJ: tg-rTJ, th_TH: th-rTH, tk_TM: tk-rTM, tn_ZA: tn-rZA, tr_TR: tr-rTR, tt_RU: tt-rRU, tzm_DZ: tzm-rDZ, ug_CN: ug-rCN, uk_UA: uk-rUA, ur_PK: ur-rPK, uz_UZ: uz-rUZ, vi_VN: vi-rVN, wo_SN: wo-rSN, xh_ZA: xh-rZA, yo_NG: yo-rNG, zh_CN: zh-rCN, zh_CN.GB2312:zh-rBG, zh_HK: zh-rHK, zh_MO: zh-rMO, zh_SG: zh-rSG, zh_TW: zh-rTW, zu_ZA: zu-rZA
type = ANDROID
lang_map = ii_CN: ii-rCN, or_IN: or-rIN, tg_TJ: tg-rTJ, ar_OM: ar-rOM, es_BO: es-rBO, kn_IN: kn-rIN, mr_IN: mr-rIN, ms_BN: ms-rBN, se_FI: se-rFI, wo_SN: wo-rSN, fr_CH: fr-rCH, is_IS: is-rIS, se_SE: se-rSE, vi_VN: vi-rVN, ar_SY: ar-rSY, en_GB: b+en+001, en@pirate: en-rpirate, pt_BR: pt-rBR, sa_IN: sa-rIN, sr_BA: sr-rBA, am_ET: am-rET, bn_IN: bn-rIN, sr@latin: sr-rSP, fy_NL: fy-rNL, ar_LB: ar-rLB, bg_BG: bg-rBG, bs_BA: bs-rBA, dv_MV: dv-rMV, en_IE: en-rIE, es_SV: es-rSV, fa_IR: fa-rIR, ig_NG: ig-rNG, lb_LU: lb-rLU, lo_LA: lo-rLA, ne_NP: ne-rNP, smn_FI: smn-rFI, tn_ZA: tn-rZA, ar_YE: ar-rYE, en_AU: en-rAU, es_EC: es-rEC, es_GT: es-rGT, hr_HR: hr-rHR, sma_NO: sma-rNO, sr_RS: sr-rRS, uz_UZ: uz-rUZ, xh_ZA: xh-rZA, ar_JO: ar-rJO, ba_RU: ba-rRU, de_DE: de-rDE, de_LU: de-rLU, el_GR: el-rGR, es_419: b+es+419, fr_MC: fr-rMC, ar_IQ: ar-rIQ, en_BZ: en-rBZ, iu_CA: iu-rCA, mi_NZ: mi-rNZ, pl_PL: pl-rPL, sk_SK: sk-rSK, mn_MN: mn-rMN, sma_SE: sma-rSE, sms_FI: sms-rFI, en_US: en-rUS, lv_LV: lv-rLV, mt_MT: mt-rMT, quz_EC: quz-rEC, en_NZ: en-rNZ, es_NI: es-rNI, fi_FI: fi-rFI, it_CH: it-rCH, ml_IN: ml-rIN, rw_RW: rw-rRW, de_AT: de-rAT, ka_GE: ka-rGE, te_IN: te-rIN, uk_UA: uk-rUA, ky_KG: ky-rKG, ar_SA: ar-rSA, be_BY: be-rBY, en_PH: en-rPH, es_CL: es-rCL, es_ES: es-rES, es_VE: es-rVE, kok_IN: kok-rIN, zh_MO: zh-rMO, de_CH: de-rCH, eu_ES: eu-rES, fo_FO: fo-rFO, quz_PE: quz-rPE, si_LK: si-rLK, sr_ME: sr-rME, ur_PK: ur-rPK, en_CA: en-rCA, ta_IN: ta-rIN, th_TH: th-rTH, ar_AE: ar-rAE, es_PY: es-rPY, fr_FR: fr-rFR, id_ID: id-rID, sq_AL: sq-rAL, tk_TM: tk-rTM, zh_SG: zh-rSG, ro_RO: ro-rRO, ar_MA: ar-rMA, ar_TN: ar-rTN, az_AZ: az-rAZ, co_FR: co-rFR, gd_GB: gd-rGB, hu_HU: hu-rHU, nb_NO: nb-rNO, ug_CN: ug-rCN, zh_HK: zh-rHK, es_CO: es-rCO, ja_JP: ja-rJP, mk_MK: mk-rMK, tt_RU: tt-rRU, zu_ZA: zu-rZA, af_ZA: af-rZA, ar_EG: ar-rEG, en_JM: en-rJM, en_MY: en-rMY, et_EE: et-rEE, hi_IN: hi-rIN, kl_GL: kl-rGL, zh_TW: zh-rTW, ar_BH: ar-rBH, es_PR: es-rPR, fr_LU: fr-rLU, ko_KR: ko-rKR, se_NO: se-rNO, sv_SE: sv-rSE, ta_LK: ta-rLK, hr_BA: hr-rBA, as_IN: as-rIN, bn_BD: bn-rBD, en_ZA: en-rZA, es_AR: es-rAR, gsw_FR: gsw-rFR, gu_IN: gu-rIN, he_IL: he-rIL, sr_CS: sr-rCS, zh_CN: zh-rCN, zh_CN.GB2312: zh-rBG, cs_CZ: cs-rCZ, de_LI: de-rLI, fil_PH: fil-rPH, gl_ES: gl-rES, nl_BE: nl-rBE, sl_SI: sl-rSI, smj_SE: smj-rSE, da_DK: da-rDK, fr_BE: fr-rBE, ga_IE: ga-rIE, ha_NG: ha-rNG, ku_IQ: ku-rIQ, nl_NL: nl-rNL, prs_AF: prs-rAF, mn_CN: mn-rCN, nn_NO: nn-rNO, sw_KE: sw-rKE, tr_TR: tr-rTR, ar_KW: ar-rKW, es_CR: es-rCR, es_HN: es-rHN, es_PE: es-rPE, kk_KZ: kk-rKZ, ps_AF: ps-rAF, pt_PT: pt-rPT, dsb_DE: dsb-rDE, en_ZW: en-rZW, es_DO: es-rDO, ms_MY: ms-rMY, ru_RU: ru-rRU, yo_NG: yo-rNG, en_IN: en-rIN, es_PA: es-rPA, my_MM: my, quz_BO: quz-rBO, smj_NO: smj-rNO, syr_SY: syr-rSY, tzm_DZ: tzm-rDZ, ar_QA: ar-rQA, en_TT: en-rTT, km_KH: km-rKH, nso_ZA: nso-rZA, oc_FR: oc-rFR, sah_RU: sah-rRU, es_MX: es-rMX, it_IT: it-rIT, moh_CA: moh-rCA, ar_DZ: ar-rDZ, br_FR: br-rFR, ca_ES: ca-rES, cy_GB: cy-rGB, fr_CA: fr-rCA, hsb_DE: hsb-rDE, hy_AM: hy-rAM, qut_GT: qut-rGT, rm_CH: rm-rCH, sv_FI: sv-rFI, ar_LY: ar-rLY, arn_CL: arn-rCL, bo_CN: bo-rCN, en_SG: en-rSG, es_UY: es-rUY, lt_LT: lt-rLT, pa_IN: pa-rIN

2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Submitting bug reports

If you find a bug, feel free to [open an issue](https://github.com/stefan-niedermann/OwnCloud-Notes/issues/new). But please provide these information in the comment:
If you find a bug, feel free to [open an issue](https://github.com/nextcloud/notes-android/issues/new). But please provide these information in the comment:

**Android version:** e. g. 6.0.1 Marshmallow

Expand Down
Loading

0 comments on commit e8689dd

Please sign in to comment.