mirror of
https://github.com/lollipopkit/flutter_server_box.git
synced 2025-12-18 07:44:26 +01:00
add: more contributors
This commit is contained in:
5
lib/data/model/app/github_id.dart
Normal file
5
lib/data/model/app/github_id.dart
Normal file
@@ -0,0 +1,5 @@
|
||||
typedef GhId = String;
|
||||
|
||||
extension GhIdX on GhId {
|
||||
String get url => 'https://github.com/$this ';
|
||||
}
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
class BuildData {
|
||||
static const String name = "ServerBox";
|
||||
static const int build = 416;
|
||||
static const int build = 417;
|
||||
static const String engine = "3.10.6";
|
||||
static const String buildAt = "2023-08-05 12:53:08.311867";
|
||||
static const int modifications = 6;
|
||||
static const String buildAt = "2023-08-05 13:35:14.889342";
|
||||
static const int modifications = 3;
|
||||
}
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
import 'package:flutter/services.dart';
|
||||
|
||||
import '../model/app/github_id.dart';
|
||||
|
||||
/// RegExp for number
|
||||
final numReg = RegExp(r'\s{1,}');
|
||||
|
||||
@@ -16,3 +18,34 @@ const maxDebugLogLines = 100;
|
||||
const pkgName = 'tech.lolli.toolbox';
|
||||
const bgRunChannel = MethodChannel('$pkgName/app_retain');
|
||||
const homeWidgetChannel = MethodChannel('$pkgName/home_widget');
|
||||
|
||||
// Thanks
|
||||
// If you want to change the url, please open an issue.
|
||||
const contributors = <GhId>{
|
||||
'its-tom',
|
||||
'RainSunMe',
|
||||
'kalashnikov',
|
||||
'azkadev',
|
||||
'calvinweb',
|
||||
'Liloupar'
|
||||
};
|
||||
const participants = <GhId>{
|
||||
'jaychoubaby',
|
||||
'fecture',
|
||||
'Tao173',
|
||||
'QingAnLe',
|
||||
'wxdjs',
|
||||
'Aeorq',
|
||||
'allonmymind',
|
||||
'LittleState',
|
||||
'karuboniru',
|
||||
'whosphp',
|
||||
'Climit',
|
||||
'dianso',
|
||||
'Jasondeepny',
|
||||
'kaliwell',
|
||||
'ymxkiss',
|
||||
'Ealrang',
|
||||
'hange33',
|
||||
'yuchen1204',
|
||||
};
|
||||
|
||||
@@ -3,18 +3,3 @@ const baseUrl = '$backendUrl/serverbox';
|
||||
const joinQQGroupUrl = 'https://jq.qq.com/?_wv=1027&k=G0hUmPAq';
|
||||
const myGithub = 'https://github.com/lollipopkit';
|
||||
const appHelpUrl = '$myGithub/flutter_server_box#-help';
|
||||
|
||||
// Thanks
|
||||
// If you want to change the url, please open an issue.
|
||||
const thanksMap = {
|
||||
'its-tom': 'https://github.com/its-tom',
|
||||
'RainSunMe': 'https://github.com/RainSunMe',
|
||||
'fecture': 'https://github.com/fecture',
|
||||
'Tao173': 'https://github.com/Tao173',
|
||||
'QingAnLe': 'https://github.com/QingAnLe',
|
||||
'wxdjs': 'https://github.com/wxdjs',
|
||||
'Aeorq': 'https://github.com/Aeorq',
|
||||
'jaychoubaby': 'https://github.com/jaychoubaby',
|
||||
'allonmymind': 'https://github.com/allonmymind',
|
||||
'azkadev': 'https://github.com/azkadev'
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user