Skip to content

Commit

Permalink
test: pass copyright header test
Browse files Browse the repository at this point in the history
  • Loading branch information
BBarisKilic committed May 10, 2024
1 parent c84ab3e commit d779a3c
Show file tree
Hide file tree
Showing 63 changed files with 256 additions and 1 deletion.
4 changes: 4 additions & 0 deletions lib/src/app/data/data.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2024 BBK Development. All rights reserved.
// Use of this source code is governed by a GPL-style license that can be found
// in the LICENSE file.

export 'data_sources/data_sources.dart';
export 'models/models.dart';
export 'repositories/repositories.dart';
4 changes: 4 additions & 0 deletions lib/src/app/data/data_sources/data_sources.dart
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
// Copyright 2024 BBK Development. All rights reserved.
// Use of this source code is governed by a GPL-style license that can be found
// in the LICENSE file.

export 'theme_configuration_service/theme_configuration_service.dart';
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2024 BBK Development. All rights reserved.
// Use of this source code is governed by a GPL-style license that can be found
// in the LICENSE file.

import 'package:vmerge/src/app/app.dart';

abstract interface class LocalThemeConfigurationService
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2024 BBK Development. All rights reserved.
// Use of this source code is governed by a GPL-style license that can be found
// in the LICENSE file.

import 'package:vmerge/bootstrap.dart';
import 'package:vmerge/src/app/app.dart';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2024 BBK Development. All rights reserved.
// Use of this source code is governed by a GPL-style license that can be found
// in the LICENSE file.

export 'local_theme_configuration_service.dart';
export 'object_box_theme_configuration_service.dart';

Expand Down
4 changes: 4 additions & 0 deletions lib/src/app/data/models/local_theme_configuration.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2024 BBK Development. All rights reserved.
// Use of this source code is governed by a GPL-style license that can be found
// in the LICENSE file.

import 'package:vmerge/src/app/app.dart';
import 'package:vmerge/src/core/core.dart';

Expand Down
4 changes: 4 additions & 0 deletions lib/src/app/data/models/models.dart
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
// Copyright 2024 BBK Development. All rights reserved.
// Use of this source code is governed by a GPL-style license that can be found
// in the LICENSE file.

export 'local_theme_configuration.dart';
4 changes: 4 additions & 0 deletions lib/src/app/data/repositories/repositories.dart
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
// Copyright 2024 BBK Development. All rights reserved.
// Use of this source code is governed by a GPL-style license that can be found
// in the LICENSE file.

export 'theme_configuration_repository_impl.dart';
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2024 BBK Development. All rights reserved.
// Use of this source code is governed by a GPL-style license that can be found
// in the LICENSE file.

import 'package:vmerge/src/app/app.dart';
import 'package:vmerge/src/core/core.dart';

Expand Down
4 changes: 4 additions & 0 deletions lib/src/app/domain/domain.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2024 BBK Development. All rights reserved.
// Use of this source code is governed by a GPL-style license that can be found
// in the LICENSE file.

export 'entities/entities.dart';
export 'repositories/repositories.dart';
export 'use_cases/use_cases.dart';
4 changes: 4 additions & 0 deletions lib/src/app/domain/entities/entities.dart
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
// Copyright 2024 BBK Development. All rights reserved.
// Use of this source code is governed by a GPL-style license that can be found
// in the LICENSE file.

export 'theme_configuration.dart';
4 changes: 4 additions & 0 deletions lib/src/app/domain/entities/theme_configuration.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2024 BBK Development. All rights reserved.
// Use of this source code is governed by a GPL-style license that can be found
// in the LICENSE file.

import 'package:vmerge/src/core/core.dart';

final class ThemeConfiguration extends DomainEntity {
Expand Down
4 changes: 4 additions & 0 deletions lib/src/app/domain/repositories/repositories.dart
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
// Copyright 2024 BBK Development. All rights reserved.
// Use of this source code is governed by a GPL-style license that can be found
// in the LICENSE file.

export 'theme_configuration_repository.dart';
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2024 BBK Development. All rights reserved.
// Use of this source code is governed by a GPL-style license that can be found
// in the LICENSE file.

import 'package:vmerge/src/app/app.dart';
import 'package:vmerge/src/core/core.dart';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2024 BBK Development. All rights reserved.
// Use of this source code is governed by a GPL-style license that can be found
// in the LICENSE file.

import 'package:vmerge/src/app/app.dart';
import 'package:vmerge/src/core/core.dart';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2024 BBK Development. All rights reserved.
// Use of this source code is governed by a GPL-style license that can be found
// in the LICENSE file.

import 'package:vmerge/src/app/app.dart';
import 'package:vmerge/src/core/core.dart';

Expand Down
4 changes: 4 additions & 0 deletions lib/src/app/domain/use_cases/use_cases.dart
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
// Copyright 2024 BBK Development. All rights reserved.
// Use of this source code is governed by a GPL-style license that can be found
// in the LICENSE file.

export 'get_theme_configuration_use_case.dart';
export 'save_theme_configuration_use_case.dart';
4 changes: 4 additions & 0 deletions lib/src/app/presentation/cubits/app_cubit/app_cubit.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2023 BBK Development. All rights reserved.
// Use of this source code is governed by a GPL-style license that can be found
// in the LICENSE file.

import 'dart:developer';

import 'package:flutter/material.dart';
Expand Down
4 changes: 4 additions & 0 deletions lib/src/app/presentation/cubits/app_cubit/app_state.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2023 BBK Development. All rights reserved.
// Use of this source code is governed by a GPL-style license that can be found
// in the LICENSE file.

import 'package:equatable/equatable.dart';
import 'package:flutter/material.dart';
import 'package:vmerge/src/core/core.dart';
Expand Down
4 changes: 4 additions & 0 deletions lib/src/app/presentation/cubits/cubits.dart
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
// Copyright 2023 BBK Development. All rights reserved.
// Use of this source code is governed by a GPL-style license that can be found
// in the LICENSE file.

export 'app_cubit/app_cubit.dart';
export 'app_cubit/app_state.dart';
4 changes: 4 additions & 0 deletions lib/src/components/components.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2023 BBK Development. All rights reserved.
// Use of this source code is governed by a GPL-style license that can be found
// in the LICENSE file.

export 'animated_control_button.dart';
export 'custom_app_bar.dart';
export 'custom_dropdown_button.dart';
Expand Down
4 changes: 4 additions & 0 deletions lib/src/components/custom_dropdown_button.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2023 BBK Development. All rights reserved.
// Use of this source code is governed by a GPL-style license that can be found
// in the LICENSE file.

import 'package:flutter/material.dart';
import 'package:vmerge/src/core/core.dart';

Expand Down
4 changes: 4 additions & 0 deletions lib/src/components/no_video_warning.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2023 BBK Development. All rights reserved.
// Use of this source code is governed by a GPL-style license that can be found
// in the LICENSE file.

import 'package:flutter/material.dart';
import 'package:vmerge/src/core/core.dart';

Expand Down
4 changes: 4 additions & 0 deletions lib/src/config/config.dart
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
// Copyright 2023 BBK Development. All rights reserved.
// Use of this source code is governed by a GPL-style license that can be found
// in the LICENSE file.

export 'themes/themes.dart';
4 changes: 4 additions & 0 deletions lib/src/config/themes/app_themes.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2023 BBK Development. All rights reserved.
// Use of this source code is governed by a GPL-style license that can be found
// in the LICENSE file.

import 'package:flutter/material.dart';

/// An abstract interface class that blueprints of the concrete theme
Expand Down
4 changes: 4 additions & 0 deletions lib/src/config/themes/dark_app_theme.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2023 BBK Development. All rights reserved.
// Use of this source code is governed by a GPL-style license that can be found
// in the LICENSE file.

import 'package:flutter/material.dart';
import 'package:vmerge/src/config/config.dart';
import 'package:vmerge/src/core/core.dart';
Expand Down
4 changes: 4 additions & 0 deletions lib/src/config/themes/light_app_theme.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2023 BBK Development. All rights reserved.
// Use of this source code is governed by a GPL-style license that can be found
// in the LICENSE file.

import 'package:flutter/material.dart';
import 'package:vmerge/src/config/config.dart';
import 'package:vmerge/src/core/core.dart';
Expand Down
4 changes: 4 additions & 0 deletions lib/src/config/themes/themes.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2023 BBK Development. All rights reserved.
// Use of this source code is governed by a GPL-style license that can be found
// in the LICENSE file.

export 'app_themes.dart';
export 'dark_app_theme.dart';
export 'light_app_theme.dart';
4 changes: 4 additions & 0 deletions lib/src/core/extensions/theme_mode_ext.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2024 BBK Development. All rights reserved.
// Use of this source code is governed by a GPL-style license that can be found
// in the LICENSE file.

import 'package:collection/collection.dart';
import 'package:flutter/material.dart';

Expand Down
4 changes: 4 additions & 0 deletions lib/src/core/resources/data_model.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2024 BBK Development. All rights reserved.
// Use of this source code is governed by a GPL-style license that can be found
// in the LICENSE file.

import 'package:vmerge/src/core/core.dart';

abstract interface class DataModel<T extends DomainEntity> {
Expand Down
7 changes: 7 additions & 0 deletions lib/src/core/resources/data_state.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2024 BBK Development. All rights reserved.
// Use of this source code is governed by a GPL-style license that can be found
// in the LICENSE file.

import 'package:equatable/equatable.dart';
import 'package:vmerge/src/core/core.dart';

Expand All @@ -23,7 +27,10 @@ final class DataFailure<T> extends DataState<T> {
const DataFailure(Failure failure) : super(failure: failure);

String get message => _failure!.message;

String get name => _failure!.name;

Object get error => _failure!.error;

StackTrace get stackTrace => _failure!.stackTrace;
}
4 changes: 4 additions & 0 deletions lib/src/core/resources/domain_entity.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2024 BBK Development. All rights reserved.
// Use of this source code is governed by a GPL-style license that can be found
// in the LICENSE file.

import 'package:equatable/equatable.dart';

abstract base class DomainEntity extends Equatable {
Expand Down
4 changes: 4 additions & 0 deletions lib/src/core/resources/failure.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2024 BBK Development. All rights reserved.
// Use of this source code is governed by a GPL-style license that can be found
// in the LICENSE file.

import 'package:equatable/equatable.dart';

final class Failure extends Equatable {
Expand Down
4 changes: 4 additions & 0 deletions lib/src/core/resources/resources.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2024 BBK Development. All rights reserved.
// Use of this source code is governed by a GPL-style license that can be found
// in the LICENSE file.

export 'data_model.dart';
export 'data_state.dart';
export 'domain_entity.dart';
Expand Down
4 changes: 4 additions & 0 deletions lib/src/core/resources/use_case.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2024 BBK Development. All rights reserved.
// Use of this source code is governed by a GPL-style license that can be found
// in the LICENSE file.

import 'package:vmerge/src/core/core.dart';

abstract interface class UseCase<T extends DataState<dynamic>, P> {
Expand Down
4 changes: 4 additions & 0 deletions lib/src/features/merge/data/data.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2024 BBK Development. All rights reserved.
// Use of this source code is governed by a GPL-style license that can be found
// in the LICENSE file.

export 'data_sources/data_sources.dart';
export 'models/models.dart';
export 'repositories/repositories.dart';
4 changes: 4 additions & 0 deletions lib/src/features/merge/data/data_sources/data_sources.dart
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
// Copyright 2024 BBK Development. All rights reserved.
// Use of this source code is governed by a GPL-style license that can be found
// in the LICENSE file.

export 'merge_settings_service/merge_settings_service.dart';
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2024 BBK Development. All rights reserved.
// Use of this source code is governed by a GPL-style license that can be found
// in the LICENSE file.

import 'package:vmerge/src/features/merge/merge.dart';

/// {@template local_merge_settings_service}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2024 BBK Development. All rights reserved.
// Use of this source code is governed by a GPL-style license that can be found
// in the LICENSE file.

export 'local_merge_settings_service.dart';
export 'object_box_merge_settings_service.dart';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2024 BBK Development. All rights reserved.
// Use of this source code is governed by a GPL-style license that can be found
// in the LICENSE file.

import 'package:vmerge/bootstrap.dart';
import 'package:vmerge/src/features/merge/merge.dart';

Expand Down
4 changes: 4 additions & 0 deletions lib/src/features/merge/data/models/local_merge_settings.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2024 BBK Development. All rights reserved.
// Use of this source code is governed by a GPL-style license that can be found
// in the LICENSE file.

import 'package:vmerge/src/core/core.dart';
import 'package:vmerge/src/features/merge/merge.dart';

Expand Down
4 changes: 4 additions & 0 deletions lib/src/features/merge/data/models/models.dart
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
// Copyright 2024 BBK Development. All rights reserved.
// Use of this source code is governed by a GPL-style license that can be found
// in the LICENSE file.

export 'local_merge_settings.dart';
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2024 BBK Development. All rights reserved.
// Use of this source code is governed by a GPL-style license that can be found
// in the LICENSE file.

import 'package:vmerge/src/core/core.dart';
import 'package:vmerge/src/features/merge/merge.dart';

Expand Down
4 changes: 4 additions & 0 deletions lib/src/features/merge/data/repositories/repositories.dart
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
// Copyright 2024 BBK Development. All rights reserved.
// Use of this source code is governed by a GPL-style license that can be found
// in the LICENSE file.

export 'merge_settings_repository_impl.dart';
4 changes: 4 additions & 0 deletions lib/src/features/merge/domain/entities/merge_settings.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2024 BBK Development. All rights reserved.
// Use of this source code is governed by a GPL-style license that can be found
// in the LICENSE file.

import 'package:collection/collection.dart';
import 'package:vmerge/src/core/core.dart';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2024 BBK Development. All rights reserved.
// Use of this source code is governed by a GPL-style license that can be found
// in the LICENSE file.

import 'package:vmerge/src/core/core.dart';
import 'package:vmerge/src/features/merge/merge.dart';

Expand Down
4 changes: 4 additions & 0 deletions lib/src/features/merge/domain/repositories/repositories.dart
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
// Copyright 2024 BBK Development. All rights reserved.
// Use of this source code is governed by a GPL-style license that can be found
// in the LICENSE file.

export 'merge_settings_repository.dart';
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2024 BBK Development. All rights reserved.
// Use of this source code is governed by a GPL-style license that can be found
// in the LICENSE file.

import 'package:vmerge/src/core/core.dart';
import 'package:vmerge/src/features/merge/merge.dart';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2024 BBK Development. All rights reserved.
// Use of this source code is governed by a GPL-style license that can be found
// in the LICENSE file.

import 'package:vmerge/src/core/core.dart';
import 'package:vmerge/src/features/merge/merge.dart';

Expand Down
4 changes: 4 additions & 0 deletions lib/src/features/merge/domain/use_cases/use_cases.dart
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
// Copyright 2024 BBK Development. All rights reserved.
// Use of this source code is governed by a GPL-style license that can be found
// in the LICENSE file.

export 'get_merge_settings_use_case.dart';
export 'save_merge_settings_use_case.dart';
4 changes: 4 additions & 0 deletions lib/src/features/merge/presentation/cubits/cubits.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2023 BBK Development. All rights reserved.
// Use of this source code is governed by a GPL-style license that can be found
// in the LICENSE file.

export 'merge_page_cubit/merge_page_cubit.dart';
export 'merge_page_cubit/merge_page_state.dart';
export 'save_bottom_sheet_cubit/save_bottom_sheet_cubit.dart';
Expand Down
Loading

0 comments on commit d779a3c

Please sign in to comment.