Skip to content

Commit 4547ef0

Browse files
authored
Merge pull request #403 from mokurin000/fix-tag-count-repo-url
fix: outdated tag-count repo url
2 parents f15cfa3 + 2eb5bfb commit 4547ef0

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ Tag translation:
9595
Tag order optimization:
9696

9797
- [e-hentai-db](https://github.com/ccloli/e-hentai-db)
98-
- [e-hentai-tag-count](https://github.com/poly000/e-hentai-tag-count)
98+
- [e-hentai-tag-count](https://github.com/mokurin000/e-hentai-tag-count)
9999

100100
App translation:
101101

README_cn.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ Linux更新(不维护): 直接删除旧包后,下载最新的包使用
8484
标签热度排序:
8585

8686
- [e-hentai-db](https://github.com/ccloli/e-hentai-db)
87-
- [e-hentai-tag-count](https://github.com/poly000/e-hentai-tag-count)
87+
- [e-hentai-tag-count](https://github.com/mokurin000/e-hentai-tag-count)
8888

8989

9090
App翻译:

changelog/v7.4.11.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
- 偏好设置中支持搜索时将中文标签搜索结果按热度排序。感谢[e-hentai-db](https://github.com/ccloli/e-hentai-db)
2-
[e-hentai-tag-count](https://github.com/poly000/e-hentai-tag-count)
2+
[e-hentai-tag-count](https://github.com/mokurin000/e-hentai-tag-count)
33
- Linux发布产物改为.deb与.AppImage文件。感谢[madoka773](https://github.com/madoka773)
44
- 重新添加自动重定向至表站的设置,以应对部分ip无法访问表站的问题
55
- 支持自动创建.nomedia文件
@@ -38,7 +38,7 @@
3838

3939
- In the preference settings, support to sort the Chinese tag search results by popularity when searching.
4040
Thanks to [e-hentai-db](https://github.com/ccloli/e-hentai-db)
41-
[e-hentai-tag-count](https://github.com/poly000/e-hentai-tag-count)
41+
[e-hentai-tag-count](https://github.com/mokurin000/e-hentai-tag-count)
4242
- Add back the setting of automatically redirecting to the EH site to deal with the problem that some IPs cannot
4343
access the EH site
4444
- Support to create .nomedia file automatically

lib/src/service/tag_search_order_service.dart

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class TagSearchOrderOptimizationService extends GetxService {
2727

2828
final String savePath = join(PathSetting.getVisibleDir().path, 'tid_count_tag.csv.gz');
2929

30-
static const String releaseUrl = 'https://github.com/poly000/e-hentai-tag-count/releases/latest';
30+
static const String releaseUrl = 'https://github.com/mokurin000/e-hentai-tag-count/releases/latest';
3131

3232
Rx<LoadingState> loadingState = LoadingState.idle.obs;
3333
RxnString version = RxnString(null);
@@ -94,7 +94,7 @@ class TagSearchOrderOptimizationService extends GetxService {
9494
try {
9595
await retry(
9696
() => EHRequest.download(
97-
url: 'https://github.com/poly000/e-hentai-tag-count/releases/download/$tag/tid_count_tag.csv.gz',
97+
url: 'https://github.com/mokurin000/e-hentai-tag-count/releases/download/$tag/tid_count_tag.csv.gz',
9898
path: savePath,
9999
receiveTimeout: 10 * 60 * 1000,
100100
onReceiveProgress: (count, total) => downloadProgress.value = byte2String(count.toDouble()),

0 commit comments

Comments
 (0)