├── .gitchangelog.rc ├── .gitignore ├── .gitmodules ├── .metadata ├── .prettierrc ├── .release_notes.tpl ├── .stignore └── README.md /.gitchangelog.rc: -------------------------------------------------------------------------------- 1 | #output_engine = mustache("markdown") 2 | output_engine = mustache(".release_notes.tpl") 3 | 4 | 5 | tag_filter_regexp = r'^v?[0-9]+\.[0-9]+(\.[0-9]+)?$' 6 | 7 | ignore_regexps = [ 8 | r'@minor', r'!minor', 9 | r'@cosmetic', r'!cosmetic', 10 | r'@refactor', r'!refactor', 11 | r'@wip', r'!wip', 12 | r'^([cC]hg|[fF]ix|[nN]ew)\s*:\s*[p|P]kg:', 13 | r'^([cC]hg|[fF]ix|[nN]ew)\s*:\s*[d|D]ev:', 14 | r'^(.{3,3}\s*:)?\s*[fF]irst commit.?\s*$', 15 | r'^$', ## ignore commits with empty messages 16 | r'release: *', 17 | ] -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Miscellaneous 2 | *.class 3 | *.log 4 | *.pyc 5 | *.swp 6 | .DS_Store 7 | .atom/ 8 | .buildlog/ 9 | .history 10 | .svn/ 11 | migrate_working_dir/ 12 | .github/help 13 | # IntelliJ related 14 | *.iml 15 | *.ipr 16 | *.iws 17 | .idea/ 18 | 19 | # The .vscode folder contains launch configuration and tasks you configure in 20 | # VS Code which you may wish to be included in version control, so this line 21 | # is commented out by default. 22 | #.vscode/ 23 | 24 | # Flutter/Dart/Pub related 25 | **/doc/api/ 26 | **/ios/Flutter/.last_build_id 27 | .dart_tool/ 28 | .flutter-plugins 29 | .flutter-plugins-dependencies 30 | .packages 31 | .pub-cache/ 32 | .pub/ 33 | /build/ 34 | 35 | # generated files 36 | **/*.g.dart 37 | **/*.freezed.dart 38 | **/*.mapper.dart 39 | **/*.gen.dart 40 | **/*.dll 41 | **/*.dylib 42 | **/*.xcframework 43 | /dist/ 44 | 45 | /assets/core/* 46 | !/assets/core/.gitkeep 47 | 48 | # Symbolication related 49 | app.*.symbols 50 | 51 | # Obfuscation related 52 | app.*.map.json 53 | 54 | # Android Studio will place build artifacts here 55 | /android/app/debug 56 | /android/app/profile 57 | /android/app/release 58 | 59 | 60 | /data -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "libcore"] 2 | path = libcore 3 | url = https://github.com/hiddify/hiddify-next-core 4 | -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- 1 | # This file tracks properties of this Flutter project. 2 | # Used by Flutter tool to assess capabilities and perform upgrades etc. 3 | # 4 | # This file should be version controlled and should not be manually edited. 5 | 6 | version: 7 | revision: "ef1af02aead6fe2414f3aafa5a61087b610e1332" 8 | channel: "stable" 9 | 10 | project_type: app 11 | 12 | # Tracks metadata for the flutter migrate command 13 | migration: 14 | platforms: 15 | - platform: root 16 | create_revision: ef1af02aead6fe2414f3aafa5a61087b610e1332 17 | base_revision: ef1af02aead6fe2414f3aafa5a61087b610e1332 18 | - platform: android 19 | create_revision: ef1af02aead6fe2414f3aafa5a61087b610e1332 20 | base_revision: ef1af02aead6fe2414f3aafa5a61087b610e1332 21 | - platform: ios 22 | create_revision: ef1af02aead6fe2414f3aafa5a61087b610e1332 23 | base_revision: ef1af02aead6fe2414f3aafa5a61087b610e1332 24 | - platform: linux 25 | create_revision: ef1af02aead6fe2414f3aafa5a61087b610e1332 26 | base_revision: ef1af02aead6fe2414f3aafa5a61087b610e1332 27 | - platform: macos 28 | create_revision: ef1af02aead6fe2414f3aafa5a61087b610e1332 29 | base_revision: ef1af02aead6fe2414f3aafa5a61087b610e1332 30 | - platform: windows 31 | create_revision: ef1af02aead6fe2414f3aafa5a61087b610e1332 32 | base_revision: ef1af02aead6fe2414f3aafa5a61087b610e1332 33 | 34 | # User provided section 35 | 36 | # List of Local paths (relative to this file) that should be 37 | # ignored by the migrate tool. 38 | # 39 | # Files that are not part of the templates will be ignored by default. 40 | unmanaged_files: 41 | - 'lib/main.dart' 42 | - 'ios/Runner.xcodeproj/project.pbxproj' 43 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "overrides": [ 3 | { 4 | "files": ".github/**", 5 | "options": { 6 | "singleQuote": true 7 | } 8 | } 9 | ] 10 | } -------------------------------------------------------------------------------- /.release_notes.tpl: -------------------------------------------------------------------------------- 1 | {{#general_title}} 2 | # {{{title}}} 3 | 4 | 5 | {{/general_title}} 6 | {{#versions}} 7 | ## {{{label}}} 8 | 9 | {{#sections}} 10 | #### {{{label}}} 11 | 12 | {{#commits}} 13 | * {{{subject}}} 14 | {{#body}} 15 | _{{{body}}}_ 16 | {{/body}} 17 | 18 | {{/commits}} 19 | {{/sections}} 20 | 21 | 22 | {{/versions}} -------------------------------------------------------------------------------- /.stignore: -------------------------------------------------------------------------------- 1 | #include /.stignore 2 | #include /android/.stignore 3 | #include /ios/.stignore 4 | #include /linux/.stignore 5 | #include /windows/.stignore 6 | #include /macos/.stignore 7 | 8 | .git 9 | 10 | .DS_Store 11 | .idea 12 | .dart_tool 13 | 14 | .flutter-plugins 15 | .flutter-plugins-dependencies 16 | 17 | .packages 18 | .pub-cache 19 | .pub 20 | build 21 | 22 | *.log 23 | *.iml 24 | *.ipr 25 | *.iws 26 | 27 | **/ios/Flutter/.last_build_id 28 | 29 | /android/app/debug 30 | /android/app/profile 31 | /android/app/release 32 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 项目已移交 2 | 3 | 此项目已移交给新维护者,将在以下地址继续开发和维护: 4 | 5 | **新的项目地址** 6 | 7 | [HiddifyWithPanels](https://github.com/sayyidwilhelmi/HiddifyWithPanels) 8 | 9 | 感谢您对项目的支持!请在新仓库中获取最新的更新、文档和支持。 --------------------------------------------------------------------------------