Skip to content

Commit 345d08b

Browse files
committed
To 4.0.0.0a7
1 parent be3ac5f commit 345d08b

39 files changed

Lines changed: 1807 additions & 1542 deletions
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[InternetShortcut]
2-
URL=https://sourceforge.net/projects/hamlib-sdk/files/Windows/JTSDK-3.4-Stream/
2+
URL=https://sourceforge.net/projects/hamlib-sdk/files/Windows/JTSDK-4.0-Stream/
33
IDList=
44
HotKey=0
55
[{000214A0-0000-0000-C000-000000000046}]

README.md

Lines changed: 71 additions & 52 deletions
Large diffs are not rendered by default.

docs/BlackBrickSeamless.jpg

54.8 KB
Loading

docs/Dark-Red-Wallpaper.jpg

31.9 KB
Loading

docs/GIT Notes.txt

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
GIT Instructions
2+
================
3+
4+
----------------------------------
5+
git add .
6+
7+
git commit -m "Changes Notes"
8+
9+
git push
10+
----------------------------------
11+
12+
https://stackoverflow.com/questions/5509543/how-do-i-properly-force-a-git-push
13+
14+
15+
ref: https://stackoverflow.com/questions/13382415/mirroring-a-repository-across-github-sourceforge-and-google-code
16+
17+
You can edit your .git/config file to create a remote that pushes to multiple repositories.
18+
19+
[remote "everyone"]
20+
url = https://github.com/USERNAME/REPOSITORY.git
21+
url = ssh://USERNAME@git.code.sf.net/p/PROJECTNAME/MOUNTPOINT
22+
url = https://PROJECT.googlecode.com/git
23+
or with the git config --add command:
24+
25+
git config --add remote.everyone.url https://github.com/USERNAME/REPOSITORY.git
26+
git config --add remote.everyone.url ssh://USERNAME@git.code.sf.net/p/PROJECTNAME/MOUNTPOINT
27+
git config --add remote.everyone.url https://PROJECT.googlecode.com/git
28+
Now when you type git push everyone master, you'll push the master branch to all three remotes.
29+
30+
git push everyone master --force
31+
32+
git push --all --force <== If any issues with above !
33+
34+
Thanks to this Stack Overflow answer for the clue.
35+
36+
https://linuxways.net/ubuntu/how-to-setup-git-server-on-ubuntu-20-04/
37+
38+
39+
Ref below: https://stackoverflow.com/questions/3899627/create-git-branch-with-current-changes
40+
41+
git branch 3.2.1
42+
43+
git checkout 3.2.1
44+
45+
git commit -s
46+
47+
git add .
48+
49+
git commit -m "3.2.1"
50+
51+
git push --set-upstream origin 3.2.1
52+
53+
git config --add remote.everyone.url https://github.com/hamlibdk/HAMLIB-SDK.git
54+
git config --add remote.everyone.url https://hamlibdk@git.code.sf.net/p/hamlib-sdk/code
55+
56+
Pushing Tags.
57+
-------------
58+
59+
See: https://git-scm.com/book/en/v2/Git-Basics-Tagging
60+
See: https://stackoverflow.com/questions/7328454/how-to-synchronize-multiple-git-repositories-including-tags-and-branches
61+
62+
--> Especially: for i in $(git remote); do git push --mirror "$i"; done
63+
64+
git tag -a v3.2.3.2 -m "Release v3.2.3.2"
65+
66+
then
67+
68+
for i in $(git remote); do git push --mirror "$i"; done
69+

docs/QU.html

Lines changed: 439 additions & 0 deletions
Large diffs are not rendered by default.

docs/Qt/ALLQT.html

Lines changed: 6 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -51,35 +51,12 @@ <h2>Evolving the JT-ware Software Developer's Kit (JTSDK)</h2>
5151
<h2>Qt Deployment Guide</h2>
5252
<hr>
5353

54-
<h3>PowerShell Security Warnings</h3>
55-
<ul>
56-
<p>You may receive the following <strong>security notification</strong>:</p>
57-
</ul>
58-
<div class="reducewidth"> <pre>
59-
Execution Policy Change
60-
The execution policy helps protect you from scripts that you do not trust. Changing
61-
the execution policy might expose you to the security risks described in the
62-
about_Execution_Policies help topic at https:/go.microsoft.com/fwlink/?LinkID=135170.
63-
Do you want to change the execution policy?
64-
[Y] Yes [A] Yes to All [N] No [L] No to All [S] Suspend [?] Help (default is "N"):
65-
</pre>
66-
</div>
67-
<ul>
68-
<ul>
69-
<li>It is safe to select <strong>Y</strong>.</li>
70-
</ul>
71-
<p>These scripts are not any processor flaw tests.</p>
72-
<p>Remember that developing these scripts is also a learning exercise for the Development Team.</p></p>
73-
</ul>
74-
<hr>
75-
<h2>Deployment</h2>
76-
<hr>
77-
78-
<h3>Under Development;</h3>
79-
<ul>
80-
<p>Resources are being Developed.</p>
81-
<p>*** Watch this space ***</p>
82-
54+
<h3>Download Latest Open Source Qt Installer </h3>
55+
<ul>
56+
<p>The latest Qt Open Source installer can be downloaded via links at <a href="https://www.qt.io/download-open-source">https://www.qt.io/download-open-source</a> .</p></ul>
57+
<ul>
58+
<p>The best deploment guide can be found at <a href="https://doc.qt.io/qt-6/get-and-install-qt.html">https://doc.qt.io/qt-6/get-and-install-qt.html</a></p>
59+
8360
</ul>
8461
<hr>
8562
<h2>Conclusion and Further References</h2>

docs/index.html

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -38,28 +38,27 @@ <h2>Evolving the JT-ware Software Developer's Kit (JTSDK)</h2>
3838
<hr/>
3939
<table width="100%" border="0">
4040
<tr>
41-
<td width="16.6%" align="center"><a href="./ver3/index3.html">Version 3 Documentation</a></td>
42-
<td width="16.6%" align="center"><a href="./ver4/index4.html">Version 4 Documenatation</a></td>
43-
<td width="16.6%" align="center"><a href="./Qt/indexQt.html">JTSDK Qt Guide</a></td>
44-
<td width="16.6%" align="center"><a href="https://groups.io/g/JTSDK">JTSDK Forum</a></td>
45-
<td width="16.5%" align="center"><a href="https://sourceforge.net/projects/hamlib-sdk/">Sourceforge</a></td>
46-
<td width="16.7%" align="center"><a href="https://sourceforge.net/projects/hamlib-sdk/files/Windows/JTSDK-3.2-Stream/">Download</a</td>
41+
<td width="20%" align="center"><a href="./ver3/index3.html">Version 3 Documentation</a></td>
42+
<td width="20%" align="center"><a href="./ver4/index4.html">Version 4 Documentation</a></td>
43+
<td width="20%" align="center"><a href="https://groups.io/g/JTSDK">JTSDK Forum</a></td>
44+
<td width="29%" align="center"><a href="https://sourceforge.net/projects/hamlib-sdk/">Sourceforge</a></td>
45+
<td width="20%" align="center"><a href="https://sourceforge.net/projects/hamlib-sdk/files/Windows/JTSDK-3.4-Stream/">Download</a</td>
4746
</tr>
4847
</table>
4948
<hr/>
5049
<h3>Introduction.</h3>
5150
<ul>
52-
<p>Development of <a href="./ver3/index3.html">Version 3</a> of the Hamlib SDK (JTSDK) has concluded.</p>
53-
<p>Development of <a href="./ver4/index4.html">Version 4</a> of the Hamlib SDK (JTSDK) has actively commenced.</p>
51+
<p>Active development of <a href="./ver3/index3.html">Version 3</a> of the Hamlib SDK (JTSDK) has concluded.</p>
52+
<p>Development of <a href="./ver4/index4.html">Version 4</a> of the Hamlib SDK (JTSDK) has commenced.</p>
5453
<p>This page links to both the <a href="./ver3/index3.html">Version 3</a> and <a href="./ver4/index4.html">Version 4</a> Kit documentation.</p>
55-
<p><a href="./ver4/index4.html">Version 4</a> of the JTSDK/Hamlib SDK is Qt 6.x centric - but will support Archived Deployments of <a href="https://www.qt.io/blog/qt-5.15.2-released">Qt 5.15.2</a></p>
54+
<p>The <a href="./ver4/index4.html">Version 4</a> of the Hamlib SDK will centre on Qt 6.x world.</p>
5655
<p>Please watch this space !</p>
5756
</ul>
5857
<hr/>
5958
<table border="0" width=100%>
6059
<tr>
6160
<td>
62-
Author: <a href="https://sourceforge.net/u/hamlibdk/profile/">Hamlib SDK Developers</a>
61+
Author: <a href="https://sourceforge.net/u/hamlibdk/profile/">hamlibdk developers</a>
6362
</td>
6463
<td>
6564
<div style="text-align:right;">Accessed: <span id="datetime"></span></div>

docs/nav.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<table width="100%" border="0">
22
<tr>
3-
<td width="16.6%" align="center"><a href="./ver3/index3.html">Version 3 Documentation</a></td>
4-
<td width="16.6%" align="center"><a href="./ver4/index4.html">Version 4 Documenatation</a></td>
5-
<td width="16.6%" align="center"><a href="./Qt/indexQt.html">JTSDK Qt Guide</a></td>
6-
<td width="16.6%" align="center"><a href="https://groups.io/g/JTSDK">JTSDK Forum</a></td>
7-
<td width="16.5%" align="center"><a href="https://sourceforge.net/projects/hamlib-sdk/">Sourceforge</a></td>
8-
<td width="16.7%" align="center"><a href="https://sourceforge.net/projects/hamlib-sdk/files/Windows/JTSDK-3.2-Stream/">Download</a</td>
3+
<td width="12.5%" align="center"><a href="./ver3/index3.html">Version 3 Documentation</a></td>
4+
<td width="12.5%" align="center"><a href="./ver4/index4.html">Version 4 Documenatation</a></td>
5+
<td width="12.5%" align="center"><a href="https://groups.io/g/JTSDK">JTSDK Forum</a></td>
6+
<td width="12.5%" align="center"><a href="https://sourceforge.net/projects/hamlib-sdk/">Sourceforge</a></td>
7+
<td width="20%" align="center"><a href="https://sourceforge.net/projects/hamlib-sdk/files/Windows/JTSDK-3.2-Stream/">Download</a</td>
98
</tr>
109
</table>
10+
<hr/>

0 commit comments

Comments
 (0)