@atlisp/mcp 1.8.26 → 1.8.27

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Binary file
@@ -248,6 +248,7 @@ string encoding = d.encoding != null ? d.encoding.ToString() : "";
248
248
 
249
249
  int retries = 10;
250
250
  string result = "";
251
+ string rawBase64 = "";
251
252
  while (retries > 0 && !System.IO.File.Exists(tempFile)) {
252
253
  System.Threading.Thread.Sleep(200);
253
254
  retries--;
@@ -257,7 +258,7 @@ string encoding = d.encoding != null ? d.encoding.ToString() : "";
257
258
  while (retries > 0) {
258
259
  try {
259
260
  byte[] bytes = System.IO.File.ReadAllBytes(tempFile);
260
- string rawBase64 = System.Convert.ToBase64String(bytes);
261
+ rawBase64 = System.Convert.ToBase64String(bytes);
261
262
  System.Text.Encoding enc;
262
263
 
263
264
  if (!string.IsNullOrEmpty(encoding)) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlisp/mcp",
3
- "version": "1.8.26",
3
+ "version": "1.8.27",
4
4
  "description": "MCP Server for @lisp on CAD,support AutoCAD/GstarCAD/ZWCAD/BricsCAD or CAD platform compatible with AutoLISP",
5
5
  "type": "module",
6
6
  "bin": {