Single Flutter package at the repo root. All code, tests, assets, and platform directories moved from app/ to root. Package renamed from clide_app to clide — all imports rewritten. Merged pubspec combines core (ffi) and app (flutter, yaml, xterm) dependencies. Makefile simplified: no APP_PRESENT conditionals, no cd, no daemon lifecycle. 317 tests pass. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
36 lines
1.1 KiB
Dart
36 lines
1.1 KiB
Dart
import 'package:clide/clide.dart';
|
|
import 'package:clide/builtin/welcome/src/welcome_view.dart';
|
|
import 'package:clide/extension/extension.dart';
|
|
import 'package:clide/kernel/kernel.dart';
|
|
|
|
class WelcomeExtension extends ClideExtension {
|
|
@override
|
|
String get id => 'builtin.welcome';
|
|
@override
|
|
String get title => 'Welcome';
|
|
@override
|
|
String get version => '0.1.0';
|
|
|
|
@override
|
|
List<ContributionPoint> get contributions => [
|
|
TabContribution(
|
|
id: 'welcome.view',
|
|
slot: Slots.workspace,
|
|
title: 'Welcome',
|
|
titleKey: 'tab.title',
|
|
i18nNamespace: id,
|
|
priority: -100, // anchor at the far left of the workspace tabs
|
|
build: (_) => const WelcomeView(),
|
|
),
|
|
CommandContribution(
|
|
id: 'workspace.open-project',
|
|
command: 'workspace.open-project',
|
|
title: 'Workspace: Open project…',
|
|
run: (_) async => IpcResponse.ok(
|
|
id: '',
|
|
data: const {'note': 'project picker lands in a later tier'},
|
|
),
|
|
),
|
|
];
|
|
}
|