Skip to content

Commit f344a71

Browse files
committed
2 parents 8cb5e5a + de7b1f9 commit f344a71

File tree

3 files changed

+19
-4
lines changed

3 files changed

+19
-4
lines changed

docs/en/repository/[name].md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ const openUrl = (url) => {
6161
>Anti-Features</span
6262
>
6363
<span
64-
@click="openUrl(module.versions[0].zipUrl)"
64+
@click="openUrl(module.versions.toReversed()[0].zipUrl)"
6565
:class="$style.chip"
6666
>Download</span
6767
>

docs/en/repository/[name]/[id].md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ const openUrl = (url) => {
3434
{{ module.description }}
3535

3636
<div :class="$style.moduleActions">
37-
<a v-if="module.versions" :href="module.versions[0].zipUrl" target="_blank" :class="[$style.VPButton, $style.VPButton_medium, $style.VPButton_brand]">Download latest version</a>
37+
<a v-if="module.versions" :href="module.versions.toReversed()[0].zipUrl" target="_blank" :class="[$style.VPButton, $style.VPButton_medium, $style.VPButton_brand]">Download latest version</a>
3838
<a v-if="module.support" :href="module.support" target="_blank" :class="[$style.VPButton, $style.VPButton_medium, $style.VPButton_alt]">Support</a>
3939
</div>
4040

@@ -50,7 +50,7 @@ const openUrl = (url) => {
5050

5151
## Versions
5252

53-
<ul v-for="(version, index) in module.versions">
53+
<ul v-for="(version, index) in module.versions.toReversed()">
5454
<li>
5555
<a :href="version.zipUrl" :key="index">{{ version.version }} ({{ version.versionCode }})</a>
5656
</li>
@@ -173,4 +173,4 @@ const openUrl = (url) => {
173173
margin: 4px;
174174
transform: translateY(-2px);
175175
}
176-
</style>
176+
</style>
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
[
2+
{
3+
"relation": [
4+
"delegate_permission/common.handle_all_urls",
5+
"delegate_permission/common.get_login_creds"
6+
],
7+
"target": {
8+
"namespace": "android_app",
9+
"package_name": "com.dergoogler.mmrl",
10+
"sha256_cert_fingerprints": [
11+
"75:6D:AE:FE:28:A0:5E:0C:AB:48:D5:26:BF:D9:AA:9F:56:56:81:63:E0:5C:34:09:4F:D8:E8:92:86:93:AC:1D"
12+
]
13+
}
14+
}
15+
]

0 commit comments

Comments
 (0)