Package Details: hmcl 3.6.11-1

Git Clone URL: https://aur.archlinux.org/hmcl.git (read-only, click to copy)
Package Base: hmcl
Description: A Minecraft Launcher which is multi-functional, cross-platform and popular
Upstream URL: https://github.com/huanghongxun/HMCL
Licenses: GPL-3.0-or-later
Conflicts: hmcl
Provides: hmcl
Submitter: hexchain
Maintainer: imlonghao
Last Packager: imlonghao
Votes: 17
Popularity: 0.009276
First Submitted: 2016-05-04 07:42 (UTC)
Last Updated: 2024-12-03 13:48 (UTC)

Dependencies (2)

Required by (0)

Sources (3)

Latest Comments

1 2 3 4 5 Next › Last »

Firestar commented on 2024-12-22 13:50 (UTC)

@imlonghao 那这只能怪沟槽的梯子了,有的包必须要梯子才能下载,有的包挂梯子就会触发curl: (56) OpenSSL SSL_read: SSL_ERROR_SYSCALL, errno 0而暴死

imlonghao commented on 2024-12-22 13:05 (UTC)

Could not GET 'https://plugins.gradle.org/m2/org/junit/junit-bom/5.7.2/junit-bom-5.7.2.module'. Read timed out

网络问题,请确保你能上网。

Firestar commented on 2024-12-22 12:56 (UTC) (edited on 2024-12-22 13:01 (UTC) by Firestar)

Starting a Gradle Daemon (subsequent builds will be faster)

FAILURE: Build failed with an exception.

* What went wrong:
A problem occurred configuring project ':HMCL'.
> Could not resolve all artifacts for configuration ':HMCL:classpath'.
   > Could not resolve org.apache.logging.log4j:log4j-core:2.17.1.
     Required by:
         project :HMCL
      > Repository Gradle Central Plugin Repository is disabled due to earlier error below:
         > Could not resolve org.junit:junit-bom:5.7.2.
            > Could not get resource 'https://plugins.gradle.org/m2/org/junit/junit-bom/5.7.2/junit-bom-5.7.2.module'.
               > Could not GET 'https://plugins.gradle.org/m2/org/junit/junit-bom/5.7.2/junit-bom-5.7.2.module'.
                  > Read timed out
> There are 5 more failures with identical causes.

* Try:
> Run with --stacktrace option to get the stack trace.
> Run with --info or --debug option to get more log output.
> Run with --scan to get full insights.
> Get more help at https://help.gradle.org.

Deprecated Gradle features were used in this build, making it incompatible with Gradle 9.0.

You can use '--warning-mode all' to show the individual deprecation warnings and determine if they come from your own scripts or plugins.

For more on this, please refer to https://docs.gradle.org/8.10.2/userguide/command_line_interface.html#sec:command_line_warnings in the Gradle documentation.

BUILD FAILED in 8m 30s
==> ERROR: A failure occurred in build().
    Aborting...
error: failed to build 'hmcl-3.6.11-1': 
error: packages failed to build: hmcl-3.6.11-1

imlonghao commented on 2024-12-22 12:40 (UTC)

@Firestar 你本地有一个下了一半的缓存,清理一下先

Firestar commented on 2024-12-22 12:38 (UTC)

curl: (33) HTTP server does not seem to support byte ranges. Cannot resume.
==> ERROR: Failure while downloading https://github.com/huanghongxun/HMCL/archive/0a230ef6b5d41ee97cfde369f2a2701e132a95a0.tar.gz
    Aborting...

挂不挂梯子都一样,这是为什么

Soloev commented on 2024-05-17 10:15 (UTC) (edited on 2024-05-17 10:16 (UTC) by Soloev)

RELEASE 3.5.8 Github

imlonghao commented on 2023-10-02 02:13 (UTC)

@cmach_socket 正版登陆需要启动时通过命令行设置 appid 和 appsecret

cmach_socket commented on 2023-10-01 15:49 (UTC)

正版登陆显示: 警告 你正在使用非官方构建的HMCL,请下载官方构建进行微软登录

szdytom commented on 2023-07-28 08:51 (UTC)

图标的清晰度好低啊

zefr0x commented on 2023-01-29 14:21 (UTC) (edited on 2023-01-29 14:23 (UTC) by zefr0x)

The hmcl-launch-script declare it self as a POSIX-compliant script by using the #!/bin/sh shebang, but it uses bashisms (features of bash that are not POSIX-compliant).

Please make the script POSIX-compliant by using:

if [ "$1" != "-p" ]; then

instead of:

if [[ "$1" != "-p" ]]; then

or just use the #!/bin/bash shebang.