Ler o Nome do Ficheiro Descarregado

Nota

A nossa política de versionamento foi atualizada em outubro de 2018. A começar com a SpongeAPI 7.1, aplicam-se as informações seguintes. Vê as legacy-version para informações sobre versões antigas.

Quando descarregas ficheiros, o nome do ficheiro contém informações importantes. As secções seguintes mostram as informações fornecidas.

SpongeForge

O formato do nome do ficheiro descarregado do SpongeForge é:

spongeforge-<MCVersion>-<ForgeBuild>-<APIMajor>.<LatestAPIMinorRelease>.<RecommendedVersion(-RC<BuildNumber>)>.jar

MCVersion

A versão de Minecraft. Só os clientes que forem compatíveis com esta versão podem ligar-se.

ForgeBuild

A build de Forge em que o SpongeForge é feito e com a qual se garante compatibilidade

APIMajor

A versão principal da SpongeAPI implementada por este ficheiro (estando X em versionamento semântico).

LatestAPI MinorRelease

A versão específica da SpongeAPI implementada por este ficheiro (estando Y em versionamento semântico).

Recommended Version

A versão publicada da implementação quando não seguida de -RC<BuildNumber> (estando Z em versionamento semântico).

-RC <BuildNumber>

The build number in development for the next recommended release. When a build number is present, the RecommendedVersion has not been released yet.

The Forge Build in the filename specifies the version of Forge this version of SpongeForge used during development and testing. The two versions are guaranteed to work without any issues. We tend to use the latest Recommended Build of Forge for this purpose.

Nota

Normal Forge mods can usually run on any build of Forge for a given Minecraft version (e.g. 1.12.2) without any problem. However, SpongeForge needs to access, among other things, internal parts of Forge, which most mods shouldn’t be touching, let alone modifying as Sponge does. Since Forge is free to change their internal code whenever they want to, its normal guarantee of backwards-compatibility doesn’t apply to SpongeForge. Feel free to use more recent versions of Forge than the one used for SpongeForge, but we can’t always guarantee compatibility.

Aviso

Ao investigar problemas com crashes, podes experimentar usar versões do Forge mais novas do que a listada no Jar SpongeForge. No entanto, é recomendado que verifiques também a versão correspondente, por forma a garantir que o teu problema não está relacionado com versões incompatíveis. Apesar de não haver qualquer garantia de compatibilidade, por favor informa-nos, no issue tracker, de qualquer problema, para que o SpongeForge possa ser atualizado.

Exemplos

SpongeForge Jar files will always follow this naming scheme to allow you to easily identify compatibility.

For example, the file name spongeforge-1.12.2-2768-7.1.4.jar is compatible with Minecraft version 1.12.2, was built with Forge 14.23.5.2768 (Build 2768), guarantees compatibility with SpongeAPI 7.1.0, is a recommended version, and is the 4 th release of SpongeForge with this API.

Another example is the file name spongeforge-1.12.2-2768-7.1.5-RC3505.jar. This file is compatible with Minecraft version 1.12.2, was built with Forge 14.23.5.2768 (Build 2768), guarantees compatibility with SpongeAPI 7.1.0, is not a recommended version, and is build number 3505 in development, which will be the 5 th release of SpongeForge once this version is released.

SpongeVanilla

The information for SpongeVanilla is identical to SpongeForge except that SpongeVanilla does not contain a Forge build number. So, the above examples of SpongeForge jar files will look like the following for SpongeVanilla:

spongevanilla-1.12.2-7.1.4.jar and spongevanilla-1.12.2-7.1.5-RC148.jar

SpongeAPI

The format of the filename is:

spongeapi-<APIMajor>.<LatestAPIMinorRelease>.0-shaded.jar

OR

spongeapi-<APIMajor>.<LatestAPIMinorRelease>.0-<Date>.<Time>-<BuildNumber>-shaded.jar

OR

spongeapi-<APIMajor>.<LatestAPIMinorRelease>.0-SNAPSHOT.jar

APIMajor

A versão principal da SpongeAPI implementada por este ficheiro (estando X em versionamento semântico).

LatestAPI MinorRelease

A versão específica da SpongeAPI implementada por este ficheiro (estando Y em versionamento semântico).

Date

The date when the build job ran.

Time

The time when the build job ran.

<BuildNumber>

The build number of Sponge. Supply this number when reporting bugs or seeking support.

Nota

The first format without the build information is the Release and Recommended Build format (e.g., spongeapi-7.1.0-shaded.jar).

The second format with the build information is the Latest format when the file is downloaded with a web browser. This version is still in development (e.g., spongeapi-7.2.0-20190224.183500-15-shaded.jar).

The third format without the build information is the Latest format when the file is downloaded by Gradle or Maven or is created by the build process. This version is still in development (e.g., spongeapi-7.2.0-SNAPSHOT.jar).

See our build system page for an explanation of the -shaded label.