Skip to content

Commit

Permalink
0.1.14
Browse files Browse the repository at this point in the history
fixed issue with rc releases for DWC & DSF
  • Loading branch information
MintyTrebor authored Jul 7, 2022
1 parent fbf5dfa commit 50b1737
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
10 changes: 8 additions & 2 deletions plugin/ReleaseMgrMainPanel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -948,6 +948,7 @@ export default {
async getDuetSBCDWCRI(tmpTag, gitRepoName){
//first we have to re-configure the tag to match DSF tagging structure
//console.log("tmpTag:", tmpTag)
let majorVNumStr = tmpTag.substr(0,1);
let minorVNumStr = tmpTag.substr(2,1);
let subVNumStr = "0";
Expand All @@ -957,10 +958,14 @@ export default {
let tmpBetaNumber = 0;
if(tmpTag.length > 3){
subVNumStr = tmpTag.substr(4,1);
//console.log(tmpTag.substr(4,1))
prefix = `${majorVNumStr}.${minorVNumStr}.${subVNumStr}`;
}else{
prefix = `${majorVNumStr}.${minorVNumStr}`;
}
prefix = `${majorVNumStr}.${minorVNumStr}`;
//prefix = `${majorVNumStr}.${minorVNumStr}`;
prefix2 = `${majorVNumStr}.${minorVNumStr}.${subVNumStr}`;
//console.log("prefix:", prefix)
//console.log("prefix2:", prefix2)
if(tmpTag.toLowerCase().includes('beta')){
if(tmpTag.includes('-')){
//checking for Addendum
Expand All @@ -982,6 +987,7 @@ export default {
suffix = "";
}
let dsfTag = `v${prefix}${suffix}`;
//console.log("dsfTag:", dsfTag)
if(gitRepoName == this.gitDWCRepoNameDuet){
//DWC
if(!this.bGotAllDWCReleases){
Expand Down
2 changes: 1 addition & 1 deletion plugin/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"id": "ReleaseMgr",
"name": "ReleaseMgr",
"author": "Minty Trebor",
"version": "0.01.13",
"version": "0.01.14",
"license": "GPL-3.0-or-later",
"homepage": "https://github.com/MintyTrebor",
"dwcVersion": "auto",
Expand Down

0 comments on commit 50b1737

Please sign in to comment.