* refactor(sftp): Optimize file download logic and SSH command execution handling Replace manual chunked downloads with a more concise `sftp.download` method Consistently use `utf8.decode` to process SSH command output Remove redundant code and comments, and simplify the logic * chore: Update `dartssh2` submodule * feat (Temperature Display): Added an option to switch between degrees Celsius and millicelsius Allows users to switch temperature units in server settings, resolving the issue of incorrect temperature display on some devices * chore: Add a participnt * fix(sftp): Fixed a resource leak issue during file downloads and SSH command execution Ensured that remote and local file handles are properly closed during file downloads to prevent resource leaks. Additionally, improved error handling during SSH command execution to ensure that all streams are either successfully completed or properly handled in the event of an error.
169 lines
2.8 KiB
Dart
169 lines
2.8 KiB
Dart
abstract final class GithubIds {
|
|
// Thanks
|
|
// If you want to change your Github ID, please open an issue.
|
|
static const contributors = <GhId>{
|
|
'PaperCube',
|
|
'GT-610',
|
|
'Integral-Tech',
|
|
'its-tom',
|
|
'leganck',
|
|
'azkadev',
|
|
'kalashnikov',
|
|
'calvinweb',
|
|
'No06',
|
|
'QazCetelic',
|
|
'RainSunMe',
|
|
'FrancXPT',
|
|
'Liloupar',
|
|
'dccif',
|
|
'mikropsoft',
|
|
'CakesTwix',
|
|
'dsvf',
|
|
'fei1025',
|
|
'MasedMSD',
|
|
'GitGitro',
|
|
'Shin-suechtig',
|
|
'hypn4'
|
|
};
|
|
|
|
static const participants = <GhId>{
|
|
'jaychoubaby',
|
|
'fecture',
|
|
'Tao173',
|
|
'Jasonzhu1207',
|
|
'QingAnLe',
|
|
'wxdjs',
|
|
'Aeorq',
|
|
'allonmymind',
|
|
'Yuuki-Rin',
|
|
'LittleState',
|
|
'karuboniru',
|
|
'whosphp',
|
|
'Climit',
|
|
'dianso',
|
|
'Jasondeepny',
|
|
'kaliwell',
|
|
'ymxkiss',
|
|
'Ealrang',
|
|
'hange33',
|
|
'yuchen1204',
|
|
'xgzxmytx',
|
|
'wind057',
|
|
'a1564471347',
|
|
'fanzhebufan1',
|
|
'wcbing',
|
|
'balh55y',
|
|
'wc7086',
|
|
'michaelsara',
|
|
'xingleiwu',
|
|
'Cooper098',
|
|
'xushuojie',
|
|
'AniberMokie',
|
|
'LucaLin233',
|
|
'lalasou',
|
|
'ohyoxo',
|
|
'lovechang1986',
|
|
'luckyreny',
|
|
'aliuzzz',
|
|
'58fly',
|
|
'Potterli20',
|
|
'Seifon',
|
|
'bxoooooo',
|
|
'KatharsisKing',
|
|
'mervinniu',
|
|
'L-Super',
|
|
'Tridays',
|
|
'Nebulosa-Cat',
|
|
'dani7959',
|
|
'MoMingRose',
|
|
'sakalakagg',
|
|
'cz32483490',
|
|
'zj1123581321',
|
|
'pctoolsx',
|
|
'pgs666',
|
|
'FHU-yezi',
|
|
'ZRY233',
|
|
'sakuraanzu',
|
|
'licaon-kter',
|
|
'77160860',
|
|
'mijjjj',
|
|
'muyunil',
|
|
'Hua159',
|
|
'jaydong2016',
|
|
'geol',
|
|
'Mooling0602',
|
|
'IllTamer',
|
|
'marlkiller',
|
|
'hlarc',
|
|
'itsandrewpao',
|
|
'StudyingLover',
|
|
'QJAG1024',
|
|
'Wuming-HUST',
|
|
'WolfCanglong',
|
|
'liwenjie119',
|
|
'logce',
|
|
'h-lyf',
|
|
'88484396',
|
|
'honggeigei',
|
|
'likecreep',
|
|
'axlrose',
|
|
'immortal521',
|
|
'PRO-2684',
|
|
'Xiaobao-Yang',
|
|
'Mrhs121',
|
|
'Fudiautobi',
|
|
'papaj-na-wrotkach',
|
|
'kid1412621',
|
|
'smanx',
|
|
'xuanyue1024',
|
|
'RuofengX',
|
|
'rhwong',
|
|
'AstroEngineeer',
|
|
'mochasweet',
|
|
'back-lacking',
|
|
'cainiaojr',
|
|
'MisterMunkerz',
|
|
'CreeperKong',
|
|
'zxf945',
|
|
'cnen2018',
|
|
'xiaomeng9597',
|
|
'mingzhao2019',
|
|
'HHXXYY123',
|
|
'Lancerys',
|
|
'yaziku',
|
|
'yeluosln',
|
|
'FadeFx',
|
|
'Snihc1205',
|
|
'Bjups',
|
|
'4061N',
|
|
'itmagpro',
|
|
'atikattar1104',
|
|
'coldboy404',
|
|
'puskyer',
|
|
'wanababy',
|
|
'toarujs',
|
|
'n4vi98',
|
|
'Android0termux',
|
|
'idunwannagotoschool',
|
|
'jiao114514jiao',
|
|
'jjyou-github',
|
|
'yeluonight',
|
|
'Yinhono',
|
|
'kuvaldini',
|
|
'aliferne',
|
|
'canronglan',
|
|
'nickgirga',
|
|
'xxnuo',
|
|
'sunnysu0608',
|
|
'Staten-Wang',
|
|
'alterkeyy',
|
|
'zhbyu',
|
|
};
|
|
}
|
|
|
|
typedef GhId = String;
|
|
|
|
extension GhIdX on GhId {
|
|
String get url => 'https://github.com/$this';
|
|
}
|