Compare commits
7 Commits
e24b1d5c01
..
master
| Author | SHA1 | Date | |
|---|---|---|---|
| 4af8cd9f9a | |||
| 64e81012cb | |||
| ac6f395a24 | |||
| 68993bca5a | |||
| e37e6d0846 | |||
| ee18666e0e | |||
| dda3170dba |
@@ -0,0 +1,3 @@
|
|||||||
|
# TetraFish
|
||||||
|
|
||||||
|
A remake of SailTris that was a remake of Tetris.
|
||||||
@@ -1,20 +1,11 @@
|
|||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Type=Application
|
Type=Application
|
||||||
X-Nemo-Application-Type=silica-qt5
|
X-Nemo-Application-Type=silica-qt5
|
||||||
|
Name=harbour-tetrafish
|
||||||
Icon=harbour-tetrafish
|
Icon=harbour-tetrafish
|
||||||
Exec=harbour-tetrafish
|
Exec=harbour-tetrafish
|
||||||
Name=harbour-tetrafish
|
|
||||||
# translation example:
|
|
||||||
# your app name in German locale (de)
|
|
||||||
#
|
|
||||||
# Remember to comment out the following line, if you do not want to use
|
|
||||||
# a different app name in German locale (de).
|
|
||||||
Name[de]=harbour-tetrafish
|
|
||||||
|
|
||||||
[X-Sailjail]
|
[X-Sailjail]
|
||||||
# Replace with your organization as a reverse domain name
|
Permissions=Internet;Audio
|
||||||
OrganizationName=org.myorg
|
OrganizationName=org.nesnomis
|
||||||
# ApplicationName does not have to be identical to Name
|
ApplicationName=AllRadio2
|
||||||
ApplicationName=tetrafish
|
|
||||||
# Add the required permissions here
|
|
||||||
Permissions=
|
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 7.3 KiB After Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 8.8 KiB After Width: | Height: | Size: 14 KiB |
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 20 KiB |
|
Before Width: | Height: | Size: 5.7 KiB After Width: | Height: | Size: 8.7 KiB |
@@ -8,8 +8,8 @@ GlassItem {
|
|||||||
id: dot
|
id: dot
|
||||||
width: Theme.paddingLarge
|
width: Theme.paddingLarge
|
||||||
height: width
|
height: width
|
||||||
radius: dots === 0 ? 0.3 : 0 // 0 ? 0.2 : 0
|
radius: dots === 0 ? 0.4 : 0 // 0 ? 0.2 : 0
|
||||||
falloffRadius: dots === 0 ? 0.40 : 2 // 0 ? 0.25 : 2
|
falloffRadius: dots === 0 ? 0.45 : 2 // 0 ? 0.25 : 2
|
||||||
color: Theme.highlightColor
|
color: Theme.highlightColor
|
||||||
Timer {
|
Timer {
|
||||||
property bool up
|
property bool up
|
||||||
|
|||||||
@@ -10,8 +10,8 @@ GlassItem {
|
|||||||
height: width
|
height: width
|
||||||
radius: dots === 0 ? 0.4 : 0 // 0 ? 0.2 : 0
|
radius: dots === 0 ? 0.4 : 0 // 0 ? 0.2 : 0
|
||||||
falloffRadius: dots === 0 ? 0.25 : 2 // 0 ? 0.25 : 2
|
falloffRadius: dots === 0 ? 0.25 : 2 // 0 ? 0.25 : 2
|
||||||
color: Theme.secondaryColor
|
color: Theme.highlightColor
|
||||||
opacity: 0.1
|
opacity: 0.2
|
||||||
Timer {
|
Timer {
|
||||||
property bool up
|
property bool up
|
||||||
id: glowingTimer
|
id: glowingTimer
|
||||||
|
|||||||
@@ -32,7 +32,7 @@ Page {
|
|||||||
property int ghostEnabled: Settings.getValue("ghostEnabled",1)
|
property int ghostEnabled: Settings.getValue("ghostEnabled",1)
|
||||||
property int musicEnabled: Settings.getValue("musicEnabled",1)
|
property int musicEnabled: Settings.getValue("musicEnabled",1)
|
||||||
property int sfxEnabled: Settings.getValue("sfxEnabled",1)
|
property int sfxEnabled: Settings.getValue("sfxEnabled",1)
|
||||||
property string musicScore: "../data/Kraku - Tetris part 1.ogg" //: Settings.getValue("musicScore","")
|
property string musicScore: "../data/tetris.ogg" //: Settings.getValue("musicScore","")
|
||||||
property int scoreValue
|
property int scoreValue
|
||||||
property int speedValue
|
property int speedValue
|
||||||
property int linesValue
|
property int linesValue
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
Name: harbour-tetrafish
|
Name: harbour-tetrafish
|
||||||
|
|
||||||
Summary: TetraFish
|
Summary: TetraFish
|
||||||
Version: 0.0.1
|
Version: 2.0.0
|
||||||
Release: 1
|
Release: 1
|
||||||
License: LICENSE
|
License: LICENSE
|
||||||
URL: http://example.org/
|
URL: http://example.org/
|
||||||
|
|||||||