This repository has been archived by the owner on Jul 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
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
Showing
30 changed files
with
269 additions
and
37 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 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,67 @@ | ||
/* | ||
* This file is part of Sailfinder. | ||
* | ||
* Sailfinder 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 | ||
* (at your option) any later version. | ||
* | ||
* Sailfinder 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 General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with Sailfinder. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
import QtQuick 2.0 | ||
import Sailfish.Silica 1.0 | ||
|
||
ListItem { | ||
property string icon | ||
property string name | ||
property string title | ||
property bool editable | ||
|
||
contentHeight: column.height + Theme.paddingLarge | ||
width: parent.width | ||
enabled: editable | ||
|
||
Column { | ||
id: column | ||
anchors { | ||
left: image.right | ||
leftMargin: Theme.paddingMedium | ||
right: parent.right | ||
rightMargin: Theme.horizontalPageMargin | ||
verticalCenter: parent.verticalCenter | ||
} | ||
|
||
TextLabel { | ||
text: name | ||
visible: text.length > 0 | ||
} | ||
|
||
TextLabel { | ||
text: title | ||
// No name provided? Use the normal textsize | ||
font.pixelSize: name.length > 0? Theme.fontSizeTiny: Theme.fontSizeMedium | ||
font.italic: name.length > 0 // Italic when fontSizeTiny is in use | ||
visible: text.length > 0 | ||
} | ||
} | ||
|
||
Image { | ||
id: image | ||
width: Theme.itemSizeSmall | ||
height: width | ||
anchors { | ||
left: parent.left | ||
leftMargin: Theme.horizontalPageMargin | ||
verticalCenter: parent.verticalCenter | ||
} | ||
asynchronous: true | ||
source: icon | ||
} | ||
} |
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 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
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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 |
---|---|---|
@@ -1,16 +1,18 @@ | ||
* Tue May 10 2018 Dylan Van Assche <[email protected]> 4.4-4 | ||
- [MINOR BUGFIX] Sailfinder can now run in the emulator again | ||
- [MINOR BUGFIX] Messages are scrolling automatically when the keyboard shows/hides | ||
- [MAJOR BUGFIX] Jobs are now parsed correctly by Sailfinder | ||
- [IMPROVEMENT] Remorse action used when needed | ||
- [IMPROVEMENT] Stability improvements for the login screen | ||
- [IMPROVEMENT] Location updates are still working OK | ||
- [IMPROVEMENT] Automatically throttle the quality of the pictures to reduce data usage on mobile networks | ||
- [IMPROVEMENT] Use Silica booster for faster startup | ||
- [NEW] SFOS cover when Sailfinder is minimized | ||
- [NEW] Delete pictures from Tinder (hold a profile picture to show remove screen) | ||
- [NEW] Opt-in for Smart Photo's | ||
- [NEW] Moved to OBS for building RPM's | ||
- [NEW] See the distance of your matches | ||
- [NEW] Show schools and jobs for recommendations and matches | ||
- [NEW] Show schools and jobs for recommendations, matches and your profile | ||
- [UPGRADE] /updates endpoint data upgrade | ||
- [WIP] Phone login support preparations | ||
- [LIBS] Moved to new Nemo import syntax | ||
|
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
Oops, something went wrong.