Skip to content

Commit 13b371e

Browse files
committed
update
1 parent dba6567 commit 13b371e

File tree

5 files changed

+11
-8
lines changed

5 files changed

+11
-8
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ This mod has been inspired by 'Copy Any Outfit' by scumbumbo. All code has been
202202
# Addendum
203203

204204
## Game compatibility
205-
This mod has been tested with `The Sims 4` 1.107.151, S4CL 3.4, TS4Lib 0.3.20 (2024-05).
205+
This mod has been tested with `The Sims 4` 1.108.329, S4CL 3.5, TS4Lib 0.3.20 (2024-05).
206206
It is expected to be compatible with many upcoming releases of TS4, S4CL and TS4Lib.
207207

208208
## Dependencies

_TS4/mod_documentation/copy_outfits/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ This mod has been inspired by 'Copy Any Outfit' by scumbumbo. All code has been
202202
# Addendum
203203

204204
## Game compatibility
205-
This mod has been tested with `The Sims 4` 1.107.151, S4CL 3.4, TS4Lib 0.3.20 (2024-05).
205+
This mod has been tested with `The Sims 4` 1.108.329, S4CL 3.5, TS4Lib 0.3.20 (2024-05).
206206
It is expected to be compatible with many upcoming releases of TS4, S4CL and TS4Lib.
207207

208208
## Dependencies
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
CopyOutfits v1.9.3 for The Sims 4 v1.107.151 and S4CL v3.4
2-
Created on 2024-07-09
3-
v1.9.3
4-
Add outfits instead replacing .0
1+
CopyOutfits v1.9.4 for The Sims 4 v1.108.329 and S4CL v3.5
2+
Created on 2024-07-25
3+
v1.9.4
4+
Rename MASCARA to EYELASHES (requires TS4T v0.3.24)
5+
Current version should work fine with old and new TS4T library, no need to update.
56

copy_outfits/enums/outfit_groups.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class OutfitGroups(CommonEnum):
3535
SIM_HEAD = SIM_HEAD_DETAILS + SIM_HEAD_HAIR
3636
SIM_HEAD_PAINT = [
3737
BodyType.LIPS_TICK.value, BodyType.EYE_SHADOW.value, BodyType.EYE_LINER.value, BodyType.BLUSH.value,
38-
BodyType.FACEPAINT.value, BodyType.EYEBROWS.value, BodyType.MASCARA.value,
38+
BodyType.FACEPAINT.value, BodyType.EYEBROWS.value, BodyType.EYELASHES.value,
3939
]
4040

4141
SIM_PIERCING = [

copy_outfits/modinfo.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def _file_path(self) -> str:
2828

2929
@property
3030
def _version(self) -> str:
31-
return '1.9.3'
31+
return '1.9.4'
3232

3333

3434
r'''
@@ -43,6 +43,8 @@ def _version(self) -> str:
4343
Load and Save outfits
4444
Read config files / support user defined skins
4545
46+
v1.9.4
47+
Rename MASCARA to EYELASHES (requires TS4T v0.3.24)
4648
v1.9.3
4749
Add outfits instead replacing .0
4850
v1.9.2

0 commit comments

Comments
 (0)