Skip to content

Commit 572f0bf

Browse files
SYM01dependabot[bot]transifex-integration[bot]
authored
Version 1.1.0: Support Import/Export (#31)
* update github action * minor change to System profile * Build(deps): Bump nanoid from 3.3.7 to 3.3.8 (#21) Bumps [nanoid](https://github.com/ai/nanoid) from 3.3.7 to 3.3.8. - [Release notes](https://github.com/ai/nanoid/releases) - [Changelog](https://github.com/ai/nanoid/blob/main/CHANGELOG.md) - [Commits](ai/nanoid@3.3.7...3.3.8) --- updated-dependencies: - dependency-name: nanoid dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Avoid blocking 401 authentication request (#22) (#23) * fix 401 issue (#22) * enablle github action on develop branch * Support Firefox (#18) * Adapt firefox * support firefore auto publish * support firefox, and optimized UX * [i18n] Updates for file public/_locales/en/messages.json (#25) * [i18n] Translate messages.json in pt_BR 100% reviewed source file: 'messages.json' on 'pt_BR'. * [i18n] Translate messages.json in zh_CN 100% reviewed source file: 'messages.json' on 'zh_CN'. * [i18n] Translate messages.json in zh_TW 100% reviewed source file: 'messages.json' on 'zh_TW'. * [i18n] Translate messages.json in pt_BR 100% reviewed source file: 'messages.json' on 'pt_BR'. * update English i18n msg --------- Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com> Co-authored-by: SYM01 <33443792+SYM01@users.noreply.github.com> * sentry integration (#29) * [WIP] support exporting * [WIP] support import/export settings (#7) * Support import/export profiles and close #7 (#30) * implemented an utility to export/import settings * optimized description * [i18n] Updates for file public/_locales/en/messages.json (#32) * [i18n] Translate messages.json in pt_BR 100% reviewed source file: 'messages.json' on 'pt_BR'. * [i18n] Translate messages.json in zh_TW 100% reviewed source file: 'messages.json' on 'zh_TW'. * [i18n] Translate messages.json in zh_CN 100% reviewed source file: 'messages.json' on 'zh_CN'. --------- Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
1 parent c75fa81 commit 572f0bf

21 files changed

+1810
-71
lines changed

.env

+2-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
VITE_APP_TITLE=Proxyverse
1+
VITE_APP_TITLE=Proxyverse
2+
VITE_SENTRY_DSN=https://5679a415cbd7b9dfb6ee538a116b7f0c@o4508663181148160.ingest.us.sentry.io/4508663190781952

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,6 @@ stats.html
2525
*.njsproj
2626
*.sln
2727
*.sw?
28+
29+
# Sentry Config File
30+
.env.sentry-build-plugin

components.d.ts

+2
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,11 @@ declare module 'vue' {
4141
ATable: typeof import('@arco-design/web-vue')['Table']
4242
ATextarea: typeof import('@arco-design/web-vue')['Textarea']
4343
ATooltip: typeof import('@arco-design/web-vue')['Tooltip']
44+
ATypographyParagraph: typeof import('@arco-design/web-vue')['TypographyParagraph']
4445
ATypographyText: typeof import('@arco-design/web-vue')['TypographyText']
4546
AutoSwitchInput: typeof import('./src/components/configs/AutoSwitchInput.vue')['default']
4647
AutoSwitchPacPreview: typeof import('./src/components/configs/AutoSwitchPacPreview.vue')['default']
48+
PreferencePage: typeof import('./src/components/PreferencePage.vue')['default']
4749
ProfileConfig: typeof import('./src/components/ProfileConfig.vue')['default']
4850
ProfileSelector: typeof import('./src/components/configs/ProfileSelector.vue')['default']
4951
ProxyServerInput: typeof import('./src/components/configs/ProxyServerInput.vue')['default']

0 commit comments

Comments
 (0)