Skip to content

Commit

Permalink
Getting ready for 6.6.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
graphefruit committed Aug 25, 2023
1 parent 747b358 commit afce2bd
Show file tree
Hide file tree
Showing 7 changed files with 46 additions and 10 deletions.
11 changes: 9 additions & 2 deletions src/assets/i18n/de.json
Original file line number Diff line number Diff line change
Expand Up @@ -939,7 +939,14 @@
"<b>Sonstiges<\/b>",
"Kleinere Fehlerbehebungen"
]
}
},
"6.6.1": {
"TITLE": "Version 6.6.1: Das ist neu",
"DESCRIPTION": [
"<b>Sonstiges:<\/b>",
"Kleinere Fehlerbehebungen"
]
}
},
"CUSTOM_PARAMETERS": "Parameter individualisieren",
"CUSTOM_DEFAULT_PARAMETERS": "Vorbelegung",
Expand Down Expand Up @@ -1572,4 +1579,4 @@
},
"COPIED_TO_CLIPBOARD_SUCCESSFULLY": "Zum Clipboard hinzugefügt",
"COPIED_TO_CLIPBOARD_UNSUCCESSFULLY": "Konnte nicht zum Clipboard hinzugefügt werden"
}
}
9 changes: 8 additions & 1 deletion src/assets/i18n/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -939,7 +939,14 @@
"<b>Others<\/b>",
"Small bug fixes"
]
}
},
"6.6.1": {
"TITLE": "Version 6.6.1: What's new?",
"DESCRIPTION": [
"<b>Others:<\/b>",
"Small bug fixes"
]
}
},
"CUSTOM_PARAMETERS": "Customize parameters",
"CUSTOM_DEFAULT_PARAMETERS": "Default",
Expand Down
11 changes: 9 additions & 2 deletions src/assets/i18n/es.json
Original file line number Diff line number Diff line change
Expand Up @@ -939,7 +939,14 @@
"<b>Otros<\/b>",
"Corrección de errores menores"
]
}
},
"6.6.1": {
"TITLE": "Versión 6.6.1: Novedades",
"DESCRIPTION": [
"<b>Otros<\/b>",
"Corrección de errores menores"
]
}
},
"CUSTOM_PARAMETERS": "Personalizar parámetros",
"CUSTOM_DEFAULT_PARAMETERS": "Predeterminado",
Expand Down Expand Up @@ -1572,4 +1579,4 @@
},
"COPIED_TO_CLIPBOARD_SUCCESSFULLY": "Copiado al portapapeles",
"COPIED_TO_CLIPBOARD_UNSUCCESSFULLY": "No se ha podido copiar al portapeles"
}
}
11 changes: 9 additions & 2 deletions src/assets/i18n/tr.json
Original file line number Diff line number Diff line change
Expand Up @@ -939,7 +939,14 @@
"<b>Diğerleri<\/b>",
"Küçük hata düzeltmeleri"
]
}
},
"6.6.1": {
"TITLE": "Version 6.6.1: Neler yeni?",
"DESCRIPTION": [
"<b>Diğerleri:<\/b>",
"Daha küçük hata düzeltmeleri"
]
}
},
"CUSTOM_PARAMETERS": "Parametreyi özelleştir",
"CUSTOM_DEFAULT_PARAMETERS": "Varsayılan",
Expand Down Expand Up @@ -1572,4 +1579,4 @@
},
"COPIED_TO_CLIPBOARD_SUCCESSFULLY": "Panoya eklendi",
"COPIED_TO_CLIPBOARD_UNSUCCESSFULLY": "Panoya eklenemedi"
}
}
11 changes: 9 additions & 2 deletions src/assets/i18n/zh.json
Original file line number Diff line number Diff line change
Expand Up @@ -939,7 +939,14 @@
"<b>其他<\/b>",
"一些小的错误修复"
]
}
},
"6.6.1": {
"TITLE": "版本 6.4.1: 更新内容",
"DESCRIPTION": [
"<b>其他:<\/b>",
"修复了一些小错误"
]
}
},
"CUSTOM_PARAMETERS": "自定义参数",
"CUSTOM_DEFAULT_PARAMETERS": "默认",
Expand Down Expand Up @@ -1572,4 +1579,4 @@
},
"COPIED_TO_CLIPBOARD_SUCCESSFULLY": "已复制到剪贴板",
"COPIED_TO_CLIPBOARD_UNSUCCESSFULLY": "无法复制到剪贴板"
}
}
1 change: 1 addition & 0 deletions src/classes/version/iVersion.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ export class Version implements IVersion {
'6.5.0',
'6.5.1',
'6.6.0',
'6.6.1',
];
}

Expand Down
2 changes: 1 addition & 1 deletion src/services/uiUpdate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -578,7 +578,7 @@ export class UIUpdate {
versionCode = await this.appVersion.getVersionNumber();
} else {
// Hardcored for testing
versionCode = '6.6.0';
versionCode = '6.6.1';
}
const version: Version = this.uiVersionStorage.getVersion();
const displayingVersions =
Expand Down

0 comments on commit afce2bd

Please sign in to comment.