From c906af5bec4af9912152154aba8b96e7b7a24e70 Mon Sep 17 00:00:00 2001 From: bc547 Date: Sat, 23 Mar 2024 10:05:28 +0100 Subject: [PATCH 01/19] Make autoSync more robust for network errors Catch uncaught error in autoSync that caused autoSync to stop syncing --- .../src/services/configSync.service.ts | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/tabby-settings/src/services/configSync.service.ts b/tabby-settings/src/services/configSync.service.ts index fdd5efec..b811c9c0 100644 --- a/tabby-settings/src/services/configSync.service.ts +++ b/tabby-settings/src/services/configSync.service.ts @@ -184,13 +184,17 @@ export class ConfigSyncService { private async autoSync () { while (true) { - if (this.isEnabled() && this.config.store.configSync.auto) { - const cfg = await this.getConfig(this.config.store.configSync.configID) - if (new Date(cfg.modified_at) > this.lastRemoteChange) { - this.logger.info('Remote config changed, downloading') - this.download() - this.lastRemoteChange = new Date(cfg.modified_at) + try { + if (this.isEnabled() && this.config.store.configSync.auto) { + const cfg = await this.getConfig(this.config.store.configSync.configID) + if (new Date(cfg.modified_at) > this.lastRemoteChange) { + this.logger.info('Remote config changed, downloading') + this.download() + this.lastRemoteChange = new Date(cfg.modified_at) + } } + } catch (error) { + this.logger.debug("Recovering from autoSync network error") } await new Promise(resolve => setTimeout(resolve, 60000)) } From 66b76329583ba94bc1350997441645c630ee9ec7 Mon Sep 17 00:00:00 2001 From: bc547 Date: Mon, 25 Mar 2024 16:21:08 +0100 Subject: [PATCH 02/19] Fix lint error Change double quote to single quote for string --- tabby-settings/src/services/configSync.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tabby-settings/src/services/configSync.service.ts b/tabby-settings/src/services/configSync.service.ts index b811c9c0..4fc32e51 100644 --- a/tabby-settings/src/services/configSync.service.ts +++ b/tabby-settings/src/services/configSync.service.ts @@ -194,7 +194,7 @@ export class ConfigSyncService { } } } catch (error) { - this.logger.debug("Recovering from autoSync network error") + this.logger.debug('Recovering from autoSync network error') } await new Promise(resolve => setTimeout(resolve, 60000)) } From 8237785409318078ff9394def4f8488cc98720f6 Mon Sep 17 00:00:00 2001 From: "Tanner B. Hess Webber" Date: Tue, 2 Apr 2024 11:10:02 -0400 Subject: [PATCH 03/19] docs(hacking): adds clarification for installing forks --- HACKING.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/HACKING.md b/HACKING.md index 2382cdd2..730bd204 100644 --- a/HACKING.md +++ b/HACKING.md @@ -23,6 +23,8 @@ sudo apt install libfontconfig-dev libsecret-1-dev libarchive-tools libnss3 liba yarn ``` +_⚠️Note: If you forked this repository, you may need to pull down the tags from this repository before installing node modules. `git pull --tags upstream master`_ + Build Tabby: ``` From 9425920f94117f52a8cfe8253d7e7c4863ef4b94 Mon Sep 17 00:00:00 2001 From: Charles Buffington Date: Tue, 7 May 2024 12:13:19 -0400 Subject: [PATCH 04/19] add setting to hide tray (menubar for macos) --- app/lib/app.ts | 2 +- locale/en-GB.po | 8 ++++++++ tabby-core/src/configDefaults.yaml | 1 + tabby-settings/src/components/settingsTab.component.pug | 9 +++++++++ 4 files changed, 19 insertions(+), 1 deletion(-) diff --git a/app/lib/app.ts b/app/lib/app.ts index a6c8f682..75a288c8 100644 --- a/app/lib/app.ts +++ b/app/lib/app.ts @@ -183,7 +183,7 @@ export class Application { } enableTray (): void { - if (!!this.tray || process.platform === 'linux') { + if (!!this.tray || process.platform === 'linux' || this.configStore.showTray === false) { return } if (process.platform === 'darwin') { diff --git a/locale/en-GB.po b/locale/en-GB.po index 7bb588af..752421d9 100644 --- a/locale/en-GB.po +++ b/locale/en-GB.po @@ -2036,6 +2036,10 @@ msgstr "" msgid "Show Serial connections" msgstr "" +#: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:73 +msgid "Show Tabby in tray or menu bar." +msgstr "" + #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:152 msgid "Show tabs in fullscreen mode" msgstr "" @@ -2044,6 +2048,10 @@ msgstr "" msgid "Show toolbar" msgstr "" +#: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:73 +msgid "Show tray" +msgstr "" + #: locale/tmp-html/tabby-settings/src/components/vaultSettingsTab.component.html:45 msgid "Show vault contents" msgstr "" diff --git a/tabby-core/src/configDefaults.yaml b/tabby-core/src/configDefaults.yaml index 6c1fc36a..9b6244db 100644 --- a/tabby-core/src/configDefaults.yaml +++ b/tabby-core/src/configDefaults.yaml @@ -43,6 +43,7 @@ enableWelcomeTab: true electronFlags: - ['force_discrete_gpu', '0'] enableAutomaticUpdates: true +showTray: true version: 1 vault: null encrypted: false diff --git a/tabby-settings/src/components/settingsTab.component.pug b/tabby-settings/src/components/settingsTab.component.pug index e923d29f..19b1a5fb 100644 --- a/tabby-settings/src/components/settingsTab.component.pug +++ b/tabby-settings/src/components/settingsTab.component.pug @@ -100,6 +100,15 @@ .description(translate) Enable automatic installation of updates when they become available. toggle([(ngModel)]='config.store.enableAutomaticUpdates', (ngModelChange)='saveConfiguration()') + .form-line(*ngIf='hostApp.platform !== Platform.Web') + .header + .title(translate) Show tray + .description(translate) Show Tabby in tray or menu bar. + toggle( + [(ngModel)]='config.store.showTray', + (ngModelChange)='saveConfiguration(true)' + ) + .form-line(*ngIf='hostApp.platform !== Platform.Web') .header .title(translate) Debugging From 242f136a4180c67b5e9e1ef26f161dc4759bddaa Mon Sep 17 00:00:00 2001 From: Riccardo Manzan Date: Sat, 18 May 2024 13:59:21 +0200 Subject: [PATCH 05/19] Eugeny#9656 fix: cli usage on linux --- build/linux/after-install.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/linux/after-install.tpl b/build/linux/after-install.tpl index b0eb562e..596fd34b 100644 --- a/build/linux/after-install.tpl +++ b/build/linux/after-install.tpl @@ -1,7 +1,7 @@ #!/bin/bash cat > '/usr/bin/${executable}' << END #!/bin/sh -'/opt/${productFilename}/${executable}' --no-sandbox $@ +'/opt/${productFilename}/${executable}' --no-sandbox \$@ END chmod +x '/usr/bin/${executable}' From a3fd6f5846dc8bea870fd63008f0a8de9c8baa64 Mon Sep 17 00:00:00 2001 From: Ort Date: Sat, 25 May 2024 17:08:43 +0300 Subject: [PATCH 06/19] typos russian README --- README.ru-RU.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.ru-RU.md b/README.ru-RU.md index 9d41b502..42747921 100644 --- a/README.ru-RU.md +++ b/README.ru-RU.md @@ -29,7 +29,7 @@ [**Tabby**](https://tabby.sh) (ранее **Terminus**) — широко конфигурируемый эмулятор терминала, SSH- и COM-клиент для Windows, macOS и Linux: * Встроенный SSH- и Telnet-клиент и менеджер подключений; -* Встроенный последовтаельный терминал; +* Встроенный последовательный терминал; * Темы и цветовые схемы; * Полностью настраеваемые сочетания клавиш; * Панели; @@ -39,7 +39,7 @@ * Полная поддержка Unicode, включая символы двойной ширины; * Не задыхается при быстром выводе; * Полноценный опыт работы с shell на Windows, включая дополнение слов и команд по Tab (при помощи Clink); -* Втроенное защищённое хранилище для SSH-ключей и настроек; +* Встроенное защищённое хранилище для SSH-ключей и настроек; * SSH-, SFTP- и Telnet-клиент доступен как [веб-приложение](https://tabby.sh/app) (также для [самостоятелньного хостинга](https://github.com/Eugeny/tabby-web)). # Содержание @@ -71,7 +71,7 @@ * Деление окна на несколько панелей; * Вкладки на любой стороне окна; * Опционально закрепляемое окно с глобальной горячей клавишей для вызова («Quake console»); -* Определение прогресса процесса; +* Определение прогресса выполняемого процесса; * Уведомления о завершении процессов; * Защита от выполнения команд при вставке, предупреждения о вставке нескольких строк; * Лигатуры шрифтов; @@ -94,7 +94,7 @@ * Сохранение соединений; * Поддержка ввода readline; -* Опциональый побатный ввод HEX и вывод hexdump; +* Опциональный побатный ввод HEX и вывод hexdump; * Преобразование newline; * Автоматическое восстановление соединения. @@ -115,9 +115,9 @@ * [save-output](https://github.com/Eugeny/tabby-save-output) — запись вывода терминала в файл; * [sync-config](https://github.com/starxg/terminus-sync-config) — синхронизация конфига в Gist или Gitee; * [clippy](https://github.com/Eugeny/tabby-clippy) — плагин-пример, который постоянно будет вас бесить; -* [workspace-manager](https://github.com/composer404/tabby-workspace-manager) — позволяет создавать пользовательские провили рабочего окружеиня на основе конфига; +* [workspace-manager](https://github.com/composer404/tabby-workspace-manager) — позволяет создавать пользовательские профили рабочего окружения на основе конфига; * [search-in-browser](https://github.com/composer404/tabby-search-in-browser) — открывает браузер по умолчанию с текстом, выделенном во вкладке Tabby. -* [sftp-tab](https://github.com/wljince007/tabby-sftp-tab) - open sftp tab for ssh connection like SecureCRT +* [sftp-tab](https://github.com/wljince007/tabby-sftp-tab) - открывает sftp вкладку для ssh соединения, похож на SecureCRT # Темы From 439a7a8d44b21b7420bf128ece8b04f292408eac Mon Sep 17 00:00:00 2001 From: Charles Buffington Date: Mon, 17 Jun 2024 19:26:39 -0400 Subject: [PATCH 07/19] move 'show tray' setting to window settings --- locale/en-GB.po | 4 ++-- tabby-settings/src/components/settingsTab.component.pug | 9 --------- .../src/components/windowSettingsTab.component.pug | 9 +++++++++ 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/locale/en-GB.po b/locale/en-GB.po index 752421d9..1afee621 100644 --- a/locale/en-GB.po +++ b/locale/en-GB.po @@ -2036,7 +2036,7 @@ msgstr "" msgid "Show Serial connections" msgstr "" -#: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:73 +#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:73 msgid "Show Tabby in tray or menu bar." msgstr "" @@ -2048,7 +2048,7 @@ msgstr "" msgid "Show toolbar" msgstr "" -#: locale/tmp-html/tabby-settings/src/components/settingsTab.component.html:73 +#: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:73 msgid "Show tray" msgstr "" diff --git a/tabby-settings/src/components/settingsTab.component.pug b/tabby-settings/src/components/settingsTab.component.pug index 19b1a5fb..e923d29f 100644 --- a/tabby-settings/src/components/settingsTab.component.pug +++ b/tabby-settings/src/components/settingsTab.component.pug @@ -100,15 +100,6 @@ .description(translate) Enable automatic installation of updates when they become available. toggle([(ngModel)]='config.store.enableAutomaticUpdates', (ngModelChange)='saveConfiguration()') - .form-line(*ngIf='hostApp.platform !== Platform.Web') - .header - .title(translate) Show tray - .description(translate) Show Tabby in tray or menu bar. - toggle( - [(ngModel)]='config.store.showTray', - (ngModelChange)='saveConfiguration(true)' - ) - .form-line(*ngIf='hostApp.platform !== Platform.Web') .header .title(translate) Debugging diff --git a/tabby-settings/src/components/windowSettingsTab.component.pug b/tabby-settings/src/components/windowSettingsTab.component.pug index a7b4d705..f3177bba 100644 --- a/tabby-settings/src/components/windowSettingsTab.component.pug +++ b/tabby-settings/src/components/windowSettingsTab.component.pug @@ -121,6 +121,15 @@ h3.mb-3(translate) Window label.btn.btn-secondary(for='frameFull') span(translate) Full +.form-line(*ngIf='hostApp.platform !== Platform.Web && hostApp.platform !== Platform.Linux') + .header + .title(translate) Show tray + .description(translate) Show Tabby in tray or menu bar. + toggle( + [(ngModel)]='config.store.showTray', + (ngModelChange)='saveConfiguration(true)' + ) + h3.mt-4(translate) Docking .form-line(*ngIf='docking') From 8a49c738b4551838d718aa68f3e6aae4b41f5119 Mon Sep 17 00:00:00 2001 From: Charles Buffington Date: Tue, 18 Jun 2024 17:05:19 -0400 Subject: [PATCH 08/19] change from 'show tray' to 'hide tray' --- app/lib/app.ts | 3 ++- locale/en-GB.po | 4 ++-- tabby-core/src/configDefaults.yaml | 2 +- .../src/components/windowSettingsTab.component.pug | 6 +++--- 4 files changed, 8 insertions(+), 7 deletions(-) diff --git a/app/lib/app.ts b/app/lib/app.ts index 75a288c8..8a1406bf 100644 --- a/app/lib/app.ts +++ b/app/lib/app.ts @@ -183,9 +183,10 @@ export class Application { } enableTray (): void { - if (!!this.tray || process.platform === 'linux' || this.configStore.showTray === false) { + if (!!this.tray || process.platform === 'linux' || (this.configStore.hideTray ?? false) === true) { return } + if (process.platform === 'darwin') { this.tray = new Tray(`${app.getAppPath()}/assets/tray-darwinTemplate.png`) this.tray.setPressedImage(`${app.getAppPath()}/assets/tray-darwinHighlightTemplate.png`) diff --git a/locale/en-GB.po b/locale/en-GB.po index 1afee621..c7bdaaf3 100644 --- a/locale/en-GB.po +++ b/locale/en-GB.po @@ -2037,7 +2037,7 @@ msgid "Show Serial connections" msgstr "" #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:73 -msgid "Show Tabby in tray or menu bar." +msgid "Hide Tabby in tray or menu bar." msgstr "" #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:152 @@ -2049,7 +2049,7 @@ msgid "Show toolbar" msgstr "" #: locale/tmp-html/tabby-settings/src/components/windowSettingsTab.component.html:73 -msgid "Show tray" +msgid "Hide tray" msgstr "" #: locale/tmp-html/tabby-settings/src/components/vaultSettingsTab.component.html:45 diff --git a/tabby-core/src/configDefaults.yaml b/tabby-core/src/configDefaults.yaml index 9b6244db..096fa942 100644 --- a/tabby-core/src/configDefaults.yaml +++ b/tabby-core/src/configDefaults.yaml @@ -43,7 +43,7 @@ enableWelcomeTab: true electronFlags: - ['force_discrete_gpu', '0'] enableAutomaticUpdates: true -showTray: true +hideTray: false version: 1 vault: null encrypted: false diff --git a/tabby-settings/src/components/windowSettingsTab.component.pug b/tabby-settings/src/components/windowSettingsTab.component.pug index f3177bba..6ab08ca7 100644 --- a/tabby-settings/src/components/windowSettingsTab.component.pug +++ b/tabby-settings/src/components/windowSettingsTab.component.pug @@ -123,10 +123,10 @@ h3.mb-3(translate) Window .form-line(*ngIf='hostApp.platform !== Platform.Web && hostApp.platform !== Platform.Linux') .header - .title(translate) Show tray - .description(translate) Show Tabby in tray or menu bar. + .title(translate) Hide tray + .description(translate) Hide Tabby in tray or menu bar. toggle( - [(ngModel)]='config.store.showTray', + [(ngModel)]='config.store.hideTray', (ngModelChange)='saveConfiguration(true)' ) From 897e06d329ea04744f2b9e026ead1d665d2abd72 Mon Sep 17 00:00:00 2001 From: "allcontributors[bot]" <46447321+allcontributors[bot]@users.noreply.github.com> Date: Wed, 19 Jun 2024 10:20:40 +0000 Subject: [PATCH 09/19] update README.md [skip ci] --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index f7e629d6..848c4e29 100644 --- a/README.md +++ b/README.md @@ -354,6 +354,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d Mxmilu
Mxmilu

💻 + Charles Buffington
Charles Buffington

💻 From 5adfdd432a836ce737d3668dac8de8bf335c2291 Mon Sep 17 00:00:00 2001 From: "allcontributors[bot]" <46447321+allcontributors[bot]@users.noreply.github.com> Date: Wed, 19 Jun 2024 10:20:41 +0000 Subject: [PATCH 10/19] update README.zh-CN.md [skip ci] --- README.zh-CN.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.zh-CN.md b/README.zh-CN.md index fed1beca..55789378 100644 --- a/README.zh-CN.md +++ b/README.zh-CN.md @@ -332,6 +332,7 @@ Mxmilu
Mxmilu

💻 + Charles Buffington
Charles Buffington

💻 From e120031cb0a345b083f4b3c89d91a824d8b086c6 Mon Sep 17 00:00:00 2001 From: "allcontributors[bot]" <46447321+allcontributors[bot]@users.noreply.github.com> Date: Wed, 19 Jun 2024 10:20:42 +0000 Subject: [PATCH 11/19] update README.ru-RU.md [skip ci] --- README.ru-RU.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.ru-RU.md b/README.ru-RU.md index 42747921..02f7ee42 100644 --- a/README.ru-RU.md +++ b/README.ru-RU.md @@ -333,6 +333,7 @@ Pull-запросы и плагины приветствуются! Mxmilu
Mxmilu

💻 + Charles Buffington
Charles Buffington

💻 From bdcfba10a34a2d43189acccddf3203bebfda4064 Mon Sep 17 00:00:00 2001 From: "allcontributors[bot]" <46447321+allcontributors[bot]@users.noreply.github.com> Date: Wed, 19 Jun 2024 10:20:43 +0000 Subject: [PATCH 12/19] update README.ko-KR.md [skip ci] --- README.ko-KR.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.ko-KR.md b/README.ko-KR.md index b85f1f0b..74379bde 100644 --- a/README.ko-KR.md +++ b/README.ko-KR.md @@ -332,6 +332,7 @@ Pull requests and plugins are welcome! Mxmilu
Mxmilu

💻 + Charles Buffington
Charles Buffington

💻 From a5f4f23301786a605e2a5792c19ad823bf3e474d Mon Sep 17 00:00:00 2001 From: "allcontributors[bot]" <46447321+allcontributors[bot]@users.noreply.github.com> Date: Wed, 19 Jun 2024 10:20:44 +0000 Subject: [PATCH 13/19] update README.it-IT.md [skip ci] --- README.it-IT.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.it-IT.md b/README.it-IT.md index 3f4a19db..38c22aa2 100644 --- a/README.it-IT.md +++ b/README.it-IT.md @@ -333,6 +333,7 @@ Grazie a queste persone meravigliose ([emoji key](https://allcontributors.org/do Mxmilu
Mxmilu

💻 + Charles Buffington
Charles Buffington

💻 From a3a6e3d1375e939e8fd2271101ac3b2dfbd9144a Mon Sep 17 00:00:00 2001 From: "allcontributors[bot]" <46447321+allcontributors[bot]@users.noreply.github.com> Date: Wed, 19 Jun 2024 10:20:45 +0000 Subject: [PATCH 14/19] update README.de-DE.md [skip ci] --- README.de-DE.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.de-DE.md b/README.de-DE.md index 05c5a1f8..e07fd082 100644 --- a/README.de-DE.md +++ b/README.de-DE.md @@ -338,6 +338,7 @@ Dank geht an diese wunderbaren Menschen ([emoji key](https://allcontributors.org Mxmilu
Mxmilu

💻 + Charles Buffington
Charles Buffington

💻 From defe30781bc083991563d9c6aba6080450df420e Mon Sep 17 00:00:00 2001 From: "allcontributors[bot]" <46447321+allcontributors[bot]@users.noreply.github.com> Date: Wed, 19 Jun 2024 10:21:21 +0000 Subject: [PATCH 15/19] update README.id-ID.md [skip ci] --- README.id-ID.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.id-ID.md b/README.id-ID.md index 74b35780..33f1b274 100644 --- a/README.id-ID.md +++ b/README.id-ID.md @@ -337,6 +337,7 @@ Terima kasih kepada mereka yang telah membantu ([emoji key](https://allcontribut Mxmilu
Mxmilu

💻 + Charles Buffington
Charles Buffington

💻 From d718f437f0de298e3ffd8242a9e7e88db08ff8a0 Mon Sep 17 00:00:00 2001 From: "allcontributors[bot]" <46447321+allcontributors[bot]@users.noreply.github.com> Date: Wed, 19 Jun 2024 10:21:24 +0000 Subject: [PATCH 16/19] update .all-contributorsrc [skip ci] --- .all-contributorsrc | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.all-contributorsrc b/.all-contributorsrc index 6a0e9f9a..97c51061 100644 --- a/.all-contributorsrc +++ b/.all-contributorsrc @@ -1292,6 +1292,15 @@ "contributions": [ "code" ] + }, + { + "login": "C41M50N", + "name": "Charles Buffington", + "avatar_url": "https://avatars.githubusercontent.com/u/29805363?v=4", + "profile": "https://cbuff.dev", + "contributions": [ + "code" + ] } ], "contributorsPerLine": 7, From 218fb8130c6f461e39049224e3b4dd33c812b3eb Mon Sep 17 00:00:00 2001 From: "allcontributors[bot]" <46447321+allcontributors[bot]@users.noreply.github.com> Date: Wed, 19 Jun 2024 10:21:49 +0000 Subject: [PATCH 17/19] update README.es-ES.md [skip ci] --- README.es-ES.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.es-ES.md b/README.es-ES.md index f9109b4b..6b7ceb13 100644 --- a/README.es-ES.md +++ b/README.es-ES.md @@ -340,6 +340,7 @@ Gracias a estas maravillosas personas ([emoji key](https://allcontributors.org/d Mxmilu
Mxmilu

💻 + Charles Buffington
Charles Buffington

💻 From cee39b3b9f7637b50ea6801af6f92c707dd29674 Mon Sep 17 00:00:00 2001 From: "allcontributors[bot]" <46447321+allcontributors[bot]@users.noreply.github.com> Date: Wed, 19 Jun 2024 10:21:53 +0000 Subject: [PATCH 18/19] update README.ja-JP.md [skip ci] --- README.ja-JP.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.ja-JP.md b/README.ja-JP.md index ea38bd11..9bf11428 100644 --- a/README.ja-JP.md +++ b/README.ja-JP.md @@ -348,6 +348,7 @@ Windows上では、`Tabby.exe`がある場所と同じ場所に`data`フォル Mxmilu
Mxmilu

💻 + Charles Buffington
Charles Buffington

💻 From 3ea1b7f561fc66fb3c5d700d0917d181feb4ec1e Mon Sep 17 00:00:00 2001 From: "allcontributors[bot]" <46447321+allcontributors[bot]@users.noreply.github.com> Date: Wed, 19 Jun 2024 10:22:22 +0000 Subject: [PATCH 19/19] update README.pt-BR.md [skip ci] --- README.pt-BR.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.pt-BR.md b/README.pt-BR.md index e8309297..6811f251 100644 --- a/README.pt-BR.md +++ b/README.pt-BR.md @@ -341,6 +341,7 @@ Obrigado vai para essas pessoas maravilhosas ([emoji key](https://allcontributor Mxmilu
Mxmilu

💻 + Charles Buffington
Charles Buffington

💻