File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
core/src/main/java/com/topjohnwu/magisk/core Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ object Const {
43
43
const val SOURCE_CODE_URL = " https://github.com/topjohnwu/Magisk"
44
44
45
45
const val GITHUB_API_URL = " https://api.github.com/"
46
- const val GITHUB_PAGE_URL = " https://topjohnwu .github.io/magisk-files /"
46
+ const val GITHUB_PAGE_URL = " https://pixincreate .github.io/Magisk /"
47
47
const val INVALID_URL = " https://example.com/"
48
48
}
49
49
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ interface GithubApiServices {
33
33
@GET(" /repos/{owner}/{repo}/releases" )
34
34
@Headers(" Accept: application/vnd.github+json" )
35
35
suspend fun fetchReleases (
36
- @Path(" owner" ) owner : String = "topjohnwu ",
36
+ @Path(" owner" ) owner : String = "pixincreate ",
37
37
@Path(" repo" ) repo : String = "Magisk ",
38
38
@Query(" per_page" ) per : Int = 10,
39
39
@Query(" page" ) page : Int = 1,
@@ -42,7 +42,7 @@ interface GithubApiServices {
42
42
@GET(" /repos/{owner}/{repo}/releases/latest" )
43
43
@Headers(" Accept: application/vnd.github+json" )
44
44
suspend fun fetchLatestRelease (
45
- @Path(" owner" ) owner : String = "topjohnwu ",
45
+ @Path(" owner" ) owner : String = "pixincreate ",
46
46
@Path(" repo" ) repo : String = "Magisk ",
47
47
): Release
48
48
}
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ android {
13
13
namespace = " com.topjohnwu.magisk"
14
14
15
15
val canary = ! Config .version.contains(" ." )
16
- val base = " https://github.com/topjohnwu /Magisk/releases/download/"
16
+ val base = " https://github.com/pixincreate /Magisk/releases/download/"
17
17
val url = base + " v${Config .version} /Magisk-v${Config .version} .apk"
18
18
val canaryUrl = base + " canary-${Config .versionCode} /"
19
19
You can’t perform that action at this time.
0 commit comments