@lvce-editor/main-process 6.29.2 → 6.30.0

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.
@@ -4954,7 +4954,8 @@ class WindowLoadError extends VError {
4954
4954
  }
4955
4955
 
4956
4956
  const getLogFileName = (windowId, now = Date.now()) => {
4957
- return `${windowId}/${now}.txt`;
4957
+ const timestamp = new Date(now).toISOString().replaceAll(':', '-');
4958
+ return `${windowId}/${timestamp}.txt`;
4958
4959
  };
4959
4960
  const formatMessage = ({
4960
4961
  level,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lvce-editor/main-process",
3
- "version": "6.29.2",
3
+ "version": "6.30.0",
4
4
  "keywords": [
5
5
  "lvce-editor",
6
6
  "electron"