Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into feat/share/share-social
Browse files Browse the repository at this point in the history
  • Loading branch information
AyadLaouissi committed Apr 24, 2024
2 parents 16d7d69 + 459ac02 commit 9ac6676
Show file tree
Hide file tree
Showing 59 changed files with 1,487 additions and 741 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ class CrosswordRepository {

final DbClient _dbClient;

static const _sectionsCollection = 'boardChunks';
static const _answersCollection = 'answers';
static const _sectionsCollection = 'boardChunks2';
static const _answersCollection = 'answers2';
static const _boardInfoCollection = 'boardInfo';

/// Fetches all sections from the board.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ void main() {
group('CrosswordRepository', () {
late DbClient dbClient;

const sectionsCollection = 'boardChunks';
const answersCollection = 'answers';
const sectionsCollection = 'boardChunks2';
const answersCollection = 'answers2';

setUpAll(() {
registerFallbackValue(_MockDbEntityRecord());
Expand Down
2 changes: 1 addition & 1 deletion api/packages/hint_repository/lib/src/hint_repository.dart
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class HintRepository {
final DbClient _dbClient;
final GenerativeModelWrapper _generativeModel;

static const _answersCollection = 'answers';
static const _answersCollection = 'answers2';
static const _hintsCollection = 'hints';
static const _boardInfoCollection = 'boardInfo';

Expand Down
Binary file added assets/anim/android_look_up.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/anim/dash_look_up.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/anim/dino_look_up.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/anim/sparky_look_up.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/how_to_play_answer_android.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/how_to_play_answer_dash.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/how_to_play_answer_dino.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/how_to_play_answer_sparky.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/how_to_play_badge.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/how_to_play_find_a_word_android.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/how_to_play_find_a_word_dash.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/how_to_play_find_a_word_dino.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/how_to_play_find_a_word_sparky.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/how_to_play_hints.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/how_to_play_streak_android.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/how_to_play_streak_dash.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/how_to_play_streak_dino.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/how_to_play_streak_sparky.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion lib/about/about.dart
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export 'view/about_view.dart';
export 'view/about_project_details.dart';
142 changes: 0 additions & 142 deletions lib/about/view/about_how_to_play.dart

This file was deleted.

9 changes: 7 additions & 2 deletions lib/about/view/about_project_details.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
part of 'about_view.dart';
import 'package:flutter/gestures.dart';
import 'package:flutter/material.dart';
import 'package:io_crossword/extensions/extensions.dart';
import 'package:io_crossword/l10n/l10n.dart';
import 'package:io_crossword/project_details/project_details.dart';
import 'package:io_crossword/widget/widget.dart';
import 'package:io_crossword_ui/io_crossword_ui.dart';

class AboutProjectDetails extends StatelessWidget {
@visibleForTesting
const AboutProjectDetails({super.key});

@override
Expand Down
70 changes: 0 additions & 70 deletions lib/about/view/about_view.dart

This file was deleted.

Loading

0 comments on commit 9ac6676

Please sign in to comment.