File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1111 <key >CFBundleIdentifier </key >
1212 <string >com.maaxyz.maapipelineeditor </string >
1313 <key >CFBundleVersion </key >
14- <string >1.6.0 </string >
14+ <string >1.6.1 </string >
1515 <key >CFBundleGetInfoString </key >
1616 <string >MAA Pipeline 可视化编辑器 </string >
1717 <key >CFBundleShortVersionString </key >
18- <string >1.6.0 </string >
18+ <string >1.6.1 </string >
1919 <key >CFBundleIconFile </key >
2020 <string >iconfile </string >
2121 <key >LSMinimumSystemVersion </key >
Original file line number Diff line number Diff line change 33 <assemblyIdentity
44 type =" win32"
55 name =" MaaPipelineEditor"
6- version =" 1.6.0 "
6+ version =" 1.6.1 "
77 processorArchitecture =" *" />
88 <dependency >
99 <dependentAssembly >
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ var icon []byte
2121//go:embed all:frontend/dist
2222var assets embed.FS
2323
24- var version = "1.6.0 "
24+ var version = "1.6.1 "
2525
2626func main () {
2727 // 检测是否为开发模式
Original file line number Diff line number Diff line change 1010 "info" : {
1111 "companyName" : " MaaXYZ" ,
1212 "productName" : " MaaPipelineEditor" ,
13- "productVersion" : " 1.6.0 " ,
13+ "productVersion" : " 1.6.1 " ,
1414 "copyright" : " Copyright 2024 MaaXYZ" ,
1515 "comments" : " MAA Pipeline 可视化编辑器"
1616 }
Original file line number Diff line number Diff line change 1818 "lint" : " eslint ." ,
1919 "preview" : " vite preview" ,
2020 "reset" : " git reset --soft HEAD~1" ,
21- "release" : " git tag -a v1.6.0 -m \" v1.6.0 \" && git push origin v1.6.0 " ,
22- "retag" : " git tag -d v1.6.0 "
21+ "release" : " git tag -a v1.6.1 -m \" v1.6.1 \" && git push origin v1.6.1 " ,
22+ "retag" : " git tag -d v1.6.1 "
2323 },
2424 "dependencies" : {
2525 "@ant-design/icons" : " 6" ,
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ import { type IconNames } from "../../iconfonts";
66import { useFlowStore } from "../../../stores/flow" ;
77import { useFileStore } from "../../../stores/fileStore" ;
88import { LayoutHelper , AlignmentEnum } from "../../../core/layout" ;
9+ import { rerouteEdgesToNearestReplica } from "../../../core/parser/edgeRerouter" ;
910import { saveNodesToImage } from "../../../utils/ui/snapper" ;
1011import { useEmbedMode } from "../../../hooks/useEmbedMode" ;
1112import { sendToParent } from "../../../utils/embedBridge" ;
@@ -105,6 +106,9 @@ function LayoutPanel() {
105106 iconName : "icon-connecting_line" ,
106107 iconSize : 24 ,
107108 onClick : ( ) => {
109+ const { nodes, edges, setEdges } = useFlowStore . getState ( ) ;
110+ const rerouted = rerouteEdgesToNearestReplica ( nodes , edges ) ;
111+ setEdges ( rerouted ) ;
108112 resetEdgeControls ( ) ;
109113 message . success ( "连接线路径已还原" ) ;
110114 } ,
Original file line number Diff line number Diff line change @@ -110,6 +110,15 @@ export const updateLogs: UpdateLogItem[] = [
110110 // ],
111111 // },
112112 // },
113+ {
114+ version : "1.6.1" ,
115+ date : "2026-6-" ,
116+ type : "feature" ,
117+ updates : {
118+ features : [ "" ] ,
119+ perfs : [ "还原连接线路径时会自动进行 external 节点的就近连接重计算" ] ,
120+ } ,
121+ } ,
113122 {
114123 version : "1.6.0" ,
115124 date : "2026-5-31" ,
Original file line number Diff line number Diff line change @@ -6,8 +6,8 @@ import { encryptApiKey } from "../utils/ai/crypto";
66/**固有配置 */
77export const globalConfig = {
88 dev : true ,
9- version : `1.6.0 ` ,
10- betaIteration : 5 ,
9+ version : `1.6.1 ` ,
10+ betaIteration : 1 ,
1111 mfwVersion : "5.10.5" ,
1212 protocolVersion : "1.0.4" ,
1313} ;
You can’t perform that action at this time.
0 commit comments