Skip to content

Commit 7dcf5bc

Browse files
committed
adapt to new packageManager
1 parent 816276e commit 7dcf5bc

File tree

107 files changed

+6608
-3534
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

107 files changed

+6608
-3534
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -77,3 +77,4 @@ DEV/
7777
#--------------------------------
7878
# Added by user
7979
#--------------------------------
80+

Build/4DPop.dmg

-426 KB
Binary file not shown.

Build/4DPop.zip

93.3 KB
Binary file not shown.
-518 KB
Binary file not shown.
Binary file not shown.

Build/Components/4DPop.4dbase/Info.plist Build/Components/4DPop.4dbase/Contents/Info.plist

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66
<key>NSHumanReadableCopyright</key>
77
<string>©vdl 2007-2024</string>
88
<key>CFBundleVersion</key>
9-
<string>271</string>
9+
<string>272</string>
1010
<key>CFBundleDisplayName</key>
1111
<string>4DPop</string>
1212
<key>CFBundleShortVersionString</key>
13-
<string>20R7</string>
13+
<string>20R8</string>
1414
<key>CFBundleGetInfoString</key>
15-
<string>20R7</string>
15+
<string>20R8</string>
1616
<key>CFBundleLongVersionString</key>
17-
<string>20R7 (270)</string>
17+
<string>20R8 (271)</string>
1818
<key>CFBundleName</key>
1919
<string>4DPop</string>
2020
</dict>
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,31 @@
1-
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2-
<html>
3-
<head>
4-
<meta http-equiv="content-type" content="text/html;charset=utf-8">
5-
6-
<style type="text/css">
7-
<!--
8-
.languageLink {
9-
border-top-width: 0px;
10-
border-right-width: 0px;
11-
border-bottom-width: 0px;
12-
border-left-width: 0px;
13-
height: 40px;
14-
}
15-
-->
16-
</style>
17-
</head>
18-
<body leftmargin="0" marginheight="0" marginwidth="0" topmargin="0">
19-
<table border="0" cellspacing="2" cellpadding="4">
20-
<tr>
21-
<td><a href="../fr.lproj/help.html" target="_top"><img class="languageLink" src="fr.png"></a></td>
22-
<td><a href="../en.lproj/help.html" target="_top"><img class="languageLink" src="us.png"></a></td>
23-
<td><a href="../ja.lproj/help.html" target="_top"><img class="languageLink" src="ja.png"></a></td>
24-
<!--
25-
<td><a href="../de.lproj/help.html" target="_top"><img class="languageLink" src="de.png"></a></td>
26-
<td><a href="../es.lproj/help.html" target="_top"><img class="languageLink" src="sp.png"></a></td>
27-
-->
28-
</tr>
29-
</table>
30-
</body>
31-
</html>
1+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2+
<html>
3+
<head>
4+
<meta http-equiv="content-type" content="text/html;charset=utf-8">
5+
6+
<style type="text/css">
7+
<!--
8+
.languageLink {
9+
border-top-width: 0px;
10+
border-right-width: 0px;
11+
border-bottom-width: 0px;
12+
border-left-width: 0px;
13+
height: 40px;
14+
}
15+
-->
16+
</style>
17+
</head>
18+
<body leftmargin="0" marginheight="0" marginwidth="0" topmargin="0">
19+
<table border="0" cellspacing="2" cellpadding="4">
20+
<tr>
21+
<td><a href="../fr.lproj/help.html" target="_top"><img class="languageLink" src="fr.png"></a></td>
22+
<td><a href="../en.lproj/help.html" target="_top"><img class="languageLink" src="us.png"></a></td>
23+
<td><a href="../ja.lproj/help.html" target="_top"><img class="languageLink" src="ja.png"></a></td>
24+
<!--
25+
<td><a href="../de.lproj/help.html" target="_top"><img class="languageLink" src="de.png"></a></td>
26+
<td><a href="../es.lproj/help.html" target="_top"><img class="languageLink" src="sp.png"></a></td>
27+
-->
28+
</tr>
29+
</table>
30+
</body>
31+
</html>
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
1-
<!--
2-
3-
// Display the localized help file according to the browser lang
4-
// Uncomment or add a "else if" clause
5-
6-
if (navigator.browserLanguage)
7-
var language = navigator.browserLanguage;
8-
else
9-
var language = navigator.language;
10-
11-
if (language.indexOf('fr') > -1) document.location.href = 'Resources/fr.lproj/Help.html';
12-
13-
else if (language.indexOf('en') > -1) document.location.href = 'Resources/en.lproj/Help.html';
14-
15-
else if (language.indexOf('ja') > -1) document.location.href = 'Resources/ja.lproj/Help.html';
16-
17-
else if (language.indexOf('es') > -1) document.location.href = 'Resources/es.lproj/Help.html';
18-
19-
else if (language.indexOf('de') > -1) document.location.href = 'Resources/de.lproj/Help.html';
20-
21-
// else if (language.indexOf('it') > -1) document.location.href = 'Resources/it.lproj/Help.html';
22-
23-
else
24-
25-
document.location.href = 'Resources/en.lproj/Help.html';
26-
1+
<!--
2+
3+
// Display the localized help file according to the browser lang
4+
// Uncomment or add a "else if" clause
5+
6+
if (navigator.browserLanguage)
7+
var language = navigator.browserLanguage;
8+
else
9+
var language = navigator.language;
10+
11+
if (language.indexOf('fr') > -1) document.location.href = 'Resources/fr.lproj/Help.html';
12+
13+
else if (language.indexOf('en') > -1) document.location.href = 'Resources/en.lproj/Help.html';
14+
15+
else if (language.indexOf('ja') > -1) document.location.href = 'Resources/ja.lproj/Help.html';
16+
17+
else if (language.indexOf('es') > -1) document.location.href = 'Resources/es.lproj/Help.html';
18+
19+
else if (language.indexOf('de') > -1) document.location.href = 'Resources/de.lproj/Help.html';
20+
21+
// else if (language.indexOf('it') > -1) document.location.href = 'Resources/it.lproj/Help.html';
22+
23+
else
24+
25+
document.location.href = 'Resources/en.lproj/Help.html';
26+
2727
// -->
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,38 @@
1-
@charset "UTF-8";
2-
body, td, th {
3-
font-family: Verdana, Arial, Helvetica, sans-serif;
4-
font-size: 12px;
5-
color: #333333;
6-
}
7-
H1, H2, H3, H4 {
8-
color: #000000
9-
}
10-
.Command4D {
11-
font-size: 14px;
12-
font-family: Geneva, Arial, Helvetica, sans-serif;
13-
}
14-
.fileAndFolder {
15-
font-size: 12px;
16-
font-style: italic;
17-
letter-spacing: 2px;
18-
}
19-
.macro {
20-
font-size: 12px;
21-
font-weight: bold;
22-
font-family: Geneva, Arial, Helvetica, sans-serif;
23-
}
24-
.note {
25-
font-size: 10px
26-
}
27-
.Code4D {
28-
font-family: Geneva, Arial, Helvetica, sans-serif;
29-
font-size: 12px;
30-
color: #666666;
31-
background-color: #FFFFCC;
32-
border: thin solid #CCCCCC;
33-
letter-spacing: 2px;
34-
padding-top: 0px;
35-
padding-right: 1px;
36-
padding-bottom: 0px;
37-
padding-left: 1px;
38-
}
1+
@charset "UTF-8";
2+
body, td, th {
3+
font-family: Verdana, Arial, Helvetica, sans-serif;
4+
font-size: 12px;
5+
color: #333333;
6+
}
7+
H1, H2, H3, H4 {
8+
color: #000000
9+
}
10+
.Command4D {
11+
font-size: 14px;
12+
font-family: Geneva, Arial, Helvetica, sans-serif;
13+
}
14+
.fileAndFolder {
15+
font-size: 12px;
16+
font-style: italic;
17+
letter-spacing: 2px;
18+
}
19+
.macro {
20+
font-size: 12px;
21+
font-weight: bold;
22+
font-family: Geneva, Arial, Helvetica, sans-serif;
23+
}
24+
.note {
25+
font-size: 10px
26+
}
27+
.Code4D {
28+
font-family: Geneva, Arial, Helvetica, sans-serif;
29+
font-size: 12px;
30+
color: #666666;
31+
background-color: #FFFFCC;
32+
border: thin solid #CCCCCC;
33+
letter-spacing: 2px;
34+
padding-top: 0px;
35+
padding-right: 1px;
36+
padding-bottom: 0px;
37+
padding-left: 1px;
38+
}

0 commit comments

Comments
 (0)