Skip to content
This repository was archived by the owner on Feb 23, 2026. It is now read-only.

Commit 330c656

Browse files
committed
[XCELL]
Fix fomod
1 parent f7a1892 commit 330c656

7 files changed

Lines changed: 30 additions & 4 deletions

File tree

X-Cell-FO4.vcxproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@
103103
</ItemGroup>
104104
<ItemGroup>
105105
<None Include="exports.def" />
106+
<None Include="version\fomod_info.tmp" />
106107
<None Include="version\resource_version.aps" />
107108
<None Include="version\resource_version2.tmp" />
108109
<None Include="version\scripts.ps1" />

X-Cell-FO4.vcxproj.filters

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -289,6 +289,9 @@
289289
<None Include="exports.def">
290290
<Filter>Файлы ресурсов</Filter>
291291
</None>
292+
<None Include="version\fomod_info.tmp">
293+
<Filter>version</Filter>
294+
</None>
292295
</ItemGroup>
293296
<ItemGroup>
294297
<ResourceCompile Include="version\resource_version.rc">

fomod/info.xml

20 Bytes
Binary file not shown.

version/build_version.txt

0 Bytes
Binary file not shown.

version/fomod_info.tmp

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<fomod>
2+
<Name>X-Cell</Name>
3+
<Author>perchik71</Author>
4+
<Version>2.1-b<BUILD></Version>
5+
<Website>https://www.nexusmods.com/fallout4/mods/84214</Website>
6+
<Description>This mod is a medicine for the game. To improve optimization and fix bugs.
7+
8+
1) Improves threads.
9+
2) Memory manager replacement, memory leak has been eliminated.
10+
3) Working facegen, there are no more freezes related to faces, facegen generation is required for new characters, if the Is CharGen Face Present/Simple Actor flags is set or IsChildPlayer keyword, facegen load will be skipped and generated in runtime.
11+
4) Black loading screen.
12+
5) Small optimizations for working with files.
13+
6) New limit for archives by type GNRL.
14+
7) Some small patches that were not implemented in Buffout 4 NG, but there in Buffout 4.</Description>
15+
<Groups>
16+
<element>Performance</element>
17+
</Groups>
18+
</fomod>

version/resource_version2.h

0 Bytes
Binary file not shown.

version/scripts.ps1

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
1-
[int]$buildverint = Get-Content -Path ".\Version\build_version.txt"
2-
$buildverint+1 | out-file -FilePath ".\Version\build_version.txt" -Force
1+
[int]$buildverint = Get-Content -Path ".\version\build_version.txt"
2+
$buildverint+1 | out-file -FilePath ".\version\build_version.txt" -Force
33

4-
$verfile = Get-Content -Path ".\Version\resource_version2.tmp"
4+
$verfile = Get-Content -Path ".\version\resource_version2.tmp"
55
$verfile = $verfile -Replace "<BUILD>", $buildverint
6-
$verfile | out-file -FilePath ".\Version\resource_version2.h" -Force
6+
$verfile | out-file -FilePath ".\version\resource_version2.h" -Force
7+
8+
$verfile = Get-Content -Path ".\version\fomod_info.tmp"
9+
$verfile = $verfile -Replace "<BUILD>", $buildverint
10+
$verfile | out-file -FilePath ".\fomod\info.xml" -Force

0 commit comments

Comments
 (0)