3 Commits

Author SHA1 Message Date
Pun Butrach
0a5593a792 docs: Use American spelling (#17) 2025-12-14 21:40:05 +01:00
semantic-release-bot
7141d121dd chore: Release v1.1.0-dev.8 [skip ci]
# [1.1.0-dev.8](https://github.com/ReVanced/revanced-manager-downloaders/compare/v1.1.0-dev.7...v1.1.0-dev.8) (2025-07-08)

### Bug Fixes

* Prefixing APKs with `revanced-manager-` ([f4c91f0](f4c91f0455))
2025-07-08 19:13:03 +00:00
brosssh
f4c91f0455 fix: Prefixing APKs with revanced-manager- 2025-07-08 21:08:43 +02:00
5 changed files with 12 additions and 5 deletions

View File

@@ -32,7 +32,7 @@
{
"assets": [
{
"path": "downloaders/*/build/outputs/apk/release/*.apk?(.asc)",
"path": "downloaders/*/build/outputs/apk/release/revanced-manager-*.apk?(.asc)",
}
],
successComment: false

View File

@@ -1,3 +1,10 @@
# [1.1.0-dev.8](https://github.com/ReVanced/revanced-manager-downloaders/compare/v1.1.0-dev.7...v1.1.0-dev.8) (2025-07-08)
### Bug Fixes
* Prefixing APKs with `revanced-manager-` ([f4c91f0](https://github.com/ReVanced/revanced-manager-downloaders/commit/f4c91f0455e19e240a1527ff05f8f987fbf8e054))
# [1.1.0-dev.7](https://github.com/ReVanced/revanced-manager-downloaders/compare/v1.1.0-dev.6...v1.1.0-dev.7) (2025-07-08)

View File

@@ -109,7 +109,7 @@ Follow the steps below to build ReVanced Manager Downloaders:
> gpr.key = key
> ```
## 📜 Licence
## 📜 License
This project is licensed under the GPLv3 licence.
Please see the [license file](LICENSE) for more information.

View File

@@ -77,7 +77,7 @@ subprojects {
applicationVariants.all {
outputs.all {
this as ApkVariantOutputImpl
outputFileName = "${project.name}-downloader-$version.apk"
outputFileName = "revanced-manager-${project.name}-downloader-$version.apk"
}
}
}
@@ -91,7 +91,7 @@ subprojects {
tasks.register("assembleReleaseSignApk") {
dependsOn("assembleRelease")
val apk = layout.buildDirectory.file("outputs/apk/release/${project.name}-downloader-$version.apk")
val apk = layout.buildDirectory.file("outputs/apk/release/revanced-manager-${project.name}-downloader-$version.apk")
inputs.file(apk).withPropertyName("input")
outputs.file(apk.map { it.asFile.resolveSibling("${it.asFile.name}.asc") })

View File

@@ -21,4 +21,4 @@ kotlin.code.style = official
# resources declared in the library itself and none from the library's dependencies,
# thereby reducing the size of the R class for that library
android.nonTransitiveRClass = true
version = 1.1.0-dev.7
version = 1.1.0-dev.8