diff --git a/.github/FUNDING.yml b/.github/FUNDING.yaml
similarity index 100%
rename from .github/FUNDING.yml
rename to .github/FUNDING.yaml
diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yaml
similarity index 98%
rename from .github/ISSUE_TEMPLATE/bug_report.yml
rename to .github/ISSUE_TEMPLATE/bug_report.yaml
index f3f6ef3d..76fc578a 100644
--- a/.github/ISSUE_TEMPLATE/bug_report.yml
+++ b/.github/ISSUE_TEMPLATE/bug_report.yaml
@@ -1,6 +1,5 @@
name: 🐞 Bug Report
description: Report a bug
-labels: 'type: bug'
body:
- type: markdown
@@ -50,7 +49,7 @@ body:
render: shell
validations:
required: true
-
+
- type: textarea
id: context
attributes:
diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yaml
similarity index 100%
rename from .github/ISSUE_TEMPLATE/config.yml
rename to .github/ISSUE_TEMPLATE/config.yaml
diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yaml
similarity index 96%
rename from .github/ISSUE_TEMPLATE/feature_request.yml
rename to .github/ISSUE_TEMPLATE/feature_request.yaml
index 7026f957..412d5181 100644
--- a/.github/ISSUE_TEMPLATE/feature_request.yml
+++ b/.github/ISSUE_TEMPLATE/feature_request.yaml
@@ -1,6 +1,5 @@
name: 💡 Feature Request
description: Suggest an idea
-labels: 'type: feature'
body:
- type: textarea
@@ -26,7 +25,7 @@ body:
attributes:
label: Alternatives considered
description: "Any alternative solutions you've considered"
-
+
- type: textarea
id: context
attributes:
diff --git a/.github/dependabot.yml b/.github/dependabot.yaml
similarity index 93%
rename from .github/dependabot.yml
rename to .github/dependabot.yaml
index 63e94ac7..f49eabc9 100644
--- a/.github/dependabot.yml
+++ b/.github/dependabot.yaml
@@ -5,7 +5,7 @@ version: 2
updates:
- package-ecosystem: github-actions
directory: /
- schedule:
+ schedule:
interval: weekly
day: "tuesday"
time: "01:00"
@@ -13,7 +13,7 @@ updates:
- package-ecosystem: docker
directory: /
- schedule:
+ schedule:
interval: weekly
day: "tuesday"
time: "01:00"
@@ -21,7 +21,7 @@ updates:
- package-ecosystem: npm
directory: /
- schedule:
+ schedule:
interval: weekly
day: "tuesday"
time: "01:00"
diff --git a/.github/workflows/build-pull-request.yml b/.github/workflows/build-pull-request.yaml
similarity index 100%
rename from .github/workflows/build-pull-request.yml
rename to .github/workflows/build-pull-request.yaml
diff --git a/.github/workflows/deploy-pull-request.yml b/.github/workflows/deploy-pull-request.yaml
similarity index 100%
rename from .github/workflows/deploy-pull-request.yml
rename to .github/workflows/deploy-pull-request.yaml
diff --git a/.github/workflows/netlify-dev.yaml b/.github/workflows/netlify-dev.yaml
index d1100ebf..5a71fcdd 100644
--- a/.github/workflows/netlify-dev.yaml
+++ b/.github/workflows/netlify-dev.yaml
@@ -10,7 +10,7 @@ jobs:
name: 'Deploy'
runs-on: ubuntu-latest
- steps:
+ steps:
- name: Checkout repository
uses: actions/checkout@v3.0.0
- name: Build and deploy to Netlify
diff --git a/src/app/molecules/room-history-visibility/RoomHistoryVisibility.jsx b/src/app/molecules/room-history-visibility/RoomHistoryVisibility.jsx
index 766f7653..6a72a99b 100644
--- a/src/app/molecules/room-history-visibility/RoomHistoryVisibility.jsx
+++ b/src/app/molecules/room-history-visibility/RoomHistoryVisibility.jsx
@@ -17,19 +17,19 @@ const visibility = {
const items = [{
iconSrc: null,
- text: 'World readable (anyone can read)',
+ text: 'Anyone (including guests)',
type: visibility.WORLD_READABLE,
}, {
iconSrc: null,
- text: 'Member shared (since the point in time of selecting this option)',
+ text: 'Members (all messages)',
type: visibility.SHARED,
}, {
iconSrc: null,
- text: 'Member invited (since they were invited)',
+ text: 'Members (messages after invite)',
type: visibility.INVITED,
}, {
iconSrc: null,
- text: 'Member joined (since they joined)',
+ text: 'Members (messages after join)',
type: visibility.JOINED,
}];
@@ -87,7 +87,7 @@ function RoomHistoryVisibility({ roomId }) {
))
}
-