refactor: rename app fai_studio -> chain_studio
Some checks are pending
Security / Security check (push) Waiting to run
Some checks are pending
Security / Security check (push) Waiting to run
Studio is the Ch∆In product's GUI, not a F∆I-vendor app. Rename the Flutter package, all package: imports, and the build identity across platforms: linux/windows CMake BINARY_NAME + project, Windows Runner.rc fields, macOS PRODUCT_NAME / bundle id (ai.flemming.chain.chainStudio) / .app + scheme BuildableName. Update the client-SDK + flow-editor deps to their renamed chain_* packages (path + git URL). Company/copyright fields now read Flemming.AI. flutter analyze: clean. Signed-off-by: flemming-it <stefan.a.flemming@googlemail.com>
This commit is contained in:
parent
c27bb29ba0
commit
68d23ab7dd
25 changed files with 73 additions and 73 deletions
|
|
@ -7,7 +7,7 @@
|
|||
import 'dart:convert';
|
||||
import 'dart:io';
|
||||
|
||||
import 'package:fai_studio/data/fai_log.dart';
|
||||
import 'package:chain_studio/data/fai_log.dart';
|
||||
import 'package:flutter_test/flutter_test.dart';
|
||||
|
||||
void main() {
|
||||
|
|
|
|||
|
|
@ -6,8 +6,8 @@
|
|||
|
||||
import 'package:flutter/widgets.dart';
|
||||
import 'package:flutter_test/flutter_test.dart';
|
||||
import 'package:fai_studio/data/friendly_error.dart';
|
||||
import 'package:fai_studio/l10n/app_localizations.dart';
|
||||
import 'package:chain_studio/data/friendly_error.dart';
|
||||
import 'package:chain_studio/l10n/app_localizations.dart';
|
||||
|
||||
class _FakeGrpcError {
|
||||
final int code;
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@ What's NOT here yet:
|
|||
## Running
|
||||
|
||||
```bash
|
||||
cd fai_studio
|
||||
cd chain_studio
|
||||
flutter test test/integration/
|
||||
```
|
||||
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@
|
|||
import 'dart:async';
|
||||
import 'dart:io';
|
||||
|
||||
import 'package:fai_client_sdk/fai_client_sdk.dart';
|
||||
import 'package:chain_client_sdk/chain_client_sdk.dart';
|
||||
import 'package:flutter_test/flutter_test.dart';
|
||||
|
||||
class HubFixture {
|
||||
|
|
@ -80,7 +80,7 @@ class HubFixture {
|
|||
throw StateError('fai binary not found');
|
||||
}
|
||||
|
||||
final tempDir = await Directory.systemTemp.createTemp('fai_studio_test_');
|
||||
final tempDir = await Directory.systemTemp.createTemp('chain_studio_test_');
|
||||
final port = await _pickFreePort();
|
||||
final addr = '127.0.0.1:$port';
|
||||
|
||||
|
|
|
|||
|
|
@ -3,8 +3,8 @@ import 'package:flutter/services.dart' show rootBundle;
|
|||
import 'package:flutter_test/flutter_test.dart';
|
||||
import 'package:flutter_markdown_plus/flutter_markdown_plus.dart';
|
||||
import 'package:flutter_localizations/flutter_localizations.dart';
|
||||
import 'package:fai_studio/l10n/app_localizations.dart';
|
||||
import 'package:fai_studio/theme/theme.dart';
|
||||
import 'package:chain_studio/l10n/app_localizations.dart';
|
||||
import 'package:chain_studio/theme/theme.dart';
|
||||
|
||||
/// Recreates the exact DocReaderSheet code path that
|
||||
/// welcome.dart uses, including FaiTheme.markdownStyle, so a
|
||||
|
|
|
|||
|
|
@ -6,8 +6,8 @@
|
|||
|
||||
import 'package:flutter/widgets.dart';
|
||||
import 'package:flutter_test/flutter_test.dart';
|
||||
import 'package:fai_studio/data/hub.dart';
|
||||
import 'package:fai_studio/main.dart';
|
||||
import 'package:chain_studio/data/hub.dart';
|
||||
import 'package:chain_studio/main.dart';
|
||||
|
||||
void main() {
|
||||
testWidgets('Studio shell boots + sidebar shows brand on hover',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue