Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion sdvx@asphyxia/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# SOUND VOLTEX

Plugin Version: **v6.2.0**
Plugin Version: **v6.2.1**

## Provide out of box usable exprience, everything is unlocked and good to go.

Expand Down Expand Up @@ -33,6 +33,10 @@ This version save data is not compatible with some forks plugin, please use it w
Change Log
===========

## 6.2.1

1. Fix asset loading error when plugin is initializing without node type installed.

## 6.2.0

1. Support EG Final 2025120900.
Expand Down
3 changes: 1 addition & 2 deletions sdvx@asphyxia/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,12 @@ import { TRANSLATION_TABLE } from './utils';

import { MusicRecord } from './models/music_record';

import path from 'path';

export let music_db;

function load_music_db(){

const fs = require('fs');
const path = require('path');

if (U.GetConfig('sdvx_path') == '') {
console.log('sdvx_path is not set, skipping music_db load');
Expand Down