Skip to content

Commit

Permalink
feat: connect four descs
Browse files Browse the repository at this point in the history
  • Loading branch information
z7workbench committed May 14, 2022
1 parent c938921 commit d9bffa9
Show file tree
Hide file tree
Showing 8 changed files with 33 additions and 16 deletions.
4 changes: 2 additions & 2 deletions lib/generated/intl/messages_en.dart
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ class MessageLookup extends MessageLookupByLibrary {
"check": MessageLookupByLibrary.simpleMessage("Check"),
"clean_leaderboard":
MessageLookupByLibrary.simpleMessage("Clean Leaderboard"),
"connect_four_desc":
MessageLookupByLibrary.simpleMessage("Connect Four"),
"connect_four_desc": MessageLookupByLibrary.simpleMessage(
"the first player starting Connect Four by dropping one of their discs into the center column of an empty game board. The two players then alternate turns dropping one of their discs at a time into an unfilled column, until one of them, with the discs, achieves a diagonal four in a row, and wins the game. If the board fills up before either player achieves four in a row, then the game is a draw."),
"connect_four_title":
MessageLookupByLibrary.simpleMessage("Connect Four"),
"current_player":
Expand Down
3 changes: 2 additions & 1 deletion lib/generated/intl/messages_zh_CN.dart
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ class MessageLookup extends MessageLookupByLibrary {
"app": MessageLookupByLibrary.simpleMessage("迷你游戏合集"),
"check": MessageLookupByLibrary.simpleMessage("检查"),
"clean_leaderboard": MessageLookupByLibrary.simpleMessage("清除排行榜"),
"connect_four_desc": MessageLookupByLibrary.simpleMessage("四子棋"),
"connect_four_desc": MessageLookupByLibrary.simpleMessage(
"第一个玩家通过将其中一个圆盘放入空游戏板的中心列来启动连接四。然后两个玩家交替轮流将他们的一个圆盘一次放入一个未填充的列中,直到其中一个玩家拿着圆盘,连续获得对角线四个,并赢得比赛。如果棋盘在任一玩家连续四次之前填满,则游戏为平局。"),
"connect_four_title": MessageLookupByLibrary.simpleMessage("四子棋"),
"current_player": MessageLookupByLibrary.simpleMessage("当前玩家:"),
"description": MessageLookupByLibrary.simpleMessage("游戏简介"),
Expand Down
4 changes: 2 additions & 2 deletions lib/generated/l10n.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/l10n/intl_en.arb
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"pop_title": "Poker Pop",
"pop_desc": "12312122312",
"connect_four_title": "Connect Four",
"connect_four_desc": "Connect Four",
"connect_four_desc": "the first player starting Connect Four by dropping one of their discs into the center column of an empty game board. The two players then alternate turns dropping one of their discs at a time into an unfilled column, until one of them, with the discs, achieves a diagonal four in a row, and wins the game. If the board fills up before either player achieves four in a row, then the game is a draw.",
"dismiss": "Dismiss",
"check": "Check",
"minesweeper_title": "Minesweeper",
Expand Down
2 changes: 1 addition & 1 deletion lib/l10n/intl_zh_CN.arb
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"pop_title": "扑克消消乐",
"pop_desc": "12312122312",
"connect_four_title": "四子棋",
"connect_four_desc": "四子棋",
"connect_four_desc": "第一个玩家通过将其中一个圆盘放入空游戏板的中心列来启动连接四。然后两个玩家交替轮流将他们的一个圆盘一次放入一个未填充的列中,直到其中一个玩家拿着圆盘,连续获得对角线四个,并赢得比赛。如果棋盘在任一玩家连续四次之前填满,则游戏为平局。",
"check": "检查",
"dismiss": "溜了",
"minesweeper_title": "扫雷",
Expand Down
8 changes: 8 additions & 0 deletions linux/flutter/generated_plugins.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
list(APPEND FLUTTER_PLUGIN_LIST
)

list(APPEND FLUTTER_FFI_PLUGIN_LIST
)

set(PLUGIN_BUNDLED_LIBRARIES)

foreach(plugin ${FLUTTER_PLUGIN_LIST})
Expand All @@ -13,3 +16,8 @@ foreach(plugin ${FLUTTER_PLUGIN_LIST})
list(APPEND PLUGIN_BUNDLED_LIBRARIES $<TARGET_FILE:${plugin}_plugin>)
list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries})
endforeach(plugin)

foreach(ffi_plugin ${FLUTTER_FFI_PLUGIN_LIST})
add_subdirectory(flutter/ephemeral/.plugin_symlinks/${ffi_plugin}/linux plugins/${ffi_plugin})
list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${ffi_plugin}_bundled_libraries})
endforeach(ffi_plugin)
18 changes: 9 additions & 9 deletions pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ packages:
name: collection
url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/"
source: hosted
version: "1.15.0"
version: "1.16.0"
common_utils:
dependency: transitive
description:
Expand Down Expand Up @@ -182,7 +182,7 @@ packages:
name: fake_async
url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/"
source: hosted
version: "1.2.0"
version: "1.3.0"
ffi:
dependency: transitive
description:
Expand Down Expand Up @@ -321,7 +321,7 @@ packages:
name: js
url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/"
source: hosted
version: "0.6.3"
version: "0.6.4"
json_annotation:
dependency: transitive
description:
Expand Down Expand Up @@ -356,7 +356,7 @@ packages:
name: material_color_utilities
url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/"
source: hosted
version: "0.1.3"
version: "0.1.4"
meta:
dependency: transitive
description:
Expand Down Expand Up @@ -433,7 +433,7 @@ packages:
name: path
url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/"
source: hosted
version: "1.8.0"
version: "1.8.1"
path_provider:
dependency: transitive
description:
Expand Down Expand Up @@ -634,7 +634,7 @@ packages:
name: source_span
url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/"
source: hosted
version: "1.8.1"
version: "1.8.2"
sp_util:
dependency: transitive
description:
Expand Down Expand Up @@ -690,7 +690,7 @@ packages:
name: test_api
url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/"
source: hosted
version: "0.4.8"
version: "0.4.9"
timing:
dependency: transitive
description:
Expand All @@ -711,7 +711,7 @@ packages:
name: vector_math
url: "https://mirrors.tuna.tsinghua.edu.cn/dart-pub/"
source: hosted
version: "2.1.1"
version: "2.1.2"
watcher:
dependency: transitive
description:
Expand Down Expand Up @@ -748,5 +748,5 @@ packages:
source: hosted
version: "3.1.0"
sdks:
dart: ">=2.16.0 <3.0.0"
dart: ">=2.17.0-0 <3.0.0"
flutter: ">=2.5.0"
8 changes: 8 additions & 0 deletions windows/flutter/generated_plugins.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
list(APPEND FLUTTER_PLUGIN_LIST
)

list(APPEND FLUTTER_FFI_PLUGIN_LIST
)

set(PLUGIN_BUNDLED_LIBRARIES)

foreach(plugin ${FLUTTER_PLUGIN_LIST})
Expand All @@ -13,3 +16,8 @@ foreach(plugin ${FLUTTER_PLUGIN_LIST})
list(APPEND PLUGIN_BUNDLED_LIBRARIES $<TARGET_FILE:${plugin}_plugin>)
list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries})
endforeach(plugin)

foreach(ffi_plugin ${FLUTTER_FFI_PLUGIN_LIST})
add_subdirectory(flutter/ephemeral/.plugin_symlinks/${ffi_plugin}/windows plugins/${ffi_plugin})
list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${ffi_plugin}_bundled_libraries})
endforeach(ffi_plugin)

0 comments on commit d9bffa9

Please sign in to comment.