Skip to content

Commit 91b30d8

Browse files
committed
Merge branch 'refs/heads/main' into mc1.19.2/main
# Conflicts: # build.gradle # gradle.properties
2 parents 738f076 + 50a0137 commit 91b30d8

18 files changed

+1236
-93
lines changed

CHANGELOG.md

+28-16
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 0.9.4 - 2025-02-05
9+
10+
### Added
11+
12+
- Stub for 1.19 and 1.18 backports
13+
- Tons of new translations (thanks [Crowdin contributors](https://crowdin.com/project/create-connected-mod/)!)
14+
- Translators have been hard at work supporting multiple languages, so I figured it's time to release them while I
15+
work on the backports
16+
817
## 0.9.3 - 2025-01-01
918

1019
### Fixed
@@ -28,22 +37,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2837
### Fixed
2938

3039
- Ticking block entity crash due to incompatibility with contraption changes in Create 0.5.1g
31-
- This version also attempts to fix worlds that have already been corrupted by the crash, but due to the nature of the crash, multi-block silos may be split into individual silos after recovery
40+
- This version also attempts to fix worlds that have already been corrupted by the crash, but due to the nature of
41+
the crash, multi-block silos may be split into individual silos after recovery
3242
- Incorrect rotation propagation for encased chain cogwheels (again)
3343

3444
## 0.9.0 - 2024-09-16
3545

3646
### Added
3747

3848
- **Inventory Access Port**
39-
- Attaches to an inventory to expand its surface area for other blocks to interact with
49+
- Attaches to an inventory to expand its surface area for other blocks to interact with
4050
- **Inventory Bridge**
41-
- Attaches to two inventories to access both inventories simultaneously
42-
- Accepts filters to control which items are allowed to pass through
51+
- Attaches to two inventories to access both inventories simultaneously
52+
- Accepts filters to control which items are allowed to pass through
4353
- **Fan Sanding/Seething Catalyst**
44-
- Compatibility for bulk sanding/superheating in Create: Dreams & Desires
54+
- Compatibility for bulk sanding/superheating in Create: Dreams & Desires
4555
- **Feature categories**
46-
- Disable features of the same category at once
56+
- Disable features of the same category at once
4757

4858
### Changed
4959

@@ -67,30 +77,32 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6777
### Added
6878

6979
- A new config for Fluid Vessels to limit the maximum boiler level
70-
- Translations for new features in Russian, Japanese and Simplified Chinese (thanks [Crowdin contributors](https://crowdin.com/project/create-connected-mod/reports/top-members)!)
80+
- Translations for new features in Russian, Japanese and Simplified Chinese (
81+
thanks [Crowdin contributors](https://crowdin.com/project/create-connected-mod/reports/top-members)!)
7182

7283
### Fixed
7384

7485
- Boiler gauge not updating on Fluid Vessels
7586
- Heat level for Fluid Vessels is now capped at level 18
7687
- Various issues in Russian translation (thanks VladisCrafter!)
77-
- Text overflow for sequencer instructions
78-
- Incorrect ponder strings
79-
- Inaccurate translations for some entries
88+
- Text overflow for sequencer instructions
89+
- Incorrect ponder strings
90+
- Inaccurate translations for some entries
8091

8192
## 0.8.0 - 2024-05-29
8293

8394
### Added
8495

8596
- **Fluid Vessel - Horizontal Fluid Tank**
86-
- A horizontal variant of the Fluid Tank
87-
- Can be turned into a boiler with reduced efficiency (efficiency is configurable)
88-
- Cycle through multiple window shapes using a Wrench
97+
- A horizontal variant of the Fluid Tank
98+
- Can be turned into a boiler with reduced efficiency (efficiency is configurable)
99+
- Cycle through multiple window shapes using a Wrench
89100
- Small and Large Crank Wheels
90-
- Hand Crank + Cogwheels = Crank Wheels
101+
- Hand Crank + Cogwheels = Crank Wheels
91102
- Fan Freezing Catalyst
92-
- Works with bulk freezing in Create: Garnished and Create: Dreams & Desires
93-
- New translations and new languages (thanks [Crowdin contributors](https://crowdin.com/project/create-connected-mod/reports/top-members)!)
103+
- Works with bulk freezing in Create: Garnished and Create: Dreams & Desires
104+
- New translations and new languages (
105+
thanks [Crowdin contributors](https://crowdin.com/project/create-connected-mod/reports/top-members)!)
94106

95107
### Fixed
96108

build.gradle

+4-4
Original file line numberDiff line numberDiff line change
@@ -225,10 +225,10 @@ dependencies {
225225
// Example mod dependency using a mod jar from ./libs with a flat dir repository
226226
// This maps to ./libs/coolmod-${mc_version}-${coolmod_version}.jar
227227
// The group id is ignored when searching -- in this case, it is "blank"
228-
// implementation fg.deobf("maven.modrinth:create-garnished:${garnished_version}+${garnished_minecraft_version}")
229-
// runtimeOnly fg.deobf("maven.modrinth:create-dreams-and-desires:${dreams_desires_minecraft_version}-${dreams_desires_version}")
230-
implementation fg.deobf("com.copycatsplus:copycats:${copycats_version}+mc.${copycats_minecraft_version}-forge")
231-
runtimeOnly fg.deobf("curse.maven:additional-placements-674852:6057790")
228+
// implementation fg.deobf("maven.modrinth:create-garnished:${garnished_version}")
229+
// runtimeOnly fg.deobf("maven.modrinth:create-dreams-and-desires:${dreams_desires_version}")
230+
implementation fg.deobf("com.copycatsplus:copycats:${copycats_version}")
231+
runtimeOnly fg.deobf("maven.modrinth:additional-placements:${additional_placements_version}")
232232

233233
// For more info:
234234
// http://www.gradle.org/docs/current/userguide/artifact_dependencies_tutorial.html

gradle.properties

+4-5
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,10 @@ registrate_version = MC1.19-1.1.5
4949
jei_minecraft_version = 1.19.2
5050
jei_version = 11.2.0.254
5151

52-
copycats_minecraft_version = 1.19.2
53-
copycats_version = 2.2.0
54-
garnished_minecraft_version = 1.19.2-forge
55-
garnished_version = 1.8
52+
copycats_version = 2.2.0+mc.1.19.2-forge
53+
garnished_version = 1.8+1.19.2-forge
5654
dreams_desires_version = 0.1b.Release-Early-Dev
55+
additional_placements_version=2.2.1-forge,1.19.2
5756

5857
## Mod Properties
5958

@@ -65,7 +64,7 @@ mod_name=Create: Connected
6564
# The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default.
6665
mod_license=GNU Affero General Public License v3.0
6766
# The mod version. See https://semver.org/
68-
mod_version=0.9.3-mc1.19.2
67+
mod_version=0.9.4-mc1.19.2
6968
# The group ID for the mod. It is only important when publishing as an artifact to a Maven repository.
7069
# This should match the base package used for the mod sources.
7170
# See https://maven.apache.org/guides/mini/guide-naming-conventions.html

src/main/resources/assets/create_connected/lang/cs_cz.json

+40
Original file line numberDiff line numberDiff line change
@@ -61,24 +61,38 @@
6161
"block.create_connected.copycat_wall.tooltip.behaviour1": "Pokud je to možné, použije _držený předmět_ jako svůj _materiál_. Dalším kliknutím_ se změní _orientace_ nebo stav _napájení_. Pro _resetování_ materiálu použijte _montážní klíč_.",
6262
"block.create_connected.copycat_wall.tooltip.condition1": "Při pravém kliknutí",
6363
"block.create_connected.copycat_wall.tooltip.summary": "_Převede_ jakýkoliv _plný blok_ na dekorativní zídku.",
64+
"block.create_connected.crank_wheel": "Klikové kolo",
65+
"block.create_connected.creative_fluid_vessel": "Tvořivá nádoba na tekutiny",
6466
"block.create_connected.empty_fan_catalyst": "Prázdný katalyzátor větráku",
6567
"block.create_connected.empty_fan_catalyst.tooltip.summary": "_Vložte_ materiál pro katalyzaci _ventilátoru_.",
6668
"block.create_connected.encased_chain_cogwheel": "Zapouzdřené řetězové ozubené kolečko",
6769
"block.create_connected.fan_blasting_catalyst": "Tavný katalyzátor větráku",
6870
"block.create_connected.fan_blasting_catalyst.tooltip.summary": "Vyhrazené zařízení pro _hromadné tavení_. Obsah katalyzátoru neinteraguje s prostředím.",
71+
"block.create_connected.fan_freezing_catalyst": "Zmrazovací katalyzátor větráku",
72+
"block.create_connected.fan_freezing_catalyst.tooltip.summary": "Vyhrazené zařízení pro _hromadné mrazení_ pro kompatibilní mody. Obsah katalyzátoru neinteraguje s prostředím.",
6973
"block.create_connected.fan_haunting_catalyst": "Posedlý katalyzátor větráku",
7074
"block.create_connected.fan_haunting_catalyst.tooltip.summary": "Vyhrazené zařízení pro _hromadné posednutí_. Obsah katalyzátoru neinteraguje s prostředím.",
75+
"block.create_connected.fan_sanding_catalyst": "Pískovací katalyzátor větráku",
76+
"block.create_connected.fan_sanding_catalyst.tooltip.summary": "Vyhrazené zařízení pro _hromadné pískování_ pro Create: Sny a Touhy. Obsah katalyzátoru neinteraguje s prostředím.",
77+
"block.create_connected.fan_seething_catalyst": "Žhavý katalyzátor větráku",
78+
"block.create_connected.fan_seething_catalyst.tooltip.summary": "Vyhrazené zařízení pro _hromadné žhavení_ pro Create: Sny a Touhy. Obsah katalyzátoru neinteraguje s prostředím.",
7179
"block.create_connected.fan_smoking_catalyst": "Uzený katalyzátor větráku",
7280
"block.create_connected.fan_smoking_catalyst.tooltip.summary": "Vyhrazené zařízení pro _hromadné uzení_. Obsah katalyzátoru neinteraguje s prostředím.",
7381
"block.create_connected.fan_splashing_catalyst": "Prací katalyzátor větráku",
7482
"block.create_connected.fan_splashing_catalyst.tooltip.summary": "Vyhrazené zařízení pro _hromadné praní_. Obsah katalyzátoru neinteraguje s prostředím.",
83+
"block.create_connected.fluid_vessel": "Nádoba na tekutiny",
84+
"block.create_connected.fluid_vessel.tooltip.behaviour1": "_Cyklovat_ tvary oken.",
7585
"block.create_connected.fluid_vessel.tooltip.condition1": "Při pravém kliknutí pomocí montážního klíče",
86+
"block.create_connected.fluid_vessel.tooltip.summary": "_Vodorovná_ nádrž. Méně učinná, pokud je použita jako kotel.",
7687
"block.create_connected.freewheel_clutch": "Volnoběžná spojka",
7788
"block.create_connected.freewheel_clutch.tooltip.summary": "Spojka, která je _spřáhnuta_ pouze tehdy, pokud se vstup otáčí ve _správném směru_ podle konfigurace.",
89+
"block.create_connected.inventory_access_port": "Přístupový bod k inventáři",
90+
"block.create_connected.inventory_bridge": "Inventářový most",
7891
"block.create_connected.inverted_clutch": "Obrácená spojka",
7992
"block.create_connected.inverted_gearshift": "Obrácená řadící páka",
8093
"block.create_connected.item_silo": "Itemové silo",
8194
"block.create_connected.item_silo.tooltip.summary": "_Svislý_ itemový trezor.",
95+
"block.create_connected.large_crank_wheel": "Velké klikové kolo",
8296
"block.create_connected.linked_acacia_button": "Propojené akáciové tlačítko",
8397
"block.create_connected.linked_analog_lever": "Propojená analogová páka",
8498
"block.create_connected.linked_bamboo_button": "Propojené bambusové tlačítko",
@@ -150,6 +164,32 @@
150164
"create_connected.ponder.chain_cogwheel_relay.text_3": "Všechny takto spojené hřídele se budou otáčet stejným směrem",
151165
"create_connected.ponder.chain_cogwheel_relay.text_4": "Ozubená kola se mohou připojit k řetězovým ozubeným kolům kdekoli v řadě",
152166
"create_connected.ponder.chain_cogwheel_relay.text_5": "Kteroukoli část řady lze otočit o 90 stupňů",
167+
"create_connected.ponder.crank_wheel.header": "Generování točivého momentu pomocí klikových kol",
168+
"create_connected.ponder.crank_wheel.text_1": "Kliková kola mohou hráči používat k ručnímu aplikování točivého momentu",
169+
"create_connected.ponder.crank_wheel.text_2": "Podržením pravého tlačítka budete otáčet proti směru hodinových ručiček",
170+
"create_connected.ponder.crank_wheel.text_3": "Plížením a podržením pravého tlačítka budete otáčet po směru hodinových ručiček",
171+
"create_connected.ponder.inventory_access_port.header": "Připojování k inventářům pomocí přístupového bodu k inventáři",
172+
"create_connected.ponder.inventory_access_port.text_1": "Přístup k inventáři může být ve stísněných prostorách obtížný",
173+
"create_connected.ponder.inventory_access_port.text_2": "Přístupové body k inventářům pomáhají tím, že rozšiřují inventáře",
174+
"create_connected.ponder.inventory_access_port.text_3": "Několik přístupových bodů může být připojeno k jednomu inventáři",
175+
"create_connected.ponder.inventory_access_port.text_4": "Přístupové body neposkytují další úložný prostor",
176+
"create_connected.ponder.inventory_access_port.text_5": "Komponenty připojené k přístupovým bodům však mohou přistupovat k inventářům...",
177+
"create_connected.ponder.inventory_access_port.text_6": "...jako by byly přímo propojeny",
178+
"create_connected.ponder.inventory_access_port.text_7": "Přístupové body nelze spojit do korálku",
179+
"create_connected.ponder.inventory_access_port.text_8": "Lze je však vypnout redstonovým signálem",
180+
"create_connected.ponder.inventory_bridge.header": "Propojování dvou inventářů pomocí inventářového mostu",
181+
"create_connected.ponder.inventory_bridge.text_1": "Inventářový most poskytuje rozhraní, kterým lze přistupovat ke dvěma inventářům zároveň",
182+
"create_connected.ponder.inventory_bridge.text_2": "Neposkytuje další úložný prostor",
183+
"create_connected.ponder.inventory_bridge.text_3": "Pouze komponenty připojené ke samotnému mostu mají přístup k oběma inventářům",
184+
"create_connected.ponder.inventory_bridge.text_4": "Více mostů může být připojeno ke stejné skupině inventářů",
185+
"create_connected.ponder.inventory_bridge.text_5": "Mosty však nelze spojit do korálku",
186+
"create_connected.ponder.inventory_bridge.text_6": "Použitím redstonového signálu most vypnete",
187+
"create_connected.ponder.inventory_bridge_filter.header": "Filtrování předmětů pomocí inventářového mostu",
188+
"create_connected.ponder.inventory_bridge_filter.text_1": "Filtrovací sloty na inventářovém mostu určují, do kterého inventáře mají vložené předměty přejít",
189+
"create_connected.ponder.inventory_bridge_filter.text_2": "Předměty, které neodpovídají žádnému z filtrů, nelze do mostu vložit",
190+
"create_connected.ponder.inventory_bridge_filter.text_3": "Neprázdné filtry mají přednost před prázdnými...",
191+
"create_connected.ponder.inventory_bridge_filter.text_4": "...a brání tomu, aby se shodné předměty dostaly na nefiltrovanou stranu",
192+
"create_connected.ponder.inventory_bridge_filter.text_5": "Filtry jsou při extrakci předmětů ze zásob ignorovány",
153193
"create_connected.ponder.inverted_clutch.header": "Ovládání točivého momentu pomocí obrácené spojky",
154194
"create_connected.ponder.inverted_clutch.text_1": "Obrácené spojky nebudou přenášet rotaci...",
155195
"create_connected.ponder.inverted_clutch.text_2": "...pokud nejsou poháněny redstonem",

0 commit comments

Comments
 (0)