-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Hu Zecong
committed
Aug 30, 2015
1 parent
e0393bd
commit 2b2538f
Showing
60 changed files
with
1,362 additions
and
367 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import QtQuick 2.5 | ||
import Material 0.1 | ||
import QtQuick.Layouts 1.1 | ||
|
||
Dialog { | ||
id: dialog | ||
width: Units.dp(400) | ||
title: qsTr("Instructions") | ||
text: qsTr("Drag to connect matching colors with pipe, creating a flow.\n | ||
Pair all colors, and cover the entire board with pipe to solve each puzzle.\n | ||
But watch out, pipes will break if they cross or overlap!\n | ||
Too easy? Try selecting a larger board.\n | ||
Too hard? Try using the auto-solve function. But note that the last level is too complex for the solver, so you're on yourself on that one.\n"); | ||
negativeButtonText: "OK" | ||
positiveButton.visible: false | ||
} | ||
|
Oops, something went wrong.