1
0
mirror of https://github.com/soarqin/DSP_Mods.git synced 2026-02-04 13:52:17 +08:00

UXAssist 1.5.0 and CheatEnabler 2.4.1

This commit is contained in:
2026-01-23 16:23:10 +08:00
parent 256faeee19
commit 9787636d08
10 changed files with 51 additions and 11 deletions

View File

@@ -3,6 +3,12 @@
## Changlog
* 2.4.1
* New feature: `Remove all frames on Dyson Sphere`
* Can save rockets with very little power generation impact.
* Will keep nodes and shells and does not affect solar sails' absorption.
* `Terraform without enough soil piles`: Working for blueprint paste and burying Dark Fog Core Driller now.
* `Belt signal item generation`: Fix mod compatibility by resolving recursive recipes.
* 2.4.0
* Support game version 0.10.33
* `Generate illegal dyson shell`: This function is open to all users now, enabling certain config entry is not needed any more.
@@ -165,6 +171,12 @@
## 更新日志
* 2.4.1
* 新增功能:`移除戴森球上的所有框架`
* 可以节省火箭,且几乎不影响发电效率
* 会保留节点和壳面,不影响太阳帆的吸收
* `沙土不够时依然可以整改地形`:现在支持蓝图粘贴和掩埋黑雾核心钻机
* `传送带信号物品生成`修复对递归配方的支持兼容一些mod
* 2.4.0
* 支持游戏版本 0.10.33
* `生成仙术戴森壳`:此功能现在对所有用户开放,不再需要启用特定的配置项。

View File

@@ -5,7 +5,7 @@
<TargetFramework>net472</TargetFramework>
<BepInExPluginGuid>org.soardev.cheatenabler</BepInExPluginGuid>
<Description>DSP MOD - CheatEnabler</Description>
<Version>2.4.0</Version>
<Version>2.4.1</Version>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<LangVersion>latest</LangVersion>
<PackageId>CheatEnabler</PackageId>

View File

@@ -49,6 +49,7 @@
* Eject anyway
* Unlock Dyson Sphere max orbit radius
* Complete Dyson Sphere Shells instantly
* Remove all frames on Dyson Sphere
* Buttons for creating illegal Dyson Sphere Shells, you must enable `IllegalDysonShellFunctionsEnabled` of `DysonSphere` section in config to see the last 2 buttons.
* Generate an illegal dyson shell
* Keep max production shells and remove others
@@ -123,6 +124,7 @@
* 全球弹射
* 解锁戴森球最大轨道半径
* 立即完成戴森壳建造
* 移除戴森球上的所有框架
* 用于制作仙术戴森壳的按钮,你必须在设置文件里开启`DysonSphere`分类的`IllegalDysonShellFunctionsEnabled`才能看到后面两个按钮
* 生成单层仙术戴森壳
* 保留发电量最高的戴森壳并移除其他戴森壳

View File

@@ -1,6 +1,6 @@
{
"name": "CheatEnabler",
"version_number": "2.4.0",
"version_number": "2.4.1",
"website_url": "https://github.com/soarqin/DSP_Mods/tree/master/CheatEnabler",
"description": "Add various cheat functions while disabling abnormal determinants / 添加一些作弊功能,同时屏蔽异常检测",
"dependencies": [

View File

@@ -3,6 +3,15 @@
## Changlog
* 1.5.0
* Support game version 0.10.34
* New features:
* `Show top players in milkyway`: The button is available on top-left corner of Milkyway View
* `Show recent milkyway upload results`: The button is on UXAssist `General` tab.
* `Night Sunlight`: Fix bugs that sunlight angle is not updated after loading a save.
* `Enhanced control for logistic storage capacities`: Working for Logistics Control Panel now.
* `Protect veins from exhaustion`: Fix a minor bug.
* `Re-intialize planet`: Improve stability and fix some bugs.
* 1.4.5
* New feature: `Ctrl+Shift+Click to pick items from whole belts`, with 2 suboptions: `Include branches of belts` and `Include connected inserters`
* Patch [BlueprintTweaks](https://thunderstore.io/c/dyson-sphere-program/p/kremnev8/BlueprintTweaks/) temporarily to fix `Drag Remove` functions (And wait for limoka to merge the [Pull Request](https://github.com/limoka/DSP-Mods/pull/133)):
@@ -356,6 +365,15 @@
## 更新日志
* 1.5.0
* 支持游戏版本 0.10.34
* 新功能:
* `显示银河系发电量排行`:按钮位于银河视图左上角
* `显示最近银河系上传结果`按钮在UXAssist的`常规`标签页内
* `夜间日光灯`:修复加载存档后日光角度没有更新的问题
* `物流塔存储数量限制控制改进`:现在可用于物流控制面板
* `保护矿脉不会耗尽`:修复了一个小问题
* `初始化本行星`提升稳定性并修复部分Bug
* 1.4.5
* 新功能:`按住Ctrl+Shift点击从整条传送带抓取物品`,包含两个子选项:`包含传送带分支``包含连接的分拣器`
* 临时修复 [BlueprintTweaks](https://thunderstore.io/c/dyson-sphere-program/p/kremnev8/BlueprintTweaks/) 的 `拖拽拆除` 功能(等待 limoka 合并 [Pull Request](https://github.com/limoka/DSP-Mods/pull/133)

View File

@@ -1051,16 +1051,15 @@ public static class LogisticsPatch
{
stationTip.ResetStationTip();
stationTip.gameObject.SetActive(false);
StationTipsRecycle[_stationTipsRecycleCount++] = stationTip;
StationTipsRecycle[_stationTipsRecycleCount] = stationTip;
_stationTipsRecycleCount++;
}
else
{
Object.Destroy(stationTip);
}
}
Array.Resize(ref _stationTips, 16);
Array.Clear(_stationTips, 0, _stationTips.Length);
_stationTips = new StationTip[16];
}
private static void RecycleStationTip(int index)
@@ -1084,7 +1083,8 @@ public static class LogisticsPatch
{
if (_stationTipsRecycleCount > 0)
{
var result = StationTipsRecycle[--_stationTipsRecycleCount];
_stationTipsRecycleCount--;
var result = StationTipsRecycle[_stationTipsRecycleCount];
StationTipsRecycle[_stationTipsRecycleCount] = null;
return result;
}

View File

@@ -135,6 +135,10 @@
* Starmap view:
* Add a star name filter, you can filter displayed star names by ores or planet types now.
* Add a dropdown box to show all stars' distance and/or planet count.
* Show top players in milkyway
* The button is available on top-left corner of Milkyway View
* Show recent milkyway upload results
* The button is on UXAssist `General` tab.
## Notes
@@ -292,7 +296,11 @@
* 星图:
* 添加星系名过滤器,现在可以按矿物或行星类型过滤显示的星系名
* 添加了一个下拉框用以切换显示所有星系的距离和/或行星数量
* 由于缺乏维护,整合内置了[Planet Vein Untilization](https://thunderstore.io/c/dyson-sphere-program/p/testpushpleaseignore/Planet_Vein_Utilization/),并修复了一些小错误。
* 由于原MOD缺乏维护,整合内置了[Planet Vein Untilization](https://thunderstore.io/c/dyson-sphere-program/p/testpushpleaseignore/Planet_Vein_Utilization/),并修复了一些小错误。
* 显示银河系发电量排行
* 按钮位于银河视图左上角
* 显示最近银河系上传结果
* 按钮在UXAssist的`常规`标签页内
## 注意事项

View File

@@ -76,7 +76,7 @@ public class MyComboBox : MonoBehaviour
private void UpdateComboBoxPosition()
{
var rtrans = (RectTransform)_comboBox.transform;
_rectTrans.sizeDelta = new Vector2(rtrans.localPosition.x + 5f + rtrans.sizeDelta.x, _rectTrans.sizeDelta.y);
_rectTrans.sizeDelta = new Vector2(rtrans.sizeDelta.x, _rectTrans.sizeDelta.y);
}
public void SetFontSize(int size)

View File

@@ -4,7 +4,7 @@
<TargetFramework>net472</TargetFramework>
<BepInExPluginGuid>org.soardev.uxassist</BepInExPluginGuid>
<Description>DSP MOD - UXAssist</Description>
<Version>1.4.5</Version>
<Version>1.5.0</Version>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<LangVersion>latest</LangVersion>
<PackageId>UXAssist</PackageId>

View File

@@ -1,6 +1,6 @@
{
"name": "UXAssist",
"version_number": "1.4.5",
"version_number": "1.5.0",
"website_url": "https://github.com/soarqin/DSP_Mods/tree/master/UXAssist",
"description": "Some functions and patches for better user experience / 一些提升用户体验的功能和补丁",
"dependencies": [