Skip to content

Commit c993645

Browse files
committed
Update online doc for 2.4.0 release
1 parent 4d76664 commit c993645

File tree

4 files changed

+62
-8
lines changed

4 files changed

+62
-8
lines changed

docs/usage/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Change Log
22

3+
## Version 2.4.0: February 26, 2024
4+
5+
- Support high performance debugging on UniData 8.3.1 (Windows / Linux).
6+
- Support new compilation flavor 'r' and 'm' for UniData.
7+
- Resolve the issue that extension could not be started when _JAVA_OPTIONS_ is configured.
8+
39
## Version 2.3.0: October 31, 2023
410

511
- Implement the ability to sort BASIC program files while in online editing mode.

docs/usage/ConfigDap.md

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
## Configure Debugging Binaries in UniVerse
2+
## Configure Debugging Binaries
33

44
Please check whether this feature is supported for your U2 server and platform according [this page](./DAPRelease.md).
55

@@ -9,6 +9,8 @@ Please check whether this feature is supported for your U2 server and platform a
99

1010
To configure the debugging related binaries, please follow below steps.
1111

12+
## UniVerse
13+
1214
#### Windows
1315

1416
1. Copy **dap_agent.exe** and **grpcs.exe** from the package to your UniVerse **bin** folder. E.g., *C:\U2\UV\bin*
@@ -32,3 +34,29 @@ To configure the debugging related binaries, please follow below steps.
3234
```
3335
3436
The **unirpcservices** file can be found in your U2 server installation folder. For example, **/usr/u2/unishared/unirpc/unirpcservices**.
37+
38+
## UniData
39+
40+
#### Windows
41+
42+
1. Copy **uddap_server.exe** and **uddap_slave.exe** from the package to your UniData **bin** folder. E.g., *C:\U2\ud83\bin*
43+
44+
2. Verify whether the unirpcservices file contains **uddap_server** service. If **uddap_server** service doesn't exist, you must add it manually. Add the new service as shown below to the **unirpcservices** file:
45+
46+
```
47+
uddap_server <full_path_to_uddap_server.exe> * TCP/IP 0 3600
48+
```
49+
50+
The 'unirpcservices' file can be found in your U2 server installation folder: for example, **C:\U2\unishared\unirpc\unirpcservices**.
51+
52+
#### Linux
53+
54+
1. Copy **uddap_server** and **uddap_slave** from the package to your UniData **bin** folder. For example, */usr/u2/ud83/bin/*
55+
56+
2. Verify whether the **unirpcservices** file contains the **uddap_server** service. If the **uddap_server** service doesn't exist, you must add it manually. Add the new service as shown below to the **unirpcservices** file:
57+
58+
```
59+
uddap_server <full_path_to_uddap_server> * TCP/IP 0 3600
60+
```
61+
62+
The **unirpcservices** file can be found in your U2 server installation folder. For example, **/usr/u2/unishared/unirpc/unirpcservices**.

docs/usage/DAPRelease.md

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,25 @@
11
## Debugging Binaries Release
22

3-
A high-performance debugging feature has been introduced in Rocket MV BASIC 2.2.0 (and in UniVerse 11.4.1).
3+
A high-performance debugging feature has been introduced in Rocket MV BASIC.
44

5-
**To use this feature, you need to upgrade UniVerse to version 11.4.1 or later**. If you decide not to upgrade, you can continue using the original debugging feature available on previous versions of the U2 server.
5+
**To use this feature, you need to upgrade UniVerse to version 11.4.1 or later, or upgrade UniData to version 8.3.1 or later**. If you decide not to upgrade, you can continue using the original debugging feature available on previous versions of the U2 server.
66

77
Below is a detailed breakdown of the information for each release.
88

9-
- This high-performance debugging feature is only supported on UniVerse version 11.4.1 for Windows and Linux platforms.
10-
- If you are using UniVerse 11.4.1 there is no need to manually download and configure these binaries, they are already included in this release.
9+
- This high-performance debugging feature is only supported on UniVerse version 11.4.1 / UniData 8.3.1 for Windows and Linux platforms.
10+
- If you are using UniVerse 11.4.1 / UniData 8.3.1 there is no need to manually download and configure these binaries, they are already included in this release.
1111

1212
| UniVerse Version | Windows | Linux | AIX |
1313
| ------------------ | --------- | ---------- | -------- |
1414
| 11.4.1 | ✔️ | ✔️ ||
1515
| < 11.4.1 ||||
1616

17-
**Please note that versions of UniVerse prior to 11.4.1 do not support this feature and associated binaries.**
17+
| UniData Version | Windows | Linux | AIX |
18+
| ------------------ | --------- | ---------- | -------- |
19+
| 8.3.1 | ✔️ | ✔️ ||
20+
| < 8.3.1 ||||
21+
22+
**Please note that versions of UniVerse prior to 11.4.1 and versions of UniData prior to 8.3.1 do not support this feature and associated binaries.**
1823

1924
### Assets
2025

docs/usage/KnownIssues.md

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,10 @@
4444

4545
**MVVS-1024** compile option not works for UniData account in MVVS 2.1.0 build
4646

47+
**MVVS-1312** Need support flavor 'r' and 'm' in task.json.
48+
49+
**MVVS-1313** Build task flavor impacts gRPC debugging mode compilation flavor.
50+
4751
## Debugging
4852

4953
**MVVS-713** unable to step out at the end of call subroutine
@@ -72,19 +76,30 @@
7276

7377
**MVVS-1222** Step Out is not working properly in MVVS 2.2.0 release
7478

79+
**MVVS-1315** Debug with launch.json file should validate dependencies file first.
80+
81+
**MVVS-1316** Stop debugging when receiving from INPUT statement will crash extension.
82+
83+
**MVVS-1317** Restart button is not working in grpc debugging mode.
84+
85+
**MVVS-1318** Step into and out with WATCH variable will crash debugging process.
86+
7587
## Connection
7688

7789
**MVVS-671** Can't connect to UniData demo account on linux
7890

7991
**MVVS-1121** java throw exception when failed to connect to the UV account
8092

93+
**MVVS-1314** delete currently connected server should also disconnect from current connection in online editing mode.
94+
95+
**MVVS-1320** Execute offline editing mode commands will disable online editing mode.
96+
8197

8298
## Others
8399

84100
**MVVS-982** "The RPC failed" error will crash VS Code extension
85101

86102
**MVVS-1036** User may not be aware of the change on the server side.
87103

88-
**MVVS-1055** Command 'extension.selectU2Server' not found
89-
90104
**MVVS-1156** Can not delete basic file under a customer account added to UV.ACCOUNTS
105+

0 commit comments

Comments
 (0)