Skip to content

Commit

Permalink
303 update copyright in files (#317)
Browse files Browse the repository at this point in the history
* update license file

* app : add leader in source file

* app and library : add changelog

* library : add leader in source file
  • Loading branch information
Tayebsed93 authored Feb 9, 2024
1 parent e796d7d commit 16d69aa
Show file tree
Hide file tree
Showing 144 changed files with 1,703 additions and 4 deletions.
3 changes: 2 additions & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@

MIT License

Copyright (c) 2023 Orange
Copyright (c) Orange SA

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
1 change: 1 addition & 0 deletions app/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Changed

- Vertical Card customization updates ([#189](https://github.com/Orange-OpenSource/ods-flutter/issues/189))
- Update Copyright in files ([#303](https://github.com/Orange-OpenSource/ods-flutter/issues/303))

### [0.7.O](https://github.com/Orange-OpenSource/ods-flutter/compare/0.1.1...0.7.0) - 2023-02-02

Expand Down
12 changes: 12 additions & 0 deletions app/lib/constants.dart
Original file line number Diff line number Diff line change
@@ -1 +1,13 @@
/*
* Software Name : Orange Design System
* SPDX-FileCopyrightText: Copyright (c) Orange SA
* SPDX-License-Identifier: MIT
*
* This software is distributed under the MIT licence,
* the text of which is available at https://opensource.org/license/MIT/
* or see the "LICENSE" file for more details.
*
* Software description: Flutter library of reusable graphical components for Android and iOS
*/

const int mobileUiMaxScreenWidth = 500;
14 changes: 13 additions & 1 deletion app/lib/domain/recipes/my_app_state.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
/*
* Software Name : Orange Design System
* SPDX-FileCopyrightText: Copyright (c) Orange SA
* SPDX-License-Identifier: MIT
*
* This software is distributed under the MIT licence,
* the text of which is available at https://opensource.org/license/MIT/
* or see the "LICENSE" file for more details.
*
* Software description: Flutter library of reusable graphical components for Android and iOS
*/

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

Expand Down Expand Up @@ -31,4 +43,4 @@ class MyAppState extends ChangeNotifier {
favorites.remove(pair);
notifyListeners();
}
}
}
12 changes: 12 additions & 0 deletions app/lib/domain/recipes/recipes_entities.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
/*
* Software Name : Orange Design System
* SPDX-FileCopyrightText: Copyright (c) Orange SA
* SPDX-License-Identifier: MIT
*
* This software is distributed under the MIT licence,
* the text of which is available at https://opensource.org/license/MIT/
* or see the "LICENSE" file for more details.
*
* Software description: Flutter library of reusable graphical components for Android and iOS
*/

import 'dart:convert';

Entity entityFromJson(String str) => Entity.fromJson(json.decode(str));
Expand Down
12 changes: 12 additions & 0 deletions app/lib/main.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
/*
* Software Name : Orange Design System
* SPDX-FileCopyrightText: Copyright (c) Orange SA
* SPDX-License-Identifier: MIT
*
* This software is distributed under the MIT licence,
* the text of which is available at https://opensource.org/license/MIT/
* or see the "LICENSE" file for more details.
*
* Software description: Flutter library of reusable graphical components for Android and iOS
*/

// ignore_for_file: prefer_const_constructors, prefer_const_literals_to_create_immutables

import 'package:flutter/material.dart';
Expand Down
12 changes: 12 additions & 0 deletions app/lib/ui/about/about_screen.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
/*
* Software Name : Orange Design System
* SPDX-FileCopyrightText: Copyright (c) Orange SA
* SPDX-License-Identifier: MIT
*
* This software is distributed under the MIT licence,
* the text of which is available at https://opensource.org/license/MIT/
* or see the "LICENSE" file for more details.
*
* Software description: Flutter library of reusable graphical components for Android and iOS
*/

import 'package:flutter/material.dart';
import 'package:flutter_gen/gen_l10n/ods_flutter_app_localizations.dart';
import 'package:get/get.dart';
Expand Down
12 changes: 12 additions & 0 deletions app/lib/ui/about/changelog_screen.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
/*
* Software Name : Orange Design System
* SPDX-FileCopyrightText: Copyright (c) Orange SA
* SPDX-License-Identifier: MIT
*
* This software is distributed under the MIT licence,
* the text of which is available at https://opensource.org/license/MIT/
* or see the "LICENSE" file for more details.
*
* Software description: Flutter library of reusable graphical components for Android and iOS
*/

import 'dart:convert';
import 'dart:io';

Expand Down
12 changes: 12 additions & 0 deletions app/lib/ui/components/app_bars/top/top_app_bar_large.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
/*
* Software Name : Orange Design System
* SPDX-FileCopyrightText: Copyright (c) Orange SA
* SPDX-License-Identifier: MIT
*
* This software is distributed under the MIT licence,
* the text of which is available at https://opensource.org/license/MIT/
* or see the "LICENSE" file for more details.
*
* Software description: Flutter library of reusable graphical components for Android and iOS
*/

import 'package:flutter/material.dart';
import 'package:flutter_gen/gen_l10n/ods_flutter_app_localizations.dart';
import 'package:ods_flutter/components/app_bar/top/ods_large_top_app_bar.dart';
Expand Down
12 changes: 12 additions & 0 deletions app/lib/ui/components/app_bars/top/top_app_bars.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
/*
* Software Name : Orange Design System
* SPDX-FileCopyrightText: Copyright (c) Orange SA
* SPDX-License-Identifier: MIT
*
* This software is distributed under the MIT licence,
* the text of which is available at https://opensource.org/license/MIT/
* or see the "LICENSE" file for more details.
*
* Software description: Flutter library of reusable graphical components for Android and iOS
*/

import 'package:flutter/material.dart';
import 'package:flutter_gen/gen_l10n/ods_flutter_app_localizations.dart';
import 'package:ods_flutter/components/app_bar/top/ods_top_app_bar.dart';
Expand Down
12 changes: 12 additions & 0 deletions app/lib/ui/components/app_bars/top/top_app_bars_customization.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
/*
* Software Name : Orange Design System
* SPDX-FileCopyrightText: Copyright (c) Orange SA
* SPDX-License-Identifier: MIT
*
* This software is distributed under the MIT licence,
* the text of which is available at https://opensource.org/license/MIT/
* or see the "LICENSE" file for more details.
*
* Software description: Flutter library of reusable graphical components for Android and iOS
*/

import 'package:flutter/material.dart';

class _ComponentTopAppBarsCustomization extends InheritedWidget {
Expand Down
12 changes: 12 additions & 0 deletions app/lib/ui/components/buttons/button_contained.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
/*
* Software Name : Orange Design System
* SPDX-FileCopyrightText: Copyright (c) Orange SA
* SPDX-License-Identifier: MIT
*
* This software is distributed under the MIT licence,
* the text of which is available at https://opensource.org/license/MIT/
* or see the "LICENSE" file for more details.
*
* Software description: Flutter library of reusable graphical components for Android and iOS
*/

import 'package:flutter/material.dart';
import 'package:flutter_gen/gen_l10n/ods_flutter_app_localizations.dart';
import 'package:flutter_svg/svg.dart';
Expand Down
12 changes: 12 additions & 0 deletions app/lib/ui/components/buttons/button_customization.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
/*
* Software Name : Orange Design System
* SPDX-FileCopyrightText: Copyright (c) Orange SA
* SPDX-License-Identifier: MIT
*
* This software is distributed under the MIT licence,
* the text of which is available at https://opensource.org/license/MIT/
* or see the "LICENSE" file for more details.
*
* Software description: Flutter library of reusable graphical components for Android and iOS
*/

import 'package:flutter/material.dart';
import 'package:ods_flutter_demo/ui/components/buttons/button_enum.dart';

Expand Down
12 changes: 12 additions & 0 deletions app/lib/ui/components/buttons/button_enum.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
/*
* Software Name : Orange Design System
* SPDX-FileCopyrightText: Copyright (c) Orange SA
* SPDX-License-Identifier: MIT
*
* This software is distributed under the MIT licence,
* the text of which is available at https://opensource.org/license/MIT/
* or see the "LICENSE" file for more details.
*
* Software description: Flutter library of reusable graphical components for Android and iOS
*/

import 'package:flutter/material.dart';
import 'package:flutter_gen/gen_l10n/ods_flutter_app_localizations.dart';

Expand Down
12 changes: 12 additions & 0 deletions app/lib/ui/components/buttons/button_outlined.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
/*
* Software Name : Orange Design System
* SPDX-FileCopyrightText: Copyright (c) Orange SA
* SPDX-License-Identifier: MIT
*
* This software is distributed under the MIT licence,
* the text of which is available at https://opensource.org/license/MIT/
* or see the "LICENSE" file for more details.
*
* Software description: Flutter library of reusable graphical components for Android and iOS
*/

import 'package:flutter/material.dart';
import 'package:flutter_gen/gen_l10n/ods_flutter_app_localizations.dart';
import 'package:flutter_svg/svg.dart';
Expand Down
12 changes: 12 additions & 0 deletions app/lib/ui/components/buttons/button_text.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
/*
* Software Name : Orange Design System
* SPDX-FileCopyrightText: Copyright (c) Orange SA
* SPDX-License-Identifier: MIT
*
* This software is distributed under the MIT licence,
* the text of which is available at https://opensource.org/license/MIT/
* or see the "LICENSE" file for more details.
*
* Software description: Flutter library of reusable graphical components for Android and iOS
*/

import 'package:flutter/material.dart';
import 'package:flutter_gen/gen_l10n/ods_flutter_app_localizations.dart';
import 'package:flutter_svg/svg.dart';
Expand Down
12 changes: 12 additions & 0 deletions app/lib/ui/components/buttons/segmented/segmented_button.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
/*
* Software Name : Orange Design System
* SPDX-FileCopyrightText: Copyright (c) Orange SA
* SPDX-License-Identifier: MIT
*
* This software is distributed under the MIT licence,
* the text of which is available at https://opensource.org/license/MIT/
* or see the "LICENSE" file for more details.
*
* Software description: Flutter library of reusable graphical components for Android and iOS
*/

import 'package:flutter/material.dart';
import 'package:flutter_gen/gen_l10n/ods_flutter_app_localizations.dart';
import 'package:ods_flutter/components/button/segmented/ods_segmented_button.dart';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
/*
* Software Name : Orange Design System
* SPDX-FileCopyrightText: Copyright (c) Orange SA
* SPDX-License-Identifier: MIT
*
* This software is distributed under the MIT licence,
* the text of which is available at https://opensource.org/license/MIT/
* or see the "LICENSE" file for more details.
*
* Software description: Flutter library of reusable graphical components for Android and iOS
*/

import 'package:flutter/material.dart';
import 'package:ods_flutter_demo/ui/components/buttons/segmented/segmented_button_enum.dart';

Expand Down
12 changes: 12 additions & 0 deletions app/lib/ui/components/buttons/segmented/segmented_button_enum.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
/*
* Software Name : Orange Design System
* SPDX-FileCopyrightText: Copyright (c) Orange SA
* SPDX-License-Identifier: MIT
*
* This software is distributed under the MIT licence,
* the text of which is available at https://opensource.org/license/MIT/
* or see the "LICENSE" file for more details.
*
* Software description: Flutter library of reusable graphical components for Android and iOS
*/

import 'package:flutter/material.dart';
import 'package:flutter_gen/gen_l10n/ods_flutter_app_localizations.dart';

Expand Down
12 changes: 12 additions & 0 deletions app/lib/ui/components/cards/card_customization.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
/*
* Software Name : Orange Design System
* SPDX-FileCopyrightText: Copyright (c) Orange SA
* SPDX-License-Identifier: MIT
*
* This software is distributed under the MIT licence,
* the text of which is available at https://opensource.org/license/MIT/
* or see the "LICENSE" file for more details.
*
* Software description: Flutter library of reusable graphical components for Android and iOS
*/

import 'package:flutter/material.dart';
import 'package:ods_flutter_demo/ui/components/cards/card_enum.dart';

Expand Down
12 changes: 12 additions & 0 deletions app/lib/ui/components/cards/card_enum.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
/*
* Software Name : Orange Design System
* SPDX-FileCopyrightText: Copyright (c) Orange SA
* SPDX-License-Identifier: MIT
*
* This software is distributed under the MIT licence,
* the text of which is available at https://opensource.org/license/MIT/
* or see the "LICENSE" file for more details.
*
* Software description: Flutter library of reusable graphical components for Android and iOS
*/

import 'package:flutter/material.dart';
import 'package:flutter_gen/gen_l10n/ods_flutter_app_localizations.dart';

Expand Down
12 changes: 12 additions & 0 deletions app/lib/ui/components/cards/card_horizontal.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
/*
* Software Name : Orange Design System
* SPDX-FileCopyrightText: Copyright (c) Orange SA
* SPDX-License-Identifier: MIT
*
* This software is distributed under the MIT licence,
* the text of which is available at https://opensource.org/license/MIT/
* or see the "LICENSE" file for more details.
*
* Software description: Flutter library of reusable graphical components for Android and iOS
*/

import 'dart:math';

import 'package:flutter/material.dart';
Expand Down
12 changes: 12 additions & 0 deletions app/lib/ui/components/cards/card_small.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
/*
* Software Name : Orange Design System
* SPDX-FileCopyrightText: Copyright (c) Orange SA
* SPDX-License-Identifier: MIT
*
* This software is distributed under the MIT licence,
* the text of which is available at https://opensource.org/license/MIT/
* or see the "LICENSE" file for more details.
*
* Software description: Flutter library of reusable graphical components for Android and iOS
*/

import 'dart:math';

import 'package:flutter/material.dart';
Expand Down
12 changes: 12 additions & 0 deletions app/lib/ui/components/cards/card_vertical_image_first.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
/*
* Software Name : Orange Design System
* SPDX-FileCopyrightText: Copyright (c) Orange SA
* SPDX-License-Identifier: MIT
*
* This software is distributed under the MIT licence,
* the text of which is available at https://opensource.org/license/MIT/
* or see the "LICENSE" file for more details.
*
* Software description: Flutter library of reusable graphical components for Android and iOS
*/

import 'dart:math';

import 'package:flutter/material.dart';
Expand Down
12 changes: 12 additions & 0 deletions app/lib/ui/components/checkboxes/checkboxes.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
/*
* Software Name : Orange Design System
* SPDX-FileCopyrightText: Copyright (c) Orange SA
* SPDX-License-Identifier: MIT
*
* This software is distributed under the MIT licence,
* the text of which is available at https://opensource.org/license/MIT/
* or see the "LICENSE" file for more details.
*
* Software description: Flutter library of reusable graphical components for Android and iOS
*/

import 'package:flutter/material.dart';
import 'package:flutter_gen/gen_l10n/ods_flutter_app_localizations.dart';
import 'package:ods_flutter/components/checkbox/ods_checkbox.dart';
Expand Down
Loading

0 comments on commit 16d69aa

Please sign in to comment.