Skip to content

Commit

Permalink
2.22.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Dooy committed Dec 17, 2024
1 parent 2fed1a8 commit 32bcb59
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 6 deletions.
7 changes: 6 additions & 1 deletion changlog.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
# 功能升级日志

# 计划

# 2.22.7
- 😄 修改:suno upload 二次创作方式

# 2.22.6
- 😄 支持:pika 2.0
- 😄 支持:viggle V3-Beta
- 😄 支持:pika 2.0
- 😄 新增:pika 3个效果

# 2.22.5
- 🐞 修改:suno默认版本为V4
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "chatgpt-web-midjourney-proxy",
"version": "2.22.6",
"version": "2.22.7",
"private": false,
"description": "ChatGPT Web Midjourney Proxy",
"author": "Dooy <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"package": {
"productName": "ChatGPT-MJ",
"version": "2.22.6"
"version": "2.22.7"
},
"tauri": {
"allowlist": {
Expand Down
10 changes: 7 additions & 3 deletions src/views/suno/mcInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ const cs= ref({
"title": "",
"tags": "",
"continue_at": 120,
"continue_clip_id": ""
"continue_clip_id": "",
"task":''
});
Expand Down Expand Up @@ -90,9 +91,11 @@ const generate= async ()=>{
if(st.value.type=='custom'){
if(des.value.make_instrumental) cs.value.prompt='';
if( cs.value.continue_clip_id!='' && exSuno.value?.metadata?.type=='upload' ){
if( cs.value.continue_clip_id!='' ){
//chirp-v3-5-upload
cs.value.mv='chirp-v3-5-upload'
// cs.value.mv='chirp-v3-5-upload'
if( exSuno.value?.metadata?.type=='upload') cs.value.task='upload_extend'
else cs.value.task='extend'
}
let r:any= await sunoFetch( '/generate' , cs.value )
st.value.isLoading =false;
Expand All @@ -106,6 +109,7 @@ const generate= async ()=>{
st.value.isLoading =false;
ids=r.clips.map((r:any)=>r.id);
}
cs.value.task='';
FeedTask(ids)
}
Expand Down

0 comments on commit 32bcb59

Please sign in to comment.