diff --git a/App/js/TMS.js b/App/js/TMS.js index 84b9e34..7035f41 100644 --- a/App/js/TMS.js +++ b/App/js/TMS.js @@ -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; } -})); \ No newline at end of file +})); + +// Export +exports = TMS; \ No newline at end of file diff --git a/App/js/language.js b/App/js/language.js index e3e2e7b..89a7481 100644 --- a/App/js/language.js +++ b/App/js/language.js @@ -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.", diff --git a/App/node_modules/memoryjs/build/config.gypi b/App/node_modules/memoryjs/build/config.gypi index e1e6876..3d8a355 100644 --- a/App/node_modules/memoryjs/build/config.gypi +++ b/App/node_modules/memoryjs/build/config.gypi @@ -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" diff --git a/App/node_modules/memoryjs/package.json b/App/node_modules/memoryjs/package.json index bc61ba7..423c168 100644 --- a/App/node_modules/memoryjs/package.json +++ b/App/node_modules/memoryjs/package.json @@ -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--" }, diff --git a/Lang/about-translations.md b/Lang/about-translations.md index e688065..677d54e 100644 --- a/Lang/about-translations.md +++ b/Lang/about-translations.md @@ -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) \ No newline at end of file diff --git a/Lang/fr-fr.json b/Lang/fr-fr.json index 606d028..7d258ad 100644 --- a/Lang/fr-fr.json +++ b/Lang/fr-fr.json @@ -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?", diff --git a/Lang/it-it.json b/Lang/it-it.json index 1fc3a65..c936258 100644 --- a/Lang/it-it.json +++ b/Lang/it-it.json @@ -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.", diff --git a/Lang/ja-ja.json b/Lang/ja-ja.json index abec280..f5f707b 100644 --- a/Lang/ja-ja.json +++ b/Lang/ja-ja.json @@ -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実行しますか?", diff --git a/Lang/nl-nl.json b/Lang/nl-nl.json index e45a572..0fd5ec9 100644 --- a/Lang/nl-nl.json +++ b/Lang/nl-nl.json @@ -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?", diff --git a/Lang/pt-br.json b/Lang/pt-br.json index a19001f..8777bb7 100644 --- a/Lang/pt-br.json +++ b/Lang/pt-br.json @@ -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.", diff --git a/Lang/ru-ru.json b/Lang/ru-ru.json index f9e81aa..c3f0be0 100644 --- a/Lang/ru-ru.json +++ b/Lang/ru-ru.json @@ -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.", diff --git a/Lang/uk-ua.json b/Lang/uk-ua.json index 487942d..cd5d6c6 100644 --- a/Lang/uk-ua.json +++ b/Lang/uk-ua.json @@ -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.", diff --git a/Lang/zh-s.json b/Lang/zh-s.json index e1aea54..255b0f1 100644 --- a/Lang/zh-s.json +++ b/Lang/zh-s.json @@ -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\" 文件夹中,然后点击确定。", diff --git a/Launcher.bat b/Launcher.bat index b624203..bc1f9a5 100644 --- a/Launcher.bat +++ b/Launcher.bat @@ -1,3 +1,3 @@ @echo off title Running fpPS4 Temmie's Launcher - Please wait... -start /b Nwjs\nw . +start /b Nwjs\nw . \ No newline at end of file diff --git a/Nwjs/nw.exe b/Nwjs/nw.exe new file mode 100644 index 0000000..0829db5 Binary files /dev/null and b/Nwjs/nw.exe differ diff --git a/README.md b/README.md index 7f785ca..fa87073 100644 --- a/README.md +++ b/README.md @@ -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.

- +

## 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/) (Hi!) +- [TMS.js](https://github.com/themitosan/TMS.js) by [TheMitoSan](https://github.com/themitosan/) (Hi!) IMPORTANT: This software does not allow you to obtain free PS4 Games / Apps. diff --git a/package.json b/package.json index b441a40..8f90e64 100644 --- a/package.json +++ b/package.json @@ -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,