Skip to content

Commit

Permalink
[skip ci] include copyright notices & license notices in every file
Browse files Browse the repository at this point in the history
  • Loading branch information
mytja committed Nov 1, 2023
1 parent 2519617 commit 809b049
Show file tree
Hide file tree
Showing 27 changed files with 1,051 additions and 0 deletions.
15 changes: 15 additions & 0 deletions stockskis/lib/src/cards.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
// StockŠkis - simple tarock bots.
// Copyright (C) 2023 Mitja Ševerkar
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

import 'package:stockskis/src/types.dart';

final List<LocalCard> CARDS = [
Expand Down
15 changes: 15 additions & 0 deletions stockskis/lib/src/configuration.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
// StockŠkis - simple tarock bots.
// Copyright (C) 2023 Mitja Ševerkar
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

bool PRIREDI_IGRO = false;
bool GARANTIRAN_ZARUF = false;
bool AUTOSTART_GAME = true;
Expand Down
15 changes: 15 additions & 0 deletions stockskis/lib/src/gamemodes.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
// StockŠkis - simple tarock bots.
// Copyright (C) 2023 Mitja Ševerkar
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

import 'package:stockskis/src/types.dart';

final List<LocalGame> GAMES = [
Expand Down
15 changes: 15 additions & 0 deletions stockskis/lib/src/stockskis_base.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
// StockŠkis - simple tarock bots.
// Copyright (C) 2023 Mitja Ševerkar
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

// ignore_for_file: avoid_print, prefer_adjacent_string_concatenation, prefer_interpolation_to_compose_strings, library_prefixes

import "dart:convert";
Expand Down
15 changes: 15 additions & 0 deletions stockskis/lib/src/types.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
// StockŠkis - simple tarock bots.
// Copyright (C) 2023 Mitja Ševerkar
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

class StihAnalysis {
StihAnalysis({required this.cardPicks, required this.worth});

Expand Down
15 changes: 15 additions & 0 deletions stockskis/lib/stockskis.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
// StockŠkis - simple tarock bots.
// Copyright (C) 2023 Mitja Ševerkar
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

library stockskis;

export 'src/stockskis_base.dart';
Expand Down
Loading

0 comments on commit 809b049

Please sign in to comment.