Project: Update TMS.js, Include nw.exe with custom icon, Update author name

This commit is contained in:
TheMitoSan 2023-06-06 15:33:21 -03:00
parent ccf32a9125
commit b27076dcd9
17 changed files with 88 additions and 38 deletions

View file

@ -1,12 +1,14 @@
/*
**************************************************************************************
TMS.js - By TemmieHeartz (@temmieheartz)
TMS.js
Created by TheMitoSan (@themitosan)
https://github.com/themitosan/TMS.js
This file is an original replacement - Because I don't want to deal with jQuery
anymore!
This file exists because I don't want to deal with jQuery anymore!
Original source / motivation: http://youmightnotneedjquery.com/
Original source / motivation:
http://youmightnotneedjquery.com/
**************************************************************************************
*/
@ -247,12 +249,12 @@ const TMS = Object.freeze(Object.seal({
Usage: elementObjects = {HTML_DOM_ID_0: scrollInt, HTML_DOM_ID_1: scrollInt2} and goes on
*/
scrollTop: function(elementObjects){
Object.keys(elementObjects).forEach(function(cItem){
Object.keys(elementObjects).forEach(function(elementId){
const elId = TMS.getElement(elementId);
if (elId !== null){
elId.scrollTop = elementObjects[cItem];
elId.scrollTop = elementObjects[elementId];
} else {
TMS.warn('Unable to scroll element because it does not exist! (' + elementId + ')');
}
@ -353,14 +355,19 @@ const TMS = Object.freeze(Object.seal({
dTime = 1;
}
}
if (tagType[elId.tagType] !== void 0){
dMode = tagType[elId.tagType];
}
if (eStyles.opacity !== ''){
if (eStyles.opacity !== '' && parseFloat(eStyles.opacity) !== 0){
finalOpacity = eStyles.opacity;
}
TMS.css(elementId, {'display': dMode, 'opacity': finalOpacity, 'transition': 'opacity ' + dTime + 'ms'});
TMS.css(elementId, {'display': dMode, 'opacity': 0});
setTimeout(function(){
TMS.css(elementId, {'opacity': finalOpacity, 'transition': 'opacity ' + dTime + 'ms linear 0ms'});
}, 10);
setTimeout(function(){
TMS.css(elementId, {'transition': 'none'});
@ -433,10 +440,10 @@ const TMS = Object.freeze(Object.seal({
*/
setInnerHtml: function(elementId, htmlData){
const elId = TMS.getElement(elementId);
if (elId !== null){
if (elId !== null && elId.innerHTML !== htmlData){
document.getElementById(elementId).innerHTML = htmlData;
} else {
TMS.warn('Unable to set innerHTML because DOM does not exist! (' + elementId + ')');
TMS.warn('Unable to set innerHTML because DOM does not exist or it contains the same innerHTML data (' + elementId + ')');
}
},
@ -444,9 +451,7 @@ const TMS = Object.freeze(Object.seal({
Remove HTML DOM
*/
removeDOM: function(elementId){
const elId = TMS.getElement(elementId);
if (elId !== null){
document.getElementById(elementId).remove();
} else {
@ -495,14 +500,59 @@ const TMS = Object.freeze(Object.seal({
*/
getRect: function(elementId){
var elId = TMS.getElement(elementId);
var res,
elId = TMS.getElement(elementId);
if (elId !== null){
return document.getElementById(elementId).getBoundingClientRect();
res = elId.getBoundingClientRect();
} else {
TMS.warn('Unable to get rect because DOM does not exist! (' + elementId + ')');
}
return res;
},
/*
Get HTML dom coords.
Get element coords based on parent element
T: Y
L: X
W: Width
H: Height
WL: X Pos. + It's own width
TH: Y Pos. + It's own height
*/
getCoords: function(elementId){
var res,
elId = TMS.getElement(elementId);
if (elId !== null){
var top = elId.offsetTop,
left = elId.offsetLeft,
width = elId.getBoundingClientRect().width,
height = elId.getBoundingClientRect().height;
res = {
T: top,
L: left,
W: width,
H: height,
WL: parseFloat(width + left),
TH: parseFloat(top + height)
}
} else {
TMS.warn('Unable to get coords because DOM does not exist! (' + elementId + ')');
}
return res;
}
}));
}));
// Export
exports = TMS;

View file

@ -56,7 +56,7 @@ temp_LANGUAGE = {
"logWindowTitle": "Running fpPS4",
"killEmuStatus": "Main process closed - close fpPS4 log window to go back",
"logCleared": "INFO - Previous log was cleared!",
"about": "fpPS4 Temmie\'s Launcher - Version: %VARIABLE_0%\nCreated by TemmieHeartz\n(https://twitter.com/themitosan)\n\nfpPS4 is created by red-prig\n(https://github.com/red-prig/fpPS4)\n\nPlugin memoryjs is created by Rob--\n(https://github.com/rob--/memoryjs)\n\nPlugin node-stream-zip is created by antelle\n(https://github.com/antelle/node-stream-zip)\n\nSVG icons were obtained from https://www.svgrepo.com/",
"about": "fpPS4 Temmie\'s Launcher - Version: %VARIABLE_0%\n\nCreated by TheMitoSan [Previously known as TemmieHeartz]\n(https://twitter.com/themitosan)\n\nfpPS4 is created by red-prig\n(https://github.com/red-prig/fpPS4)\n\nPlugin memoryjs is created by Rob--\n(https://github.com/rob--/memoryjs)\n\nPlugin node-stream-zip is created by antelle\n(https://github.com/antelle/node-stream-zip)\n\nSVG icons were obtained from https://www.svgrepo.com/",
"mainLog": 'fpPS4 Temmie\'s Launcher - Version: %VARIABLE_0%\nRunning on nw.js (node-webkit) version %VARIABLE_1% [%VARIABLE_2%]',
"settingsErrorCreatePath": "ERROR - Unable to create path!\n(%VARIABLE_0%)\n%VARIABLE_1%",
"settingsErrorfpPS4NotFound": "ERROR - Unable to locate main fpPS4 executable!\nMake sure to select it in Settings or insert it in \"Emu\" folder and click OK.",

View file

@ -78,7 +78,7 @@
"v8_use_siphash": 1,
"want_separate_host_toolset": 0,
"clang": "true",
"nodedir": "C:\\Users\\TemmieHeartz\\.nw-gyp\\0.70.1",
"nodedir": "",
"standalone_static_library": 1,
"msbuild_path": "C:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\Community\\MSBuild\\15.0\\Bin\\MSBuild.exe",
"target": "0.70.1"

View file

@ -22,7 +22,7 @@
"_resolved": "https://registry.npmjs.org/memoryjs/-/memoryjs-3.5.1.tgz",
"_shasum": "9156412cf18ad4ee0f6e57aa9753cc593884ff89",
"_spec": "memoryjs",
"_where": "C:\\Users\\TemmieHeartz\\Desktop\\teste",
"_where": "",
"author": {
"name": "Rob--"
},

View file

@ -1,12 +1,12 @@
### About translations
I would like to thank everyone who contributed to the translation of this project - thanks to all of you, none of this would have been possible! 💜
- English (Default): [TemmieHeartz](https://github.com/themitosan) _(Revisions by [ArbestRi](https://github.com/ArbestRi))_
- Brazilian Portuguese: [TemmieHeartz](https://github.com/themitosan)
- English (Default): [TheMitoSan](https://github.com/themitosan) _(Revisions by [ArbestRi](https://github.com/ArbestRi))_
- Brazilian Portuguese: [TheMitoSan](https://github.com/themitosan)
- French: [Mizmalik](https://github.com/Mizmalik)
- Chinese (Simplified): [nini22P](https://github.com/nini22P)
- Russian: ThatSameGuy _(Revisions by [gandalfthewhite](https://github.com/gandalfthewhite19890404) and [ArtemVideoGames](https://github.com/ArtemVideoGames))_
- Italian: [Dan Adrian Radut (Aka. B8nee)](https://github.com/B8nee)
- Japanese: [mktm235](https://github.com/mktm235)
- Ukrainian: [ArtemVideoGames](https://github.com/ArtemVideoGames) _(Revision by ThatSameGuy)_
- Dutch: [MrSn0wy](https://github.com/MrSn0wy)
- Dutch: [MrSn0wy](https://github.com/MrSn0wy)

View file

@ -8,8 +8,8 @@
"logWindowTitle": "Exécution de fpPS4",
"killEmuStatus": "Le processus principal a été fermé - fermez la fenêtre des logs pour continuer",
"logCleared": "INFO - La liste des journaux a été effacée!",
"about": "fpPS4 Lanceur de Temmie - Version: %VARIABLE_0%\nCréé par TemmieHeartz\n(https://twitter.com/temmieheartz)\n\nfpPS4 a été créé/développé par red-prig\n(https://github.com/red -prig/fpPS4)\n\nLe plugin memoryjs a été créé/développé par Rob--\n(https://github.com/rob--/memoryjs)\n\nLe plugin node-stream-zip a été créé/développé par antelle \n(https://github.com/antelle/node-stream-zip)\n\nLes icônes SVG ont été obtenues à partir de https://www.svgrepo.com/",
"mainLog": "Lanceur de fpPS4 Temmie - Version: %VARIABLE_0%\nUtilisation de nw.js (node-webkit) version %VARIABLE_1% [%VARIABLE_2%]",
"about": "fpPS4 Temmie's Launcher - Version: %VARIABLE_0%\n\nCréé par TheMitoSan\n(https://twitter.com/themitosan)\n\nfpPS4 a été créé/développé par red-prig\n(https://github.com/red -prig/fpPS4)\n\nLe plugin memoryjs a été créé/développé par Rob--\n(https://github.com/rob--/memoryjs)\n\nLe plugin node-stream-zip a été créé/développé par antelle \n(https://github.com/antelle/node-stream-zip)\n\nLes icônes SVG ont été obtenues à partir de https://www.svgrepo.com/",
"mainLog": "fpPS4 Temmie's Launcher - Version: %VARIABLE_0%\nUtilisation de nw.js (node-webkit) version %VARIABLE_1% [%VARIABLE_2%]",
"settingsErrorCreatePath": "ERREUR - Impossible de créer le dossier!\n(%VARIABLE_0%)\n%VARIABLE_1%",
"settingsErrorfpPS4NotFound": "ERREUR - Impossible de trouver l'exécutable fpPS4!\nSélectionnez l'exécutable dans les paramètres ou placez-le dans le dossier \"Emu\" et cliquez sur OK.",
"settingsConfirmRemoveAllGameSettings": "AVERTISSEMENT - Cette option supprimera tous les paramètres de la liste des jeux.\nConfirmez-vous cette action?",

View file

@ -8,7 +8,7 @@
"logWindowTitle": "Eseguendo fpPS4",
"killEmuStatus": "Il processo principale è stato chiuso: chiudi la finestra del log per continuare",
"logCleared": "INFO - L'elenco dei log è stato cancellato!",
"about": "fpPS4 Temmie's Launcher - Versione: %VARIABLE_0%\nCreato da TemmieHeartz\n(https://twitter.com/temmieheartz)\n\nfpPS4 è stato creato/sviluppato da red-prig\n(https://github.com/red-prig/fpPS4)\n\nIl plug-in memoryjs è stato creato/sviluppato da Rob--\n(https://github.com/rob--/memoryjs)\n\nIl plug-in node-stream-zip è stato creato/sviluppato da antelle \n(https://github.com/antelle/node-stream-zip)\n\nLe icone SVG sono state ottenute da https://www.svgrepo.com/",
"about": "fpPS4 Temmie's Launcher - Versione: %VARIABLE_0%\n\nCreato da TheMitoSan\n(https://twitter.com/themitosan)\n\nfpPS4 è stato creato/sviluppato da red-prig\n(https://github.com/red-prig/fpPS4)\n\nIl plug-in memoryjs è stato creato/sviluppato da Rob--\n(https://github.com/rob--/memoryjs)\n\nIl plug-in node-stream-zip è stato creato/sviluppato da antelle \n(https://github.com/antelle/node-stream-zip)\n\nLe icone SVG sono state ottenute da https://www.svgrepo.com/",
"mainLog": "fpPS4 Temmie's Launcher - Versione: %VARIABLE_0%\nUsando nw.js (node-webkit) versione %VARIABLE_1% [%VARIABLE_2%]",
"settingsErrorCreatePath": "ERRORE - Impossibile creare la cartella!\n(%VARIABLE_0%)\n%VARIABLE_1%",
"settingsErrorfpPS4NotFound": "ERRORE - Impossibile trovare l'eseguibile fpPS4!\nSelezionare l'eseguibile nelle impostazioni o posizionarlo all'interno della cartella \"Emu\" e fare clic su ok.",

View file

@ -8,8 +8,8 @@
"logWindowTitle": "fpPS4実行中",
"killEmuStatus": "エミュレーションが終了しました。ログウィンドウを閉じて終了します。",
"logCleared": "情報 - ログを削除しました!",
"about": "fpPS4ランチャー by TemmieHeartz - バージョン: %VARIABLE_0%\n作成者 TemmieHeartz\n(https://twitter.com/temmieheartz)\n\nfpPS4はred-prigによって作成/開発されました\n(https://github.com/red -prig/fpPS4)\n\nmemoryjsプラグインはRob--によって作成/開発されました\n(https://github.com/rob--/memoryjs)\n\nnode-stream-zipプラグインantelleによって作成/開発されました \n(https://github.com/antelle/node-stream-zip)\n\nSVGアイコンは https://www.svgrepo.com/ から取得しました",
"mainLog": "fpPS4ランチャー by TemmieHeartz - バージョン: %VARIABLE_0%\nnw.js (node-webkit) バージョン %VARIABLE_1% [%VARIABLE_2%]",
"about": "fpPS4ランチャー by TheMitoSan - バージョン: %VARIABLE_0%\n\n作成者 TheMitoSan\n(https://twitter.com/themitosan)\n\nfpPS4はred-prigによって作成/開発されました\n(https://github.com/red -prig/fpPS4)\n\nmemoryjsプラグインはRob--によって作成/開発されました\n(https://github.com/rob--/memoryjs)\n\nnode-stream-zipプラグインantelleによって作成/開発されました \n(https://github.com/antelle/node-stream-zip)\n\nSVGアイコンは https://www.svgrepo.com/ から取得しました",
"mainLog": "fpPS4ランチャー by TheMitoSan - バージョン: %VARIABLE_0%\nnw.js (node-webkit) バージョン %VARIABLE_1% [%VARIABLE_2%]",
"settingsErrorCreatePath": "エラー - フォルダの作成に失敗しました\n(%VARIABLE_0%)\n%VARIABLE_1%",
"settingsErrorfpPS4NotFound": "エラー - fpPS4の実行ファイルが見つかりません\n設定で実行可能ファイルを選択するか、「Emu」フォルダーに配置して「OK」をクリックしてください",
"settingsConfirmRemoveAllGameSettings": "警告 - このオプションはゲームリストからすべての設定を削除します\n実行しますか",

View file

@ -8,8 +8,8 @@
"logWindowTitle": "fpPS4 is draaiend",
"killEmuStatus": "Het hoofdproces is afgesloten - sluit het fpPS4 log venster om terug te gaan",
"logCleared": "INFO - De laaste log is gewist!",
"about": "Temmie's fpPS4 Launcher - Versie: %VARIABLE_0%\nGemaakt door TemmieHeartz\n(https://twitter.com/themitosan)\n\nfpPS4 is gemaakt door red-prig\n(https://github.com/red-prig/fpPS4)\n\nPlugin memoryjs is gemaakt door Rob--\n(https://github.com/rob--/memoryjs)\n\nPlugin node-stream-zip is gemaakt door antelle\n(https://github.com/antelle/node-stream-zip)\n\nSVG iconen zijn van https://www.svgrepo.com/",
"mainLog": "Temmie's fpPS4 Launcher - Version: %VARIABLE_0%\nDraaiend op nw.js (node-webkit) versie %VARIABLE_1% [%VARIABLE_2%]",
"about": "fpPS4 Temmie's Launcher - Versie: %VARIABLE_0%\n\nGemaakt door TheMitoSan\n(https://twitter.com/themitosan)\n\nfpPS4 is gemaakt door red-prig\n(https://github.com/red-prig/fpPS4)\n\nPlugin memoryjs is gemaakt door Rob--\n(https://github.com/rob--/memoryjs)\n\nPlugin node-stream-zip is gemaakt door antelle\n(https://github.com/antelle/node-stream-zip)\n\nSVG iconen zijn van https://www.svgrepo.com/",
"mainLog": "fpPS4 Temmie's Launcher - Version: %VARIABLE_0%\nDraaiend op nw.js (node-webkit) versie %VARIABLE_1% [%VARIABLE_2%]",
"settingsErrorCreatePath": "ERROR - De kocatie kon niet aangemaakt worden!\n(%VARIABLE_0%)\n%VARIABLE_1%",
"settingsErrorfpPS4NotFound": "ERROR - De fpPS4 executable is niet gevonden!\nZorg ervoor dat het geselecteerd is in de instellingen of plaats het in de map \"Emu\" en klik op OK.",
"settingsConfirmRemoveAllGameSettings": "WAARSCHUWING - Deze actie verwijdert de instellingen van alle apps/games.\nWil je doorgaan?",

View file

@ -8,7 +8,7 @@
"logWindowTitle": "Executando fpPS4",
"killEmuStatus": "Processo principal foi fechado - feche a janela do log para continuar",
"logCleared": "INFO - A lista de log foi limpa!",
"about": "fpPS4 Temmie's Launcher - Versão: %VARIABLE_0%\nCriado por TemmieHeartz\n(https://twitter.com/temmieheartz)\n\nfpPS4 foi criado / desenvolvido por red-prig\n(https://github.com/red-prig/fpPS4)\n\nPlugin memoryjs foi criado / desenvolvido por Rob--\n(https://github.com/rob--/memoryjs)\n\nPlugin node-stream-zip foi criado / desenvolvido por antelle\n(https://github.com/antelle/node-stream-zip)\n\nÍcones SVG foram obtidos através do site https://www.svgrepo.com/",
"about": "fpPS4 Temmie's Launcher - Versão: %VARIABLE_0%\n\nCriado por TheMitoSan\n[Anteriormente conhecida como TemmieHeartz]\n(https://twitter.com/themitosan)\n\nfpPS4 foi criado / desenvolvido por red-prig\n(https://github.com/red-prig/fpPS4)\n\nPlugin memoryjs foi criado / desenvolvido por Rob--\n(https://github.com/rob--/memoryjs)\n\nPlugin node-stream-zip foi criado / desenvolvido por antelle\n(https://github.com/antelle/node-stream-zip)\n\nÍcones SVG foram obtidos através do site https://www.svgrepo.com/",
"mainLog": "fpPS4 Temmie's Launcher - Versão: %VARIABLE_0%\nUsando nw.js (node-webkit) versão %VARIABLE_1% [%VARIABLE_2%]",
"settingsErrorCreatePath": "ERRO - Não foi possível criar a pasta!\n(%VARIABLE_0%)\n%VARIABLE_1%",
"settingsErrorfpPS4NotFound": "ERRO - Não foi possível encontrar o executável do fpPS4!\nSelecione o executável nas configurações ou coloque ele dentro da pasta \"Emu\" e clique em ok.",

View file

@ -8,7 +8,7 @@
"logWindowTitle": "Запуск fpPS4",
"killEmuStatus": "Основной процесс был закрыт - закройте окно лога для продолжения работы",
"logCleared": "ИНФО - Список логов был очищен!",
"about": "fpPS4 Temmie's Launcher - Версия: %VARIABLE_0%\nСоздано TemmieHeartz\n(https://twitter.com/temmieheartz)\n\nfpPS4 создан red-prig\n(https://github.com/red-prig/fpPS4)\n\nПлагин memoryjs создан Rob--\n(https://github.com/rob--/memoryjs)\n\nПлагин node-stream-zip создан antelle\n(https://github.com/antelle/node-stream-zip)\n\nSVG иконки были взяты из https://www.svgrepo.com/",
"about": "fpPS4 Temmie's Launcher - Версия: %VARIABLE_0%\n\nСоздано TheMitoSan\n(https://twitter.com/themitosan)\n\nfpPS4 создан red-prig\n(https://github.com/red-prig/fpPS4)\n\nПлагин memoryjs создан Rob--\n(https://github.com/rob--/memoryjs)\n\nПлагин node-stream-zip создан antelle\n(https://github.com/antelle/node-stream-zip)\n\nSVG иконки были взяты из https://www.svgrepo.com/",
"mainLog": "fpPS4 Temmie's Launcher - Версия: %VARIABLE_0%\nИспользование nw.js (node-webkit) версия %VARIABLE_1% [%VARIABLE_2%]",
"settingsErrorCreatePath": "ОШИБКА - Папка не может быть создана!\n(%VARIABLE_0%)\n%VARIABLE_1%",
"settingsErrorfpPS4NotFound": "ОШИБКА - Не удалось найти исполняемый файл fpPS4!\nВыберите исполняемый файл в настройках или поместите его внутрь \"Emu\" и нажмите OK.",

View file

@ -8,7 +8,7 @@
"logWindowTitle": "Запуск fpPS4",
"killEmuStatus": "Основний процес було закрито - закрийте вікно логу для продовження роботи",
"logCleared": "ІНФО - Список логу був очищений!",
"about": "fpPS4 Temmie's Launcher - Версія: %VARIABLE_0%\nСтворено TemmieHeartz\n(https://twitter.com/temmieheartz)\n\nfpPS4 створено red-prig\n(https://github.com/red-prig/fpPS4)\n\nПлагин memoryjs створено Rob--\n(https://github.com/rob--/memoryjs)\n\nПлагин node-stream-zip створено antelle\n(https://github.com/antelle/node-stream-zip)\n\nSVG іконки були взяті з https://www.svgrepo.com/",
"about": "fpPS4 Temmie's Launcher - Версія: %VARIABLE_0%\n\nСтворено TheMitoSan\n(https://twitter.com/themitosan)\n\nfpPS4 створено red-prig\n(https://github.com/red-prig/fpPS4)\n\nПлагин memoryjs створено Rob--\n(https://github.com/rob--/memoryjs)\n\nПлагин node-stream-zip створено antelle\n(https://github.com/antelle/node-stream-zip)\n\nSVG іконки були взяті з https://www.svgrepo.com/",
"mainLog": "fpPS4 Temmie's Launcher - Версія: %VARIABLE_0%\nВикористання nw.js (node-webkit) версія %VARIABLE_1% [%VARIABLE_2%]",
"settingsErrorCreatePath": "ПОМИЛКА - Папка не може бути створена!\n(%VARIABLE_0%)\n%VARIABLE_1%",
"settingsErrorfpPS4NotFound": "ПОМИЛКА - Не вдалось знайти виконавчий файл fpPS4!\nВиберіть виконавчий файл в налаштуваннях або помістіть його всередину \"Emu\" та натисніть OK.",

View file

@ -8,7 +8,7 @@
"logWindowTitle": "Running fpPS4",
"killEmuStatus": "主进程被关闭 - 关闭日志窗口以继续",
"logCleared": "INFO - 日志已被清除!",
"about": "fpPS4 Temmie's Launcher - 版本:%VARIABLE_0%\n由 TemmieHeartz 创建\n(https://twitter.com/temmieheartz)\n\nfpPS4 由 red-prig 创建\n(https://github.com/red-prig/fpPS4)\n\n插件 memoryjs 由 Rob-- 创建\n(https://github.com/rob--/memoryjs)\n\n插件 node-stream-zip 由 antelle 创建\n(https://github.com/antelle/node-stream-zip)\n\nSVG 图标来自 https://www.svgrepo.com/",
"about": "fpPS4 Temmie's Launcher - 版本:%VARIABLE_0%\n\n由 TheMitoSan 创建\n(https://twitter.com/themitosan)\n\nfpPS4 由 red-prig 创建\n(https://github.com/red-prig/fpPS4)\n\n插件 memoryjs 由 Rob-- 创建\n(https://github.com/rob--/memoryjs)\n\n插件 node-stream-zip 由 antelle 创建\n(https://github.com/antelle/node-stream-zip)\n\nSVG 图标来自 https://www.svgrepo.com/",
"mainLog": "fpPS4 Temmie's Launcher - 版本: %VARIABLE_0%\n运行中的 nw.js (node-webkit) 版本: %VARIABLE_1% [%VARIABLE_2%]",
"settingsErrorCreatePath": "ERROR - 无法创建文件夹!\n(%VARIABLE_0%)\n%VARIABLE_1%",
"settingsErrorfpPS4NotFound": "ERROR - 无法找到 fpPS4 的可执行文件!\n在设置中选择可执行文件或将其放在 \"Emu\" 文件夹中,然后点击确定。",

View file

@ -1,3 +1,3 @@
@echo off
title Running fpPS4 Temmie's Launcher - Please wait...
start /b Nwjs\nw .
start /b Nwjs\nw .

BIN
Nwjs/nw.exe Normal file

Binary file not shown.

View file

@ -1,8 +1,8 @@
# fpPS4 Temmie's Launcher
A simple launcher for [fpPS4 project](https://github.com/red-prig/fpPS4/) - created just for fun.
Created by TheMitoSan (Previously known as TemmieHeartz), This is a simple launcher created for [fpPS4](https://github.com/red-prig/fpPS4/) project.
<p align="center">
<img src="https://pbs.twimg.com/media/Fkt3QiDXgAAoPTy?format=jpg&name=large" width="750">
<img src="https://pbs.twimg.com/media/Fkt3QiDXgAAoPTy?format=jpg&name=large" width="750">
</p>
## How to install
@ -17,6 +17,6 @@ You can setup both launcher and emulator using [this tutorial](https://docs.goog
## External plugins used on this project
- [memoryjs](https://github.com/rob--/memoryjs) - created by [Rob--](https://github.com/rob--)
- [node-stream-zip](https://github.com/antelle/node-stream-zip) - created by [antelle](https://github.com/antelle)
- [TMS.js](https://github.com/temmieheartz/TMS.js) by [TemmieHeartz](https://github.com/temmieheartz/) <sup><i>(Hi!)</i></sup>
- [TMS.js](https://github.com/themitosan/TMS.js) by [TheMitoSan](https://github.com/themitosan/) <sup><i>(Hi!)</i></sup>
<u><i><b>IMPORTANT</b>: This software does not allow you to obtain free PS4 Games / Apps.</i></u>

View file

@ -1,12 +1,12 @@
{
"version": "1.2.1",
"license": "GPL-2",
"author": "TheMitoSan",
"main": "App/index.htm",
"author": "TemmieHeartz",
"name": "fpPS4 Temmie's Launcher",
"chromium-args": "--disable-raf-throttling",
"description": "A simple launcher for fpPS4 project",
"repository": "https://github.com/temmieheartz/fpPS4-Temmie-s-Launcher",
"repository": "https://github.com/themitosan/fpPS4-Temmie-s-Launcher",
"window": {
"frame": true,
"width": 1186,