Planet maemo: category "feed:a5799af9ac17abc99d28d8047c32e427"

Benoît HERVIER

ownNotes 1.2.7

2014-01-04 00:00 UTC  by  Benoît HERVIER
0
0

A new minor release of ownNotes is available.

Changeslog:

  • Replace busycircle on Cover for a label (Sailfish)
  • Add remorse to publish menu (Sailfish)
  • Use pull down busy instead of ugly progress bar (Sailfish)

Where to ? same place as usual, on openRepos.net or in the downloads section.
Why not in Harbour ? Python apps are currently not accepted in Jolla Harbour, but will be soon (©Jolla)

Benoît HERVIER

ownNotes 1.2.6

2014-01-03 00:00 UTC  by  Benoît HERVIER
0
0

A new version of ownNotes is available in OpenRepos or in downloads section.

Changeslog

  • Bug fix : lock token wasn t always properly initialized
  • Bug fix : Deleting multiple item at the same time could cancel some deletion
  • Feature : Cover provide now actions to sync or create a new note
  • Bug fix : Fix refreshing bug on bew note creation
  • Bug fix : translation are now properly loaded
  • Feature : Partial french and russian translation.

More information on ownNotes

This post was published with ownNotes and written on Jolla

Benoît HERVIER

tirelire_1.1.0

2013-11-05 00:00 UTC  by  Benoît HERVIER
0
0

I've just release a new version of Tirelire 1.1.0. This minor release add a settings page, so you ll be able to set the currency symbol for the money you use.

Benoît HERVIER

tirelire_1.0.0

2013-10-26 00:00 UTC  by  Benoît HERVIER
0
0

I ve just release a new software for Harmattan: Tirelire. A fast, easy to use, and simple expenses tracker.

Currently available only for Meego / Harmattan, port for SailfishOS and Nemo Mobile planned.

ScreenShots

MainPage ExpensePage MonthYearPicker

More informations

Benoît HERVIER

ownNotes 1.1.0 New Package

2013-10-25 00:00 UTC  by  Benoît HERVIER
0
0

Following the update of the Sailfish SDK, with the availability of the ARM compilation, i ve packaged ownNotes for ARM for SailfishOS. You can find it in the downloads section.

The Sailfish and Harmattan version are also available on OpenRepos.net

More informations on ownNotes

Benoît HERVIER

ownNotes 1.1.0

2013-10-08 00:00 UTC  by  Benoît HERVIER
0
0

This new release 1.1.0 of ownNotes is the first stable version of ownNotes for Harmattan and SailfishOS.

That's also the first alpha release for the desktop. Even if all features aren't yet implemented in desktop, and if the ui need some works, that s version is working and can sync notes too. Unfortunately, the desktop version require that you compile it yourself from git, i ven't found time yet to package it.

Changelog :

  • Fix highlighting on Harmattan and SailfishOS
  • Change highlight color of links on Harmattan
  • Fix refresh of notes after a sync

Screenshot of ownNotes on Linux :

ownNotes on Linux

The Sailfish and Harmattan version are also available on OpenRepos.net

More informations on ownNotes

Benoît HERVIER

ownNotes 1.0.2

2013-09-19 00:00 UTC  by  Benoît HERVIER
0
0

a new release of ownNotes is now available here in the downloads section for Harmattan and SailfishOS. This release improve the highlighter, and fix some cursor position happening when rehighlighter was triggered while using Swype keyboard.

More informations on ownNotes

Benoît HERVIER

ownNotes_1.0.1

2013-08-31 00:00 UTC  by  Benoît HERVIER
0
0

A new release of ownNotes is available. This release improve the sync feature. All notes are now synced at launch if a connection is available, and modified notes are also now synced too once they are saved if a connection is available.

Read more about ownNotes

Benoît HERVIER

ownNotes_Beta_100

2013-08-23 00:00 UTC  by  Benoît HERVIER
0
0

ownNotes Beta 1.0.0 is now available for SailfishOS and MeeGo Harmattan.

ownNotes is a markdown notes taking application with ownCloud/WebDav synchronization.

Screenshots

ownNotes on Sailfish ownNotes on Sailfish ownNotes on Sailfish ownNotes on Sailfish ownNotes on Sailfish ownNotes on Sailfish

Benoît HERVIER

silica_infobanner

2013-08-13 00:00 UTC  by  Benoît HERVIER
0
0

If you are currently porting application from Harmattan to Sailfish OS, you probably notice that there is any similar Silica Components for Harmattan InfoBanner.
So here i write a minimal one, that can display text only, i use the DockPanel component.

Code

/*

The MIT License (MIT)

Copyright (c) 2013 Benoit HERVIER <khertan@khertan.net>

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

*/


import QtQuick 2.0
import Sailfish.Silica 1.0
import net.khertan.python 1.0
import Sailfish.Silica.theme 1.0

DockedPanel {
    id: root

    width: Screen.width - 2*Theme.paddingSmall
    height: content.height + 2*Theme.paddingSmall

    dock: Dock.Top

    Rectangle {
        id: content
        x: Theme.paddingSmall
        y: Theme.paddingSmall
        width: parent.width

        height: infoLabel.height + 2*Theme.paddingSmall
        color: 'black';
        opacity: 0.65;

        Label {
            id: infoLabel
            text : ''
            color: Theme.highlightColor
            font.family: Theme.fontFamily
            font.pixelSize: Theme.fontSizeMedium
            width: parent.width - 2*Theme.paddingSmall
            x: Theme.paddingSmall
            y: Theme.paddingSmall
            wrapMode: Text.WrapAnywhere
            }
        MouseArea {
            anchors.fill: parent
            onClicked: {
                root.hide()
                autoClose.stop()
            }
        }
    }


    function displayError(errorMsg) {
        infoLabel.text = errorMsg
        root.show()
        autoClose.start()
    }

    Timer {
        id: autoClose
        interval: 15000
        running: false
        onTriggered: {
            root.hide()
            stop()
        }

    }
}

How to use

In your ApplicationWindow add :

    InfoBanner {
        id: trucmucheBanner
    }

And when you need it, call it with

trucmucheBanner.displayError(errMsg)

Download Link: InfoBanner

Benoît HERVIER

Preview of ownNote for Sailfish OS

2013-08-11 00:00 UTC  by  Benoît HERVIER
0
0

ownNotes is a note taking application designed to be easy to use. Support some part of the markdown syntax to render text. ownNotes is currently not available, but will be soon for Harmattan, Sailfish OS (JollaMobile phone) and desktop.

The core feature are written in Python and used from QML. For this i use a fork i made of PyOtherSide (available at http://github.com/khertan/pyotherside). If you would like to make application using PyOtherSide, i suggest to use the official version of PyOtherSide (available at http://github.com/thp/pyotherside

And now a video of ownNotes running on the SailfishSDK simulator :

And yes that a Python / Qml apps running with Qt5.

Benoît HERVIER

KhtSimpleText 2.4.1 and KhtNotes 3.7

2013-07-25 00:00 UTC  by  Benoît HERVIER
0
0

KhtNotes 3.7

KhtNotes 3.7 has been released, it's available on OpenRepos.net, soon in Nokia Store, or here in the downloads section. This release include the following changes :

  • Add missing dependency python-dbus
  • Test size file on conflict merge to avoid a bug in ownCloud webdav
  • Fix a mistake which can prevent sync of new created file

KhtSimpleText 2.4.1

A minor release of KhtSimpleText has been pushed to OpenRepos.net, Nokia Store and include the following fix :

  • Fix creation of a new file

You can also download it here in the downloads section.