File tree Expand file tree Collapse file tree 14 files changed +59
-10
lines changed Expand file tree Collapse file tree 14 files changed +59
-10
lines changed Original file line number Diff line number Diff line change 6
6
<key >NSHumanReadableCopyright </key >
7
7
<string >©vdl 2007-2024 </string >
8
8
<key >CFBundleVersion </key >
9
- <string >260 </string >
9
+ <string >263 </string >
10
10
<key >CFBundleDisplayName </key >
11
11
<string >4DPop </string >
12
12
<key >CFBundleShortVersionString </key >
13
13
<string >20R6 </string >
14
14
<key >CFBundleGetInfoString </key >
15
15
<string >20R6 </string >
16
16
<key >CFBundleLongVersionString </key >
17
- <string >20R6 (259 ) </string >
17
+ <string >20R6 (262 ) </string >
18
18
<key >CFBundleName </key >
19
19
<string >4DPop </string >
20
20
</dict >
Original file line number Diff line number Diff line change 6
6
<key >NSHumanReadableCopyright </key >
7
7
<string >©vdl 2007-2024 </string >
8
8
<key >CFBundleVersion </key >
9
- <string >260 </string >
9
+ <string >263 </string >
10
10
<key >CFBundleDisplayName </key >
11
11
<string >4DPop </string >
12
12
<key >CFBundleShortVersionString </key >
13
13
<string >20R6 </string >
14
14
<key >CFBundleGetInfoString </key >
15
15
<string >20R6 </string >
16
16
<key >CFBundleLongVersionString </key >
17
- <string >20R6 (259 ) </string >
17
+ <string >20R6 (262 ) </string >
18
18
<key >CFBundleName </key >
19
19
<string >4DPop </string >
20
20
</dict >
Original file line number Diff line number Diff line change @@ -24,6 +24,18 @@ Case of
24
24
// ________________________________________
25
25
: ($eventCode= On after host database startup:K74:4)
26
26
27
+ If (Not:C34 (Is compiled mode:C492))
28
+
29
+ ARRAY TEXT:C222 ($componentsArray ; 0 )
30
+ COMPONENT LIST:C1001 ($componentsArray )
31
+
32
+ If (Find in array:C230 ($componentsArray ; "4DPop QuickOpen" )> 0)
33
+
34
+ INSTALL ACTIONS
35
+
36
+ End if
37
+ End if
38
+
27
39
DISPLAY 4DPOP STRIP
28
40
29
41
// ________________________________________
Original file line number Diff line number Diff line change @@ -9,6 +9,8 @@ If (Not:C34(Is compiled mode:C492))
9
9
EXECUTE METHOD:C1007 ("quickOpenInit" ; * ; Formula:C1597 (MODIFIERS); Formula:C1597 (KEYCODE))
10
10
ON EVENT CALL:C190 ("quickOpenEventHandler" ; "$quickOpenListener" )
11
11
12
+ INSTALL ACTIONS
13
+
12
14
End if
13
15
End if
14
16
Original file line number Diff line number Diff line change
1
+ // %attributes = {"invisible":true}
2
+
3
+ EXECUTE METHOD:C1007 ("quickOpenPushAction" ; * ; {\
4
+ name: "Make symbolic link" ; \
5
+ shortcut: "link" ; \
6
+ formula: Formula:C1597 (makeSymbolicLink)})
7
+
8
+ EXECUTE METHOD:C1007 ("quickOpenPushAction" ; * ; {\
9
+ name: "Recover the window" ; \
10
+ shortcut: "window" ; \
11
+ formula: Formula:C1597 (recoverWindow)})
Original file line number Diff line number Diff line change
1
+ // %attributes = {"preemptive":"incapable"}
2
+ # DECLARE ($destination : 4D:C1709 .Folder )
3
+
4
+ var $fullName : Text
5
+ $fullName := Select document:C905 (8858 ; "" ; "Select the symbolic link target:" ; 0 )
6
+
7
+ If (Bool:C1537 (OK))
8
+
9
+ var $file : 4D:C1709 .File
10
+ $file := File:C1566 (DOCUMENT; fk platform path:K87:2 )
11
+ $file .createAlias ($destination || Folder:C1567 (fk desktop folder:K87:19 ); $file .fullName; fk symbolic link:K87:4 )
12
+
13
+ End if
Original file line number Diff line number Diff line change 2
2
"dependencies" : {
3
3
"4DPop" : {
4
4
"github" : " vdelachaux/4DPop" ,
5
- "tag" :" 20.6.0"
5
+ "tag" : " 20.6.2"
6
+ },
7
+ "4DPop AppMaker" : {
8
+ "github" : " vdelachaux/4DPop-AppMaker" ,
9
+ "tag" : " 20.6.0"
10
+ },
11
+ "4DPop Git" : {
12
+ "github" : " vdelachaux/4DPop-Git" ,
13
+ "tag" : " 20.6.0"
14
+ },
15
+ "4DPop Macros" : {
16
+ "github" : " vdelachaux/4DPop-Macros" ,
17
+ "tag" : " 20.6.2"
6
18
},
7
- "4DPop AppMaker" : {},
8
19
"4DPop Bookmarks" : {},
9
20
"4DPop Clipboard" : {},
10
21
"4DPop ColorChart" : {},
11
22
"4DPop Commands" : {},
12
23
"4DPop Constants Editor" : {},
13
- "4DPop Git" : {},
14
24
"4DPop Image Buddy" : {},
15
25
"4DPop KeepIt" : {},
16
- "4DPop Macros" : {},
17
26
"4DPop Pasteboard" : {},
18
27
"4DPop QuickOpen" : {},
19
28
"4DPop Rulers" : {},
Original file line number Diff line number Diff line change 50
50
"methods" : [
51
51
" _STRIP_Controller" ,
52
52
" COMPILER_MAIN" ,
53
- " DISPLAY 4DPOP STRIP"
53
+ " DISPLAY 4DPOP STRIP" ,
54
+ " INSTALL ACTIONS"
54
55
],
55
56
"forms" : [
56
57
" ABOUT" ,
64
65
},
65
66
"🛠️ Tools" : {
66
67
"methods" : [
67
- " getWindowOffsets"
68
+ " getWindowOffsets" ,
69
+ " makeSymbolicLink"
68
70
]
69
71
},
70
72
"database" : {
You can’t perform that action at this time.
0 commit comments