Skip to content
This repository was archived by the owner on Mar 29, 2025. It is now read-only.

Commit 9ca9a2b

Browse files
authored
Merge pull request #90 from refinedmods/develop
v0.8.2
2 parents 8020a32 + 01be60d commit 9ca9a2b

File tree

10 files changed

+47
-17
lines changed

10 files changed

+47
-17
lines changed

.github/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ The build pipeline triggers when a commit is pushed to a branch or pull request.
3939

4040
The release pipeline triggers when a tag is pushed. This will run all the steps that our build pipeline does.
4141

42-
After that succeeds, it will publish to GitHub packages.
42+
After that succeeds, it will publish to GitHub packages and CreeperHost Maven repository.
4343

4444
The "Unreleased" section in `CHANGELOG.md` is parsed and a GitHub release is created with the changelog body and
4545
relevant artifacts.

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,14 @@ body:
3131
- type: dropdown
3232
id: minecraft
3333
attributes:
34-
label: What Minecraft version is this happening on?
35-
options:
36-
- Minecraft 1.18.1
37-
- Minecraft 1.16.5
34+
label: What Minecraft version is this happening on?
35+
description: |
36+
If your Minecraft version isn't listed here, it means that it's no longer supported. In that case, don't create an issue.
37+
options:
38+
- Minecraft 1.18.2
39+
- Minecraft 1.16.5
40+
validations:
41+
required: true
3842
- type: input
3943
id: forge
4044
attributes:

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
blank_issues_enabled: true
1+
blank_issues_enabled: false
22
contact_links:
33
- name: Discord Community Support
44
url: https://discordapp.com/invite/VYzsydb

.github/workflows/release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ jobs:
4242
run: ./gradlew publish
4343
env:
4444
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
45+
CREEPERHOST_MAVEN_USERNAME: ${{ secrets.CREEPERHOST_MAVEN_USERNAME }}
46+
CREEPERHOST_MAVEN_TOKEN: ${{ secrets.CREEPERHOST_MAVEN_TOKEN }}
4547
RELEASE: ${{ steps.tagName.outputs.tag }}
4648
- name: Retrieve changelog
4749
id: changelog_reader

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,16 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
99

1010
### Added
1111

12+
- French translation by [@dracnis](https://github.com/dracnis).
13+
14+
### Changed
15+
16+
- Ported to Minecraft 1.18.2.
17+
18+
## [v0.8.1] - 2021-12-28
19+
20+
### Added
21+
1222
- Added support for Refined Storage v1.10.0-beta.4.
1323
- Added Korean translation by [@mindy15963](https://github.com/mindy15963).
1424

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# The MIT License (MIT)
22

3-
Copyright © 2017 - 2021 Refined Mods
3+
Copyright © 2017 - 2022 Refined Mods
44

55
Permission is hereby granted, free of charge, to any person
66
obtaining a copy of this software and associated documentation

build.gradle

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ repositories {
2323
*/
2424
credentials {
2525
username = "anything"
26-
password = "\u0067hp_pnP5hVDYXXhhXwe21IEkrUzGjquUJL0xjLzb"
26+
password = "\u0067hp_oGjcDFCn8jeTzIj4Ke9pLoEVtpnZMP4VQgaX"
2727
}
2828
}
2929
}
@@ -34,7 +34,7 @@ apply plugin: 'maven-publish'
3434

3535
group = 'com.refinedmods'
3636
archivesBaseName = 'refinedstorageaddons'
37-
version = '0.8.1'
37+
version = '0.8.2'
3838

3939
if (System.getenv('GITHUB_SHA') != null) {
4040
version += '+' + System.getenv('GITHUB_SHA').substring(0, 7)
@@ -47,7 +47,7 @@ if (System.getenv('RELEASE') != null) {
4747
java.toolchain.languageVersion = JavaLanguageVersion.of(17)
4848

4949
minecraft {
50-
mappings channel: 'official', version: '1.18.1'
50+
mappings channel: 'official', version: '1.18.2'
5151

5252
runs {
5353
client {
@@ -94,9 +94,9 @@ processResources {
9494
}
9595

9696
dependencies {
97-
minecraft 'net.minecraftforge:forge:1.18.1-39.0.0'
98-
compileOnly "com.refinedmods:refinedstorage:1.10.0-beta.4"
99-
runtimeOnly fg.deobf("com.refinedmods:refinedstorage:1.10.0-beta.4") {
97+
minecraft 'net.minecraftforge:forge:1.18.2-40.0.32'
98+
compileOnly "com.refinedmods:refinedstorage:1.10.2"
99+
runtimeOnly fg.deobf("com.refinedmods:refinedstorage:1.10.2") {
100100
transitive false
101101
}
102102
}
@@ -123,7 +123,7 @@ if (System.getenv("CURSEFORGE_TOKEN") != null) {
123123
changelog = System.getenv("CHANGELOG")
124124
changelogType = 'markdown'
125125
releaseType = project.version.toString().contains('beta') ? 'beta' : (project.version.toString().contains('alpha') ? 'alpha' : 'release')
126-
addGameVersion "1.18.1"
126+
addGameVersion "1.18.2"
127127
mainArtifact(jar) {
128128
displayName = "v$project.version"
129129
}
@@ -143,6 +143,14 @@ publishing {
143143
password = System.getenv("GITHUB_TOKEN")
144144
}
145145
}
146+
maven {
147+
name = "CreeperHost"
148+
url = uri("https://maven.creeperhost.net/release")
149+
credentials {
150+
username = System.getenv("CREEPERHOST_MAVEN_USERNAME")
151+
password = System.getenv("CREEPERHOST_MAVEN_TOKEN")
152+
}
153+
}
146154
}
147155
publications {
148156
gpr(MavenPublication) {

src/main/resources/META-INF/mods.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
modLoader = "javafml"
2-
loaderVersion = "[39,)"
2+
loaderVersion = "[40,)"
33
issueTrackerURL = "https://github.com/refinedmods/refinedstorageaddons"
44
license = "MIT"
55
[[mods]]
@@ -13,7 +13,7 @@ An addon mod for Refined Storage
1313
'''
1414
[[dependencies.refinedstorageaddons]]
1515
modId = "refinedstorage"
16-
versionRange = "[1.10.0-beta,)"
16+
versionRange = "[1.10.2,)"
1717
mandatory = true
1818
ordering = "AFTER"
1919
side = "BOTH"
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"itemGroup.refinedstorageaddons": "Refined Storage Addons",
3+
"item.refinedstorageaddons.wireless_crafting_grid": "Grille d'artisanat sans fil",
4+
"item.refinedstorageaddons.creative_wireless_crafting_grid": "Grille d'artisanat créative sans fil",
5+
"key.refinedstorageaddons.openWirelessCraftingGrid": "Ouvrir la grille d'artisanat sans fil"
6+
}

src/main/resources/pack.mcmeta

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"pack": {
33
"description": "Refined Storage Addons resources",
4-
"pack_format": 8
4+
"pack_format": 9
55
}
66
}

0 commit comments

Comments
 (0)