diff --git a/CHANGES b/CHANGES
index e22d915..6f1b5c4 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,5 +1,11 @@
+v1.81
+1. Remove deflate from h-encore to get payload loading slight faster
+2. Support 3.61/3.67 now, you won't be asked to update on these firmwares (#46)
+3. Reduced C2-12821-1 error (#47)
+4. Fixed mismatch firmware versions display on firmware update
+
v1.8
-1. Support for memecore(h-encore 2.0 for VITA 3.60 support with PSN access), compiled from [my fork](https://github.com/soarqin/h-encore), thanks to [CelesteBlue-dev](https://github.com/CelesteBlue-dev) for his port
+1. Support for memecore(h-encore 2.0 for VITA 3.60 support), compiled from [my fork](https://github.com/soarqin/h-encore), thanks to [CelesteBlue-dev](https://github.com/CelesteBlue-dev) for his port
2. Can trim h-encore app to only 6.5MB now, thanks to [KuromeSan](https://github.com/KuromeSan)
3. Fixed a bug that button is reset to be clickable when another info sync from PSVITA is received
4. Fixed French language
diff --git a/README.md b/README.md
index 0a710cb..d3bc66d 100644
--- a/README.md
+++ b/README.md
@@ -5,8 +5,8 @@ a tool to push h-encore exploit for PS VITA/PS TV automatically
see [CREDITS.md](CREDITS.md)
# Usage
-1. For common use just open the executable binary and follow instructions.
-2. If you want to update PS Vita to firmware 3.65 or 3.68 through USB connection, just download related Update Packages from [here](https://darthsternie.bplaced.net/ps-vita.html) and extract the normal PSP2UPDAT.PUP to the same folder of this tool
+1. For common use just open the executable binary and follow instructions. Supported firmwares: 3.60/3.61/3.65/3.67/3.68
+2. If you want to update PS Vita to firmware 3.60, 3.65 or 3.68 through USB connection, just download related Update Packages from [here](darthsternie.net/index.php/ps-vita-firmwares/) and extract the normal PSP2UPDAT.PUP to the same folder of this tool
3. If you want to install VitaShell or enso by transferring in Content Manager, just download prebuilt zip from `releases` tab and put in the same folder of this tool
# Prebuilt binaries for windows/macOS
diff --git a/src/finalhe.cc b/src/finalhe.cc
index 5a83cc5..029055f 100644
--- a/src/finalhe.cc
+++ b/src/finalhe.cc
@@ -160,8 +160,6 @@ void FinalHE::updateExpandArea() {
item0->setFlags(Qt::NoItemFlags);
ui.extraItems->addItem(item0);
hasFirmware = true;
- item->setCheckState(Qt::Checked);
- i == 0 ? vita->setUse365Update() : vita->setUse368Update();
} else
item->setCheckState(Qt::Unchecked);
item->setData(Qt::UserRole, i + 1);
@@ -207,56 +205,49 @@ bool FinalHE::checkFwUpdate() {
? tr("On PS Vita:\nSettings -> System Update -> Update by Connecting to a PC")
: tr("To update through USB:\nPut Update Package(.PUP) in this tool's folder and restart the tool")));
return false;
- } else if (vita->getDeviceVersion() > "3.60" && vita->getDeviceVersion() < "3.65") {
- if (vita->has365Update() || vita->has368Update()) {
- int count = ui.extraItems->count();
- for (int i = 0; i < count; ++i) {
- auto *eitem = ui.extraItems->item(i);
- if (eitem->flags() == Qt::NoItemFlags) continue;
- bool ok;
- int n = eitem->data(Qt::UserRole).toInt(&ok);
- if (ok) {
- if (n == 1) {
- ui.extraItems->removeItemWidget(eitem);
- delete eitem;
- count = ui.extraItems->count();
- --i;
- } else
- eitem->setCheckState(n > 1 ? Qt::Checked : Qt::Unchecked);
+ } else if (vita->getDeviceVersion() < "3.65") {
+ bool needUpdate = vita->getDeviceVersion() > "3.61";
+ int count = ui.extraItems->count();
+ for (int i = 0; i < count; ++i) {
+ auto *eitem = ui.extraItems->item(i);
+ if (eitem->flags() == Qt::NoItemFlags) continue;
+ bool ok;
+ int n = eitem->data(Qt::UserRole).toInt(&ok);
+ if (ok) {
+ if (n == 1) {
+ ui.extraItems->removeItemWidget(eitem);
+ delete eitem;
+ count = ui.extraItems->count();
+ --i;
+ } else if (needUpdate) {
+ eitem->setCheckState(n > 1 ? Qt::Checked : Qt::Unchecked);
}
}
}
- ui.textPkg->setText(tr("Fimrware version is not supported by h-encore.") + "\n"
- + tr("Update to %1 first.").arg("3.65/3.68") + "\n"
- + (vita->has368Update()
- ? tr("On PS Vita:\nSettings -> System Update -> Update by Connecting to a PC")
- : tr("To update through USB:\nPut Update Package(.PUP) in this tool's folder and restart the tool")));
- return false;
- } else if (vita->getDeviceVersion() > "3.65" && vita->getDeviceVersion() < "3.68") {
- if (vita->has368Update()) {
- int count = ui.extraItems->count();
- for (int i = 0; i < count; ++i) {
- auto *eitem = ui.extraItems->item(i);
- if (eitem->flags() == Qt::NoItemFlags) continue;
- bool ok;
- int n = eitem->data(Qt::UserRole).toInt(&ok);
- if (ok) {
- if (n == 1 || n == 2) {
- ui.extraItems->removeItemWidget(eitem);
- delete eitem;
- count = ui.extraItems->count();
- --i;
- } else
- eitem->setCheckState(n > 2 ? Qt::Checked : Qt::Unchecked);
+ if (needUpdate) {
+ ui.textPkg->setText(tr("Fimrware version is not supported by h-encore.") + "\n"
+ + tr("Update to %1 first.").arg("3.65/3.68") + "\n"
+ + (vita->has368Update()
+ ? tr("On PS Vita:\nSettings -> System Update -> Update by Connecting to a PC")
+ : tr("To update through USB:\nPut Update Package(.PUP) in this tool's folder and restart the tool")));
+ return false;
+ }
+ } else if (vita->getDeviceVersion() < "3.68") {
+ int count = ui.extraItems->count();
+ for (int i = 0; i < count; ++i) {
+ auto *eitem = ui.extraItems->item(i);
+ if (eitem->flags() == Qt::NoItemFlags) continue;
+ bool ok;
+ int n = eitem->data(Qt::UserRole).toInt(&ok);
+ if (ok) {
+ if (n == 1 || n == 2) {
+ ui.extraItems->removeItemWidget(eitem);
+ delete eitem;
+ count = ui.extraItems->count();
+ --i;
}
}
}
- ui.textPkg->setText(tr("Fimrware version is not supported by h-encore.") + "\n"
- + tr("Update to %1 first.").arg("3.68") + "\n"
- + (vita->has368Update()
- ? tr("On PS Vita:\nSettings -> System Update -> Update by Connecting to a PC")
- : tr("To update through USB:\nPut Update Package(.PUP) in this tool's folder and restart the tool")));
- return false;
}
return true;
}
@@ -318,9 +309,12 @@ void FinalHE::extraItemsChanged(QListWidgetItem *item) {
if (checked) {
switch (fwidx) {
case 1:
- vita->setUse365Update();
+ vita->setUse360Update();
break;
case 2:
+ vita->setUse365Update();
+ break;
+ case 3:
vita->setUse368Update();
break;
default:
diff --git a/src/finalhe.ui b/src/finalhe.ui
index f4fbbb1..5951dee 100644
--- a/src/finalhe.ui
+++ b/src/finalhe.ui
@@ -119,7 +119,7 @@
- Trim h-encore to ~6.5MB
+ Trim h-encore to ~7MB
diff --git a/src/package.cc b/src/package.cc
index e4fb9ee..b58045c 100644
--- a/src/package.cc
+++ b/src/package.cc
@@ -502,18 +502,15 @@ void Package::createPsvImgs(QString titleID) {
if (cdir.cd("resource") && cdir.cd("image") && cdir.cd("stitle"))
cdir.removeRecursively();
cdir = curr;
- if (cdir.cd("resource") && cdir.cd("image") && cdir.cd("sys"))
- cdir.removeRecursively();
- cdir = curr;
if (cdir.cd("resource") && cdir.cd("image") && cdir.cd("sysc")) {
cdir.remove("kuro_waku.png");
cdir.remove("shiro_waku.png");
cdir.remove("sysc_bgm_mode_base.jpg");
cdir.remove("sysc_black.jpg");
- cdir.remove("sysc_button_number.png");
cdir.remove("sysc_cg_mode_base.jpg");
cdir.remove("sysc_how_to_base.jpg");
cdir.remove("sysc_info_base.jpg");
+ cdir.remove("sysc_load_base.jpg");
cdir.remove("sysc_log_base.jpg");
cdir.remove("sysc_mabuta_1.png");
cdir.remove("sysc_mabuta_2.png");
diff --git a/src/resources/raw/h-encore.zip b/src/resources/raw/h-encore.zip
index d6a5c3b..306dbcd 100644
Binary files a/src/resources/raw/h-encore.zip and b/src/resources/raw/h-encore.zip differ
diff --git a/src/resources/raw/memecore.zip b/src/resources/raw/memecore.zip
index 6eeaecd..64646b4 100644
Binary files a/src/resources/raw/memecore.zip and b/src/resources/raw/memecore.zip differ
diff --git a/src/translations/cs_CZ.ts b/src/translations/cs_CZ.ts
index f6e72be..1919119 100644
--- a/src/translations/cs_CZ.ts
+++ b/src/translations/cs_CZ.ts
@@ -38,54 +38,50 @@
-
+ -- Additional applications --
-
-
-
+
+ Fimrware version is not supported by h-encore.
-
-
-
+
+ Update to %1 first.
-
-
-
+
+ To update through USB:
Put Update Package(.PUP) in this tool's folder and restart the tool
-
-
-
+
+ On PS Vita:
Settings -> System Update -> Update by Connecting to a PC
-
+ Click button to START!Stiskněte tlačítko pro START!
-
+ Registering device: %1
Input this PIN on PS Vita: %2Registruji zařízení: %1
Zadejte na Vaší Vitě následující PIN: %2
-
+ Registered device.Zařízení zaregistrované.
@@ -99,8 +95,8 @@ Zadejte na Vaší Vitě následující PIN: %2
- Trim h-encore to ~6.5MB
- Zmenšit velikost h-encore na ~6.5MB
+ Trim h-encore to ~7MB
+ Zmenšit velikost h-encore na ~7MB
@@ -175,7 +171,7 @@ Stiskněte tlačítko pro START!
Spusťte na Vaší Vitě "Content Manager" a připojte Vitu k počítači.
-
+ Createing psvimg'sVytvářím psvimg
@@ -209,7 +205,7 @@ Prosím, zkontrolujte připojení k síťi!
base
-
+ EnglishAnglicky
diff --git a/src/translations/de_DE.ts b/src/translations/de_DE.ts
index 82a2025..054c489 100644
--- a/src/translations/de_DE.ts
+++ b/src/translations/de_DE.ts
@@ -14,56 +14,52 @@
-- Firmware Aktualisierung --
-
+ -- Additional applications ---- Zusätzliche Anwendungen --
-
-
-
+
+ Fimrware version is not supported by h-encore.Firmware version wird von h-encore nicht unterstützt.
-
-
-
+
+ Update to %1 first.Update zuerst auf %1.
-
-
-
+
+ On PS Vita:
Settings -> System Update -> Update by Connecting to a PCAuf der PS Vita:
Einstellungen -> System Update -> System-Aktualisierung -> Über einen PC aktualisieren
-
-
-
+
+ To update through USB:
Put Update Package(.PUP) in this tool's folder and restart the toolUm per USB upzudaten:
Lege das Update Packet(.PUB) in das Verzeichnis des Programms und starte es neu
-
+ Click button to START!Drücke den Knopf um zu STARTEN!
-
+ Registering device: %1
Input this PIN on PS Vita: %2Gerät registrieren: %1
Gebe diesen PIN auf der PS Vita ein: %2
-
+ Registered device.Registriertes Gerät.
@@ -97,8 +93,8 @@ Gebe diesen PIN auf der PS Vita ein: %2
- Trim h-encore to ~6.5MB
- Kürze h-encore auf ~6.5MB
+ Trim h-encore to ~7MB
+ Kürze h-encore auf ~7MB
@@ -167,7 +163,7 @@ Gebe diesen PIN auf der PS Vita ein: %2
Kürze Paket
-
+ Createing psvimg'sErstelle psvimgs
@@ -207,7 +203,7 @@ Drücke den Knopf um zu STARTEN!
base
-
+ EnglishEnglisch
diff --git a/src/translations/en_US.ts b/src/translations/en_US.ts
index fec1bdf..291721b 100644
--- a/src/translations/en_US.ts
+++ b/src/translations/en_US.ts
@@ -14,53 +14,49 @@
-
+ -- Additional applications --
-
-
-
+
+ Fimrware version is not supported by h-encore.
-
-
-
+
+ Update to %1 first.
-
-
-
+
+ On PS Vita:
Settings -> System Update -> Update by Connecting to a PC
-
-
-
+
+ To update through USB:
Put Update Package(.PUP) in this tool's folder and restart the tool
-
+ Click button to START!
-
+ Registering device: %1
Input this PIN on PS Vita: %2
-
+ Registered device.
@@ -94,7 +90,7 @@ Input this PIN on PS Vita: %2
- Trim h-encore to ~6.5MB
+ Trim h-encore to ~7MB
@@ -156,7 +152,7 @@ Input this PIN on PS Vita: %2
-
+ Createing psvimg's
@@ -184,7 +180,7 @@ Input this PIN on PS Vita: %2
base
-
+ English
diff --git a/src/translations/es_ES.ts b/src/translations/es_ES.ts
index fc779e8..f9a8647 100644
--- a/src/translations/es_ES.ts
+++ b/src/translations/es_ES.ts
@@ -38,56 +38,52 @@
-- Actualización de Firmware --
-
+ -- Additional applications ---- Aplicaciones adicionales --
-
-
-
+
+ Fimrware version is not supported by h-encore.Versión de firmware no soportada por h-encore.
-
-
-
+
+ Update to %1 first.Primero, actualice %1.
-
-
-
+
+ To update through USB:
Put Update Package(.PUP) in this tool's folder and restart the toolPara actualizar por USB:
Ponga el Paquete de Actualización (.PUP) en la carpeta de esta herramienta y reinicie esta aplicación.
-
-
-
+
+ On PS Vita:
Settings -> System Update -> Update by Connecting to a PCEn la PS Vita:
Opciones -> Actualización de Sistema -> Actualizar Conectando al PC
-
+ Click button to START!¡Pulsa el botón para EMPEZAR!
-
+ Registering device: %1
Input this PIN on PS Vita: %2Registrando dispositivo: %1
Inserte este PIN en su PS Vita: %2
-
+ Registered device.Dispositivo registrado.
@@ -101,8 +97,8 @@ Inserte este PIN en su PS Vita: %2
- Trim h-encore to ~6.5MB
- Reducir h-encore a ~ 6.5 MB
+ Trim h-encore to ~7MB
+ Reducir h-encore a ~ 7 MB
@@ -177,7 +173,7 @@ Click button to START!
Usa el Gestor de Contenido en tu PS Vita y conéctala al PC.
-
+ Createing psvimg'sCreando el archivo psvimg
@@ -211,7 +207,7 @@ Please check your network connection!
base
-
+ EnglishInglés
diff --git a/src/translations/fr_FR.ts b/src/translations/fr_FR.ts
index 9ded7a1..a1e1199 100644
--- a/src/translations/fr_FR.ts
+++ b/src/translations/fr_FR.ts
@@ -18,56 +18,52 @@
-
+ -- Additional applications ---- Applications Additionelles --
-
-
-
+
+ Fimrware version is not supported by h-encore.La version du Fimrware n'est pas supporté par h-encore.
-
-
-
+
+ Update to %1 first.Mettre à jour vers %1 d’abord.
-
-
-
+
+ On PS Vita:
Settings -> System Update -> Update by Connecting to a PCSur La PS Vita:
Paramètres -> Mise à jour système -> mettre à jour connexion au PC
-
-
-
+
+ To update through USB:
Put Update Package(.PUP) in this tool's folder and restart the toolPour mettre a jour via USB:
Mettre le fichier de mise à jour (.PUP) dans le dossier de cet applications 'et redémarrer la
-
+ Click button to START!
-
+ Registering device: %1
Input this PIN on PS Vita: %2Registrement de l’appareil: %1
Mettre ce PIN dans la PS Vita: %2
-
+ Registered device.Appareil enregistré.
@@ -101,8 +97,8 @@ Mettre ce PIN dans la PS Vita: %2
- Trim h-encore to ~6.5MB
- Reduction de h-encore à environs ~6.5MB
+ Trim h-encore to ~7MB
+ Reduction de h-encore à environs ~7MB
@@ -167,7 +163,7 @@ Mettre ce PIN dans la PS Vita: %2
Réduction du paquet
-
+ Createing psvimg'sCréation du psvimg's
@@ -195,7 +191,7 @@ Mettre ce PIN dans la PS Vita: %2
base
-
+ EnglishAnglaise
diff --git a/src/translations/it_IT.ts b/src/translations/it_IT.ts
index cb11757..2c237ec 100644
--- a/src/translations/it_IT.ts
+++ b/src/translations/it_IT.ts
@@ -38,54 +38,50 @@
-
+ -- Additional applications --
-
-
-
+
+ Fimrware version is not supported by h-encore.
-
-
-
+
+ Update to %1 first.
-
-
-
+
+ To update through USB:
Put Update Package(.PUP) in this tool's folder and restart the tool
-
-
-
+
+ On PS Vita:
Settings -> System Update -> Update by Connecting to a PC
-
+ Click button to START!Fai clic sul pulsante START per iniziare!
-
+ Registering device: %1
Input this PIN on PS Vita: %2Registrazione dispositivo: %1
Inserire questo PIN su PS Vita: %2
-
+ Registered device.Dispositivo registrato.
@@ -99,8 +95,8 @@ Inserire questo PIN su PS Vita: %2
- Trim h-encore to ~6.5MB
- Taglia h-encore a ~ 6.5 MB
+ Trim h-encore to ~7MB
+ Taglia h-encore a ~ 7 MB
@@ -175,7 +171,7 @@ Fai clic sul pulsante START per iniziare!
Avvia Gestione Contenuto su PS Vita e connettiti al computer.
-
+ Createing psvimg'sSto creando i file psvimg
@@ -209,7 +205,7 @@ Si prega di verificare la connessione di rete!
base
-
+ EnglishInglese
diff --git a/src/translations/ja_JP.ts b/src/translations/ja_JP.ts
index 6c91eef..40dd025 100644
--- a/src/translations/ja_JP.ts
+++ b/src/translations/ja_JP.ts
@@ -38,56 +38,52 @@
--ファームウェア アップデート--
-
+ -- Additional applications ----その他のアプリ―ケーション--
-
-
-
+
+ Fimrware version is not supported by h-encore.h-encoreはこのファームウェアをサポートしていません
-
-
-
+
+ Update to %1 first.最初に %1 にアップデート
-
-
-
+
+ To update through USB:
Put Update Package(.PUP) in this tool's folder and restart the toolUSB経由でアップデートするには:
アップデートパッケージ(.PUP)をこのツールのフォルダに入れてこのツールを再実行して下さい
-
-
-
+
+ On PS Vita:
Settings -> System Update -> Update by Connecting to a PCPSVita側の作業
設定 -> システムアップデート -> パソコンに接続してアップデートする と手順を踏んで下さい
-
+ Click button to START!スタートをクリックして開始して下さい
-
+ Registering device: %1
Input this PIN on PS Vita: %2デバイス登録: %1
PSVitaにPINコードを入力して下さい: %2
-
+ Registered device.登録されたデバイス
@@ -101,8 +97,8 @@ PSVitaにPINコードを入力して下さい: %2
- Trim h-encore to ~6.5MB
- h-encoreを約6.5MBに容量を削減
+ Trim h-encore to ~7MB
+ h-encoreを約7MBに容量を削減
@@ -177,7 +173,7 @@ Click button to START!
PCとUSB接続したPSVitaでコンテンツ管理を実行して下さい
-
+ Createing psvimg'spsvimgを作成中
@@ -210,7 +206,7 @@ Please check your network connection!
base
-
+ EnglishEnglish
diff --git a/src/translations/pt_BR.ts b/src/translations/pt_BR.ts
index a50213a..850b424 100644
--- a/src/translations/pt_BR.ts
+++ b/src/translations/pt_BR.ts
@@ -14,7 +14,7 @@
-- Atualização de Firmware --
-
+ -- Additional applications ---- Aplicativos adicionais --
@@ -23,51 +23,47 @@
Versão do firmware não suportada pelo h-encore.
-
-
-
+
+ Fimrware version is not supported by h-encore.
-
-
-
+
+ Update to %1 first.Atualize para a versão %1 primeiro.
-
-
-
+
+ On PS Vita:
Settings -> System Update -> Update by Connecting to a PCNo PS Vita:
Configurações -> Atualização do Sistema -> Atualizar conectando ao PC
-
-
-
+
+ To update through USB:
Put Update Package(.PUP) in this tool's folder and restart the toolPara atualizar pelo USB:
Coloque o Pacote de Atualização (.PUP) na pasta tool's e reinicie a aplicação
-
+ Click button to START!Clique no botão para COMEÇAR!
-
+ Registering device: %1
Input this PIN on PS Vita: %2Registrando dispositivo: %1
Insira este PIN no PS Vita: %2
-
+ Registered device.Dispositivo registrado.
@@ -101,8 +97,8 @@ Insira este PIN no PS Vita: %2
- Trim h-encore to ~6.5MB
- Reduzir h-encore para ~6.5MB
+ Trim h-encore to ~7MB
+ Reduzir h-encore para ~7MB
@@ -171,7 +167,7 @@ Insira este PIN no PS Vita: %2
Reduzindo o tamanho do pacote
-
+ Createing psvimg'sCriando o arquivo psvimg
@@ -211,7 +207,7 @@ Clique no botão para COMEÇAR!
base
-
+ EnglishInglês
diff --git a/src/translations/ru_RU.ts b/src/translations/ru_RU.ts
index f34428c..f3e0787 100644
--- a/src/translations/ru_RU.ts
+++ b/src/translations/ru_RU.ts
@@ -14,55 +14,51 @@
-- Обновление ПО --
-
+ -- Additional applications ---- Дополнительные приложения --
-
-
-
+
+ Fimrware version is not supported by h-encore.Версия ПО не поддерживается
-
-
-
+
+ Update to %1 first.Сначала обновите ПО до %1
-
-
-
+
+ To update through USB:
Put Update Package(.PUP) in this tool's folder and restart the toolПоместите пакет обновления (.PUP) в папку этой программы и перезапустите finalhe
-
-
-
+
+ On PS Vita:
Settings -> System Update -> Update by Connecting to a PCНа PS Vita:
Настройки -> Обновление системы -> Обновить путем подключения к компьютеру
-
+ Click button to START!нажмите Начать!
-
+ Registering device: %1
Input this PIN on PS Vita: %2Регистрация устройства: %1
Введите этот PIN-код на PS Vita: %2
-
+ Registered device.Устройство зарегистрировано
@@ -96,8 +92,8 @@ Input this PIN on PS Vita: %2
- Trim h-encore to ~6.5MB
- Обрезать h-encore до ~6.5МБ
+ Trim h-encore to ~7MB
+ Обрезать h-encore до ~7МБ
@@ -166,7 +162,7 @@ Input this PIN on PS Vita: %2
Обрезается h-encore
-
+ Createing psvimg'sСоздание psvimg
@@ -205,7 +201,7 @@ Click button to START!
base
-
+ EnglishАнглийский
diff --git a/src/translations/tr_TR.ts b/src/translations/tr_TR.ts
index 05ecb57..6ebd476 100644
--- a/src/translations/tr_TR.ts
+++ b/src/translations/tr_TR.ts
@@ -34,54 +34,50 @@
-
+ -- Additional applications --
-
-
-
+
+ Fimrware version is not supported by h-encore.
-
-
-
+
+ Update to %1 first.
-
-
-
+
+ To update through USB:
Put Update Package(.PUP) in this tool's folder and restart the tool
-
-
-
+
+ On PS Vita:
Settings -> System Update -> Update by Connecting to a PC
-
+ Click button to START!Başlamak için düğmeye basın.
-
+ Registering device: %1
Input this PIN on PS Vita: %2Cihaz kaydediliyor: %1
Bu PIN'i PS Vita cihazınızda girin: %2
-
+ Registered device.Cihaz kaydedildi.
@@ -95,8 +91,8 @@ Bu PIN'i PS Vita cihazınızda girin: %2
- Trim h-encore to ~6.5MB
- Gereksiz dosyaları silerek h-encore boyutunu ~6.5MB'ye düşür
+ Trim h-encore to ~7MB
+ Gereksiz dosyaları silerek h-encore boyutunu ~7MB'ye düşür
@@ -173,7 +169,7 @@ Başlamak için düğmeye basın.
PS Vita'nızda İçerik Yöneticisi'ni açın ve bilgisayara bağlayın.
-
+ Createing psvimg'spsvimg oluşturuluyor.
@@ -207,7 +203,7 @@ Lütfen internet bağlantınızı kontrol edin.
base
-
+ Englishİngilizce
diff --git a/src/translations/zh_CN.ts b/src/translations/zh_CN.ts
index a1fd774..cd161b9 100644
--- a/src/translations/zh_CN.ts
+++ b/src/translations/zh_CN.ts
@@ -34,55 +34,51 @@
-- 固件更新 --
-
+ -- Additional applications ---- 附加应用程序 --
-
-
-
+
+ Fimrware version is not supported by h-encore.h-encore不支持的固件版本
-
-
-
+
+ Update to %1 first.请先更新到%1
-
-
-
+
+ To update through USB:
Put Update Package(.PUP) in this tool's folder and restart the tool要通过USB更新:
将更新包(.PUP)放在本工具所在目录内后重启工具
-
-
-
+
+ On PS Vita:
Settings -> System Update -> Update by Connecting to a PC设定 -> 系统升级 -> 连接至电脑进行升级
-
+ Click button to START!现在点击按钮开始!
-
+ Registering device: %1
Input this PIN on PS Vita: %2正在注册设备: %1
请在PSV上输入PIN: %2
-
+ Registered device.设备注册成功
@@ -96,8 +92,8 @@ Input this PIN on PS Vita: %2
- Trim h-encore to ~6.5MB
- 将h-encore瘦身到约6.5MB
+ Trim h-encore to ~7MB
+ 将h-encore瘦身到约7MB
@@ -172,7 +168,7 @@ Click button to START!
在PSV上运行内容管理器并连接到计算机
-
+ Createing psvimg's正在创建psvimg
@@ -205,7 +201,7 @@ Please check your network connection!
base
-
+ English英语
diff --git a/src/translations/zh_TW.ts b/src/translations/zh_TW.ts
index 111cb68..03e1ab9 100644
--- a/src/translations/zh_TW.ts
+++ b/src/translations/zh_TW.ts
@@ -34,55 +34,51 @@
-- 韌體更新 --
-
+ -- Additional applications ---- 額外應用程式 --
-
-
-
+
+ Fimrware version is not supported by h-encore.h-encore無法支援的韌體版本
-
-
-
+
+ Update to %1 first.請先更新到%1
-
-
-
+
+ To update through USB:
Put Update Package(.PUP) in this tool's folder and restart the tool要通過USB連結更新:
將更新檔案(.PUP)放於本軟體所在資料夾内后重開軟體
-
-
-
+
+ On PS Vita:
Settings -> System Update -> Update by Connecting to a PC設定 -> 系統更新 -> 連接至個人電腦更新
-
+ Click button to START!現在點擊按鈕開始!
-
+ Registering device: %1
Input this PIN on PS Vita: %2正在登記裝置: %1
請在PSVita上輸入PIN: %2
-
+ Registered device.裝置登記成功
@@ -96,8 +92,8 @@ Input this PIN on PS Vita: %2
- Trim h-encore to ~6.5MB
- 將h-encore縮減至約6.5MB
+ Trim h-encore to ~7MB
+ 將h-encore縮減至約7MB
@@ -172,7 +168,7 @@ Click button to START!
在PS Vita上執行內容管理器並連接到個人電腦
-
+ Createing psvimg's正在製作psvimg
@@ -205,7 +201,7 @@ Please check your network connection!
base
-
+ English英文
diff --git a/src/version.hh b/src/version.hh
index 72401be..9e845d2 100644
--- a/src/version.hh
+++ b/src/version.hh
@@ -18,7 +18,7 @@
#pragma once
#define FINALHE_VERSION_MAJOR 1
-#define FINALHE_VERSION_MINOR 8
+#define FINALHE_VERSION_MINOR 81
#define _STR(x) #x
#define STR(x) _STR(x)