This repository was archived by the owner on Mar 3, 2025. It is now read-only.
File tree 2 files changed +8
-8
lines changed 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 24
24
"panelId" : " main_panel"
25
25
}
26
26
],
27
- "version" : " 3.0.0 "
27
+ "version" : " 3.0.1 "
28
28
}
Original file line number Diff line number Diff line change @@ -22,9 +22,9 @@ function show(event) {
22
22
panel . innerHTML =
23
23
build_css ( ) +
24
24
outputUi ( ) + '<hr>' +
25
+ projectFolderUi ( ) + '<hr>' +
25
26
exportButtonsUi ( ) + '<hr>' +
26
27
exportToUi ( ) + '<hr>' +
27
- // projectFolderUi() + '<hr>' +
28
28
// exportedCodePath() + '<hr>' +
29
29
widgetsPrefixUi ( ) + '<hr>' +
30
30
precisionRowUi ( ) + '<hr>' +
@@ -70,12 +70,12 @@ function buildTaps() {
70
70
let exportAllRadio = document . querySelector ( 'input[name="exportAllRadio"]:checked' ) ;
71
71
onTapExport ( exportAllRadio . value ) ;
72
72
} ) ;
73
- // let changeProjectFolderButton = document.getElementById('changeProjectFolderButton');
74
- // changeProjectFolderButton.onclick = async function () {
75
- // await changeProjectFolder();
76
- // const projectFolderInput = document.getElementById('projectFolderInput');
77
- // projectFolderInput.value = getFolderPath();
78
- // };
73
+ let changeProjectFolderButton = document . getElementById ( 'changeProjectFolderButton' ) ;
74
+ changeProjectFolderButton . onclick = async function ( ) {
75
+ await changeProjectFolder ( ) ;
76
+ const projectFolderInput = document . getElementById ( 'projectFolderInput' ) ;
77
+ projectFolderInput . value = getFolderPath ( ) ;
78
+ } ;
79
79
let iosIconButton = document . getElementById ( 'iosIconButton' ) ;
80
80
iosIconButton . onclick = function ( ) {
81
81
exportAppIcon ( 'ios' ) ;
You can’t perform that action at this time.
0 commit comments