mirror of
https://github.com/soarqin/DSP_Mods.git
synced 2026-02-04 15:12:17 +08:00
UXAssist 1.5.0 and CheatEnabler 2.4.1
This commit is contained in:
@@ -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)):
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
@@ -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的`常规`标签页内
|
||||
|
||||
## 注意事项
|
||||
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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": [
|
||||
|
||||
Reference in New Issue
Block a user