Re: [SailfishDevel] CalDAV/CardDAV Contributor Meeting

2017-09-03 Thread Chris Adams
Hi everyone,

Once again, sorry for the late notice, the Sailfish OS CardDAV/CalDAV 
Contributors meeting will be held at 0900 UTC today.  The agenda for the 
meeting can be found at:
https://sailfishos.org/wiki/CalDAV_and_CardDAV_Community_Contributions#04.2F09.2F2017_Meeting

The log from the last meeting can be found at:
http://merproject.org/meetings/mer-meeting/2017/mer-meeting.2017-08-07-09.00.log.html

The agenda will probably revolve around discussing dcaliste's investigation 
into MER#1699 and MER#1805.  As mentioned in the previous couple of meetings, 
there are a couple of lower-priority issues which are good candidates for new 
contributors to take, also.  Please get in touch if you'd like to get involved 
with those :-)

The next meeting after today's meeting is tentatively scheduled for Monday 
October 2nd at 0900 UTC.

Best regards,
Chris.



From: Devel [devel-boun...@lists.sailfishos.org] on behalf of Chris Adams 
[chris.ad...@jolla.com]
Sent: Monday, August 07, 2017 1:26 PM
To: Sailfish OS Developers
Subject: Re: [SailfishDevel] CalDAV/CardDAV Contributor Meeting

Hi everyone,

Sorry for the late notice - just a reminder that the next Sailfish OS 
CardDAV/CalDAV Contributors meeting will be held at 0900 UTC today.  The agenda 
for the meeting can be found at:
https://sailfishos.org/wiki/CalDAV_and_CardDAV_Community_Contributions#07.2F08.2F2017_Meeting

The log from the last meeting can be found at:
http://merproject.org/meetings/mer-meeting/2017/mer-meeting.2017-07-03-09.01.log.html

Unfortunately, due to company priorities and ongoing projects, I haven't had a 
chance to investigate the "spurious local event modification" issue since the 
last meeting.  If someone is able to investigate that one, please get in touch 
and I'll give you some tips on how to get started, otherwise hopefully I'll get 
a chance some time soon.

The next meeting after today is tentatively planned to be held on Monday the 
4th of September at 0900 UTC.

Best regards,
Chris.



From: Devel [devel-boun...@lists.sailfishos.org] on behalf of Chris Adams 
[chris.ad...@jolla.com]
Sent: Thursday, June 29, 2017 6:07 PM
To: Sailfish OS Developers
Subject: Re: [SailfishDevel] CalDAV/CardDAV Contributor Meeting

Hi everyone,

The log from the last meeting can be found at: 
http://merproject.org/meetings/mer-meeting/2017/mer-meeting.2017-06-05-09.00.log.html

The next meeting will be held this coming Monday the 3rd of July at 0900 UTC.

The agenda can be found at: 
https://sailfishos.org/wiki/CalDAV_and_CardDAV_Community_Contributions#03.2F07.2F2017_Meeting

Currently, the agenda includes:
- we need to investigate a "spurious local event modification" issue
- asking for volunteers to help with a couple of minor tasks

Activity since the last meeting:
- I believe I've figured out the reasons for the calendar duplication issue, 
and have created a series of fixes to address these bugs.  I've updated the 
post in TJC to ask for more volunteers to test the new packages: 
https://together.jolla.com/question/158893/caldavcarddav-testing-volunteers-requested/

Best regards,
Chris.



From: Devel [devel-boun...@lists.sailfishos.org] on behalf of Chris Adams 
[chris.ad...@jolla.com]
Sent: Tuesday, May 30, 2017 2:48 PM
To: Sailfish OS Developers
Subject: Re: [SailfishDevel] CalDAV/CardDAV Contributor Meeting

Hi everyone,

The next meeting will be held this coming Monday the 5th of June at 0900 UTC.

The agenda can be found at: 
https://sailfishos.org/wiki/CalDAV_and_CardDAV_Community_Contributions#05.2F06.2F2017_Meeting

The major topic will be a CalDAV duplication issue which has been reported by a 
couple of community members and also one sailor (so we have a repro, and I am 
currently investigating).  There are a variety of patches associated with this 
one which need thorough review and testing: 
https://git.merproject.org/mer-core/buteo-sync-plugin-caldav/merge_requests/20

There are a couple of other tasks which a new contributor could potentially 
help with (MER#1714 and MER#1751) too :-)

Activity since last meeting:
- dcaliste fixed MER#1773 - thanks!
- Manatus helped with testing the MER#1751 and initial JB#18601 packages - 
thanks!
- chriadam investigated JB#38601 with abranson and guhl, still ongoing.

Best regards,
Chris.


From: Devel [devel-boun...@lists.sailfishos.org] on behalf of Chris Adams 
[chris.ad...@jolla.com]
Sent: Tuesday, May 09, 2017 1:04 PM
To: Sailfish OS Developers
Subject: Re: [SailfishDevel] CalDAV/CardDAV Contributor Meeting

Hi everyone,

Here is the summary of the meeting from yesterday:

- The fixes for the various CalDAV issues were merged and released for 
upgrade-2.1.0 seem to have resolved most issues!  Thanks Damien!
- Chris will soon merge the fix for the first part of MER#1751. Help testing 
the packages would be greatly 

[SailfishDevel] bluez5 breaks sdp_connect()

2017-09-03 Thread David Llewellyn-Jones
Hello!

I recently upgraded my Jolla C to 2.1.1.26, and so moved from bluez-libs
to bluez5-libs.

This triggered the issue that sdp_connect() is no longer supported by
bluez5. Running the bluetooth daemon in compatibility mode (as described
here: https://raspberrypi.stackexchange.com/a/42262) allows sdp_conned()
to work again, but I'd rather address the issue properly in my code.

Does anyone have advice on good ways to register a Bluetooth service
using Bluez on Sailfish OS that would work across devices?

David
-- 
Website: http://www.flypig.co.uk
___
SailfishOS.org Devel mailing list
To unsubscribe, please send a mail to devel-unsubscr...@lists.sailfishos.org

Re: [SailfishDevel] Retrieve application version

2017-09-03 Thread jerome levreau
hi,
to get version of MY app while running I'm creating a variable :

in .spec, add / change :
%qtc_qmake5  \
VERSION=%{version}

in .pro add :
DEFINES += APP_VERSION=\"\\\"$${VERSION}\\\"\"

then in cpp, set version to the QGuiApplication :
app->setApplicationVersion(QString(APP_VERSION));

from qml :
Qt.application.version

from cpp :
QCoreApplication::applicationVersion();

Note, when you change version number, you need to to a full clean/rebuild


2017-09-03 8:59 GMT+02:00 Dylan Van Assche via Devel <
devel@lists.sailfishos.org>:

> Hi,
>
> I'm trying to update the application version everytime I change it in the
> .SPEC file but it seems that there's no Harbour allowed API is available to
> querry the application version when running?
> My last help would be parsing a "pkcon search name " but if there's a
> better method available, that would be great.
>
> Kind regards,
> Dylan Van Assche
>
>
>
>
> ___
> SailfishOS.org Devel mailing list
> To unsubscribe, please send a mail to devel-unsubscribe@lists.
> sailfishos.org
>
___
SailfishOS.org Devel mailing list
To unsubscribe, please send a mail to devel-unsubscr...@lists.sailfishos.org

[SailfishDevel] Retrieve application version

2017-09-03 Thread Dylan Van Assche via Devel
Hi,

I'm trying to update the application version everytime I change it in the .SPEC 
file but it seems that there's no Harbour allowed API is available to querry 
the application version when running?
My last help would be parsing a "pkcon search name " but if there's a 
better method available, that would be great.

Kind regards,
Dylan Van Assche___
SailfishOS.org Devel mailing list
To unsubscribe, please send a mail to devel-unsubscr...@lists.sailfishos.org