Re: [PATCH 0/3] Misc smaller patches

2017-07-22 Thread Dirk Hohndel
On Sat, Jul 22, 2017 at 09:35:49PM +0300, Miika Turkia wrote: > On Sat, Jul 22, 2017 at 8:56 PM, Dirk Hohndel wrote: > > On Sat, Jul 22, 2017 at 08:50:33AM -0700, Linus Torvalds wrote: > >> > >> > >> This is a set of three small patches that fix some part

Re: [PATCH 0/3] Misc smaller patches

2017-07-22 Thread Miika Turkia
On Sat, Jul 22, 2017 at 8:56 PM, Dirk Hohndel wrote: > On Sat, Jul 22, 2017 at 08:50:33AM -0700, Linus Torvalds wrote: >> >> >> This is a set of three small patches that fix some particular issue that >> came up while looking at the gas pressure handling for multiple cy

Re: [PATCH 0/3] Misc smaller patches

2017-07-22 Thread Dirk Hohndel
On Sat, Jul 22, 2017 at 08:50:33AM -0700, Linus Torvalds wrote: > > > This is a set of three small patches that fix some particular issue that > came up while looking at the gas pressure handling for multiple cylinders. Those all look good. I notice that we now reliably fail T

[PATCH 0/3] Misc smaller patches

2017-07-22 Thread Linus Torvalds
This is a set of three small patches that fix some particular issue that came up while looking at the gas pressure handling for multiple cylinders. The first one is really entirely independent of the others, and fixes the gas use reporting issue that Davide has had. The second one is a

patches for user manual

2017-01-12 Thread Willem Ferguson
I re-sent three patches to the user manual to Dirk. It seems these three might have been missed. Kind regards, willem ___ subsurface mailing list subsurface@subsurface-divelog.org http://lists.subsurface-divelog.org/cgi-bin/mailman/listinfo

Re: [PATCHES] Two minor planner improvements

2016-12-28 Thread Stefan Fuchs
rface-divelog.org, d...@hohndel.org, "Robert C. > Helling" > *Subject:* Re: [PATCHES] Two minor planner improvements > > Hallo Dirk, hallo Robert, > > would it be possible to get another windows test version with Roberts > latest fixes for the planner? > > > Best reg

Re: [PATCHES] Two minor planner improvements

2016-12-28 Thread Dirk Hohndel
A daily build is ready for download at subsurface-divelog.org/downloads/daily ⁣-- >From my phone​ Original Message From: Stefan Fuchs Sent: Wed Dec 28 03:14:04 PST 2016 To: subsurface@subsurface-divelog.org, d...@hohndel.org, "Robert C. Helling" Subject: Re:

Re: [PATCHES] Two minor planner improvements

2016-12-28 Thread Stefan Fuchs
Hallo Dirk, hallo Robert, would it be possible to get another windows test version with Roberts latest fixes for the planner? Best regards Stefan -- Stefan Fuchs Banzhaldenstr. 66 70469 Stuttgart E-Mail: sfu...@gmx.de ___ sub

Re: [PATCHES] Two minor planner improvements

2016-12-26 Thread Dirk Hohndel
On Mon, Dec 26, 2016 at 07:06:40PM +0100, Robert Helling wrote: > It seems these two were forgotten. Sorry. Just added them. /D ___ subsurface mailing list subsurface@subsurface-divelog.org http://lists.subsurface-divelog.org/cgi-bin/mailman/listinfo/su

Re: [PATCHES] Two minor planner improvements

2016-12-26 Thread Robert Helling
It seems these two were forgotten. > On 15 Dec 2016, at 23:25, Robert Helling wrote: > > These two patches implement suggestions from trac. > > Best > Robert > > <0001-Set-surface-pressure-and-salinity-correctly-when-repla.txt><0002-Indicate-a-re

[PATCHES] Two minor planner improvements

2016-12-15 Thread Robert Helling
These two patches implement suggestions from trac. Best Robert From 040b804c1c451963531db6d0da31e61b853747ae Mon Sep 17 00:00:00 2001 From: "Robert C. Helling" Date: Thu, 15 Dec 2016 23:02:32 +0100 Subject: [PATCH 1/2] Set surface pressure and salinity correctly when replanning To:

Re: [PATCH] Re: Two patches for dive plan

2016-11-27 Thread Rick Walsh
On 27 November 2016 at 21:35, Robert Helling wrote: > > Am 26.11.2016 um 23:24 schrieb Anton Lundin : > > > It depends if i step to +1 from +0 or from +2. Timing issue somewhere? > Weird numeric instability? > > Anton, I got even weirder numeric instability for dive with 60min at 30m on 32% nitro

[PATCH] Re: Two patches for dive plan

2016-11-27 Thread Robert Helling
Am 26.11.2016 um 23:24 schrieb Anton Lundin :It depends if i step to +1 from +0 or from +2. Timing issue somewhere?Weird numeric instability? Excellent spot! It first compiled the planner notes before computing the new gradient factors.Here is a patch.BestRobertFrom 8ae82742d7b4b

Re: [PATCHES] Two patches for dive plan

2016-11-26 Thread Anton Lundin
On 23 November, 2016 - Robert Helling wrote: > From 404205c8f1aa37be374c2ba17acceb3541620bce Mon Sep 17 00:00:00 2001 > From: "Robert C. Helling" > Date: Wed, 23 Nov 2016 11:50:50 +0100 > Subject: [PATCH 2/2] Show effective gradient factors for VPMB-plans > To: subsurface@subsurface-divelog.org >

Re: [PATCHES] Two patches for dive plan

2016-11-23 Thread Robert Helling
Rick, > Am 24.11.2016 um 04:10 schrieb Rick Walsh : > > One question: is there a reason why we can't access > displayed_dive.dc.duration.seconds instead of creating a new function to > iterate through all the data points to get the runtime? I found that displayed_dive.dc.duration.seconds as we

Re: [PATCHES] Two patches for dive plan

2016-11-23 Thread Rick Walsh
Hi Robert, On 23 November 2016 at 22:05, Robert Helling wrote: > > Hi, > > here are two patches to improve the dive plan. The first simply shows the > total runtime on top of the plan. This is one of the most important data of > a plan and should be visible while adjusting

[PATCHES] Two patches for dive plan

2016-11-23 Thread Robert Helling
char **cached_datap, bool is_planner, bool add_plan_to_notes(diveplan, &displayed_dive, show_disclaimer, error); fixup_dc_duration(&displayed_dive.dc); + if(prefs.deco_mode == VPMB) { + diveplan->eff_gfhigh = rint(100.0 * regressionb()); +

[PATCHES] Deco mode preferences

2016-11-02 Thread Robert Helling
Hi, here are two patches, the first fixed a typo of Tomaz’, the second greys out labels of settings not in use. Best Robert From 28bebc9abcd440f69f9bce87e218bcca4d2afff0 Mon Sep 17 00:00:00 2001 From: "Robert C. Helling" Date: Wed, 2 Nov 2016 09:54:09 +0100 Subject: [PATCH 1/2] Act

Re: final patches for the preferences unittests

2016-11-01 Thread Dirk Hohndel
Tomaz, Thanks for this long series of patches. Most of them I was able to validate by reading the code, a couple will need more testing (especially this last one that I'm responding to). But a big THANKS for your work here, this was a big part of what I was waiting for before continuing to

Re: Patches to pref->graph

2016-11-01 Thread Dirk Hohndel
On Tue, Nov 01, 2016 at 03:15:13PM +0200, Willem Ferguson wrote: > Dirk, > I suspect the last of my two patches will not apply. There is a problem with > character encoding in the raw text of the patch and I have no idea how to > fix that. The subscript-2 of pO2 consequently appear

Re: final patches for the preferences unittests

2016-11-01 Thread Tomaz Canabrava
This last patch should fix robert's issues with the different deco models for display and plan. Robert issues should be fixed with this path. The issue was that the preferences wasn't hoocked up (it was actually partially hoocked in the wrong pref) On Tue, Nov 1, 2016 at 3:45 PM, Tomaz Canabrava

Re: final patches for the preferences unittests

2016-11-01 Thread Tomaz Canabrava
On Tue, Nov 1, 2016 at 3:25 PM, Tomaz Canabrava wrote: > more fixes regarding preferences > > On Tue, Nov 1, 2016 at 2:46 PM, Tomaz Canabrava > wrote: > >> bugfixes regarding preferences >> >> still checking for more. >> (the font issue that willem said is fixed on this series) >> >> Tomaz >> >

Re: final patches for the preferences unittests

2016-11-01 Thread Tomaz Canabrava
more fixes regarding preferences On Tue, Nov 1, 2016 at 2:46 PM, Tomaz Canabrava wrote: > bugfixes regarding preferences > > still checking for more. > (the font issue that willem said is fixed on this series) > > Tomaz > > On Tue, Nov 1, 2016 at 12:06 PM, Tomaz Canabrava > wrote: > >> FINALLY

Re: final patches for the preferences unittests

2016-11-01 Thread Tomaz Canabrava
bugfixes regarding preferences still checking for more. (the font issue that willem said is fixed on this series) Tomaz On Tue, Nov 1, 2016 at 12:06 PM, Tomaz Canabrava wrote: > FINALLY > this finishes the unittests - sorry for all delays. > > I'll now look for misbehaving preferences, like t

Patches to pref->graph

2016-11-01 Thread Willem Ferguson
Dirk, I suspect the last of my two patches will not apply. There is a problem with character encoding in the raw text of the patch and I have no idea how to fix that. The subscript-2 of pO2 consequently appears unreadable. If the second patch cannot be applied: If you apply the first of the

final patches for the preferences unittests

2016-11-01 Thread Tomaz Canabrava
FINALLY this finishes the unittests - sorry for all delays. I'll now look for misbehaving preferences, like the one willan complained. Tomaz From 7437265091fb221578a09b26199e1eea18a523e0 Mon Sep 17 00:00:00 2001 From: Tomaz Canabrava Date: Tue, 1 Nov 2016 11:16:50 +0100 Subject: [PATCH 1/4] Move

Re: Missing patches

2016-10-19 Thread Tomaz Canabrava
Answering via phone - I managed to do around 15 patches this week - there are more comming, and also I'll work on this weekend. So I hope to finish this. Em 19 de out de 2016 20:29, "Robert Helling" escreveu: > > Am 19.10.2016 um 20:20 schrieb Robert Helling : > >

Re: Missing patches

2016-10-19 Thread Robert Helling
> Am 19.10.2016 um 20:20 schrieb Robert Helling : > > Hi Dirk, > > you asked on IRC which patches are missing from my perspective in master. > This is what I have in my master but apparently is not in origin/master: > > The two patches of Rick (last two days) that re

Missing patches

2016-10-19 Thread Robert Helling
Hi Dirk, you asked on IRC which patches are missing from my perspective in master. This is what I have in my master but apparently is not in origin/master: The two patches of Rick (last two days) that rescale the heat-map color. I think I got convinced there. Regarding the deco model

Re: [PATCHES] Vary undersaturated portion of heatmap according inert gas

2016-10-19 Thread Hartley Horwitz
> > -- Forwarded message -- > From: Rick Walsh > To: Robert Helling > Cc: "subsurface@subsurface-divelog.org" > > Date: Wed, 19 Oct 2016 08:48:57 +1100 > Subject: Re: [PATCHES] Vary undersaturated portion of heatmap according > inert gas >

Re: [PATCHES] Vary undersaturated portion of heatmap according inert gas

2016-10-18 Thread Rick Walsh
On 18 October 2016 at 20:55, Robert Helling wrote: > Will try. I definitely like patch 2, that’s a no-brainer. > > For patch 1, I see your point (the user can see if on-gasing is > happening). I am not yet convinced, though. the trouble I am having is > “what is the heat-map supposed to show?”. I

Re: Kirigami patches

2016-08-16 Thread Marco Martin
On Tuesday 16 August 2016, Dirk Hohndel wrote: > > ah, if what you have now works, then that's fine :) > > was something to try if it wasn't working yet :) > > So here are the kirigami patches that I now use. The last one I don't thanks, I'll take a look at

Re: Kirigami patches

2016-08-16 Thread Dirk Hohndel
the kirigami.pri file from the Subsurface-mobile.pro file? And I assume > > that i then don't need much of what I spent all weekend trying to make > > work? > > ah, if what you have now works, then that's fine :) > was something to try if it wasn't working yet

Re: Kirigami patches

2016-08-16 Thread Dirk Hohndel
> On Aug 16, 2016, at 6:48 AM, Marco Martin wrote: > > On Tuesday 16 August 2016, Dirk Hohndel wrote: >> Just to make sure I understand this correctly... You are suggesting that I >> shouldn't build Kirigami as a separate library, but that I should include >> the kirigami.pri file from the Subsu

Re: Kirigami patches

2016-08-16 Thread Marco Martin
On Tuesday 16 August 2016, Dirk Hohndel wrote: > Just to make sure I understand this correctly... You are suggesting that I > shouldn't build Kirigami as a separate library, but that I should include > the kirigami.pri file from the Subsurface-mobile.pro file? And I assume > that i then don't need

Re: Kirigami patches

2016-08-16 Thread Dirk Hohndel
-- Sent from my phone On August 16, 2016 5:59:06 AM PDT, Marco Martin wrote: >On Tuesday 16 August 2016, Tomaz Canabrava wrote: >> > > - use the .pri file when directly linking in kirigami into the >(parent) >> > > project (include directive in PROJECT.pro), then the >Q_INIT_RESOURCE is >> > >

Re: Kirigami patches

2016-08-16 Thread Marco Martin
On Tuesday 16 August 2016, Tomaz Canabrava wrote: > > > - use the .pri file when directly linking in kirigami into the (parent) > > > project (include directive in PROJECT.pro), then the Q_INIT_RESOURCE is > > > not necessary. using qmake this seems to be the easiest way and at > > > least seems to

Re: Kirigami patches

2016-08-16 Thread Tomaz Canabrava
Subsue Em 16 de ago de 2016 04:43, "Marco Martin" escreveu: > > On Tuesday 16 August 2016, Martin Gysel wrote: > > Am 16.08.2016 um 01:55 schrieb Dirk Hohndel: > > > It's pretty clear that no one ever tested the kirigami.pro qmake file. > > > The second patch I'm not 100% sure about, but it seems

Re: Kirigami patches

2016-08-16 Thread Marco Martin
On Tuesday 16 August 2016, Martin Gysel wrote: > Am 16.08.2016 um 01:55 schrieb Dirk Hohndel: > > It's pretty clear that no one ever tested the kirigami.pro qmake file. > > The second patch I'm not 100% sure about, but it seems to match what the > > documentation tells us SHOULD be done. > > maybe

Re: Kirigami patches

2016-08-16 Thread Marco Martin
On Tuesday 16 August 2016, Dirk Hohndel wrote: > It's pretty clear that no one ever tested the kirigami.pro qmake file. The > second patch I'm not 100% sure about, but it seems to match what the > documentation tells us SHOULD be done. because with the pro it was supposed to build the dynamic plug

Re: Kirigami patches

2016-08-15 Thread Martin Gysel
Am 16.08.2016 um 01:55 schrieb Dirk Hohndel: > It's pretty clear that no one ever tested the kirigami.pro qmake file. The > second patch I'm not 100% sure about, but it seems to match what the > documentation tells us SHOULD be done. maybe my understanding of the qt build system, tools and librari

Kirigami patches

2016-08-15 Thread Dirk Hohndel
It's pretty clear that no one ever tested the kirigami.pro qmake file. The second patch I'm not 100% sure about, but it seems to match what the documentation tells us SHOULD be done. /D >From 8e4307346614943a940f11d2ee6159886c54ee83 Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Mon, 15 Aug 20

some patches regarding the preferences mess

2016-08-15 Thread Tomaz Canabrava
This is by no means complete, just a "I'm actually working" this should improve a few things and break others, so don't merge this yet, it's mostly a WIP. It's ~mainly~ finished, I just need to finish *testing* and fixing a couple of occasional bugs. Tomaz. From 9b6b9aaef9ef1b87693bfee832af9432a4

Re: [PATCH 00/11] Use cylinder index in divedatapoint structure and best mix patches

2016-07-12 Thread Rick Walsh
On 10 Jul 2016 07:19, "Robert Helling" wrote: > > I only have two questions or remarks: What exactly does the MND column display/mean? It seems, for air it’s always 30m (which, as I understand is the MND that GUE divers aim for). It seems to me, the meaning is something like „what would be the MND

Re: patches pushed to master

2016-07-11 Thread Dirk Hohndel
On Sat, Jul 09, 2016 at 10:37:25PM +0200, Axel Richter wrote: > Am 09.07.2016 um 22:05 schrieb Dirk Hohndel: > > > > Has anyone figured out the new Kirigami stuff? > > Hi Dirk, > > Qt 5.7 and kirigami works for the android build with the following patch: Could I get this as a proper patch that

Re: patches pushed to master

2016-07-09 Thread Robert Helling
Dirk, > Am 09.07.2016 um 22:05 schrieb Dirk Hohndel : > > Next week Linus and I will be in Tokyo. That may > actually mean that I'll have at least SOME time to look at Subsurface. maybe you find time to make new windows binaries available. Then the reporter of the time zone issue (in the google

Re: [PATCH 00/11] Use cylinder index in divedatapoint structure and best mix patches

2016-07-09 Thread Robert Helling
asier to manage > modifying multiple cylinders without model getting lost. The third patch > takes advantage of this and fixes #970 (update cylinder deco MOD when the > deco pO2 is changed). > > The remaining patches are reworked from my previous series improving handling > of "

Re: patches pushed to master

2016-07-09 Thread Axel Richter
at Subsurface. So if you have patches that I have overlooked, if you have things that you want my opinion on, now may be a great time to (re-)send those. The following week we'll be on a liveaboard with no phone or internet. That means that Subsurface will likely get some critical testin

patches pushed to master

2016-07-09 Thread Dirk Hohndel
ucked as a maintainer. Guilty as charged. I'd love to promise that it will be all better now, but that would be silly because it won't. Next week Linus and I will be in Tokyo. That may actually mean that I'll have at least SOME time to look at Subsurface. So if you have patches that I hav

[PATCH 0/2] Some initial Suunto EON Steel CCR patches

2016-06-21 Thread Linus Torvalds
The first patch is something I should have sent in long ago, rather than always do ad-hoc every single time I want to check new fields from the dive computer: add debug support for showing all the dive descriptors. That patch has no semantic difference, but it means that the download logs will

[PATCH 0/2] Minor fairly cosmetic patches

2016-05-31 Thread Linus Torvalds
Here are two trivial patches. The first one I've had pending for a while and fixes a memory leak (not big, but I happened to notice it when running valgrind), and the second one removes the code to ignore surface samples at divecomputer import time. That second one will mean that we&#

Re: [PATCHES] 4.5.5

2016-03-23 Thread Dirk Hohndel
> On Mar 23, 2016, at 1:23 PM, Henrik Brautaset Aronsen > wrote: > > On Wed, Mar 23, 2016 at 8:47 AM, Robert Helling > wrote: > b) Get rid of the maximum value properly (not by making it ridiculously big > but by also deleting it from the .ui file). In any case, wha

Re: [PATCHES] 4.5.5

2016-03-23 Thread Henrik Brautaset Aronsen
On Wed, Mar 23, 2016 at 8:47 AM, Robert Helling wrote: > b) Get rid of the maximum value properly (not by making it ridiculously > big but by also deleting it from the .ui file). In any case, what is it > good for? Why do we want to prevent the user from doing stupid things? > Because we could ge

Re: [PATCHES] 4.5.5

2016-03-23 Thread Robert Helling
Dirk,On 23.03.2016, at 15:52, Dirk Hohndel wrote:Since this was already pushed out, it has to be a second patch that fixesthings. Otherwise this would change a git repository that others havepulled from and pulls wouldn't be 'fast forward' anymore.here you go.From 06af8ecaf41dcbd

Re: [PATCHES] 4.5.5

2016-03-23 Thread Dirk Hohndel
On Wed, Mar 23, 2016 at 08:47:36AM +0100, Robert Helling wrote: > > you caught me here but your „solution“ actually makes it worse: Ha. > The problem is when switching from PSI to bar: You start, say with a value of > 580psi (roughly 40bar). Then you change units, this makes the above code > e

Re: [PATCHES] 4.5.5

2016-03-23 Thread Robert Helling
> On 23.03.2016, at 00:14, Dirk Hohndel wrote: > > Thanks, Robert. > > I have a couple of small concerns. Given that it's past midnight in > Germany, I'll just fix them in your commit > > /D > >> diff --git a/desktop-widgets/diveplanner.cpp >> b/desktop-widgets/diveplanner.cpp >> index e6fe6

Re: [PATCHES] Re: 4.5.5

2016-03-22 Thread Dirk Hohndel
Thanks, Robert. I have a couple of small concerns. Given that it's past midnight in Germany, I'll just fix them in your commit /D > diff --git a/desktop-widgets/diveplanner.cpp b/desktop-widgets/diveplanner.cpp > index e6fe612..32797f0 100644 > --- a/desktop-widgets/diveplanner.cpp > +++ b/deskt

[PATCHES] Re: 4.5.5

2016-03-22 Thread Robert Helling
On 22.03.2016, at 19:45, Robert C. Helling wrote:Yesterday, I filed two bugs that should easily be fixed: Make the reserve of recreational mode units aware and warn when running as root. here is the patch that fixes the first:From 7727d83b46c6522add245cc05f86eb22951089

Re: [PATCH] OSX build patches against v4.5-branch

2016-03-19 Thread Dirk Hohndel
On Wed, Mar 16, 2016 at 09:31:44AM +0100, Jeroen Massar wrote: > > These are quite close to the changes I needed for the patches against > master. > > I did add "user home dir Qt5.5/5.6" detection to this too, just in case > as we have that in master. Good idea. T

[PATCH] OSX build patches against v4.5-branch

2016-03-16 Thread Jeroen Massar
Hola, These are quite close to the changes I needed for the patches against master. I did add "user home dir Qt5.5/5.6" detection to this too, just in case as we have that in master. As noted, I'll do full-clean builds coming weekend, but I think this resolves the biggest ch

[PATCH] 3 tiny OSX build patches (against master)

2016-03-16 Thread Jeroen Massar
the third patch. I went for an error, as auto installing that causes possibly unexpected popups for accepting apple licenses, thus better to error out at that point. Find attached three separate tiny patches: - [PATCH 1/3] Debug reminder: how to get more verbose details out of cmake - [PA

more cleanup patches to remove tons of warnings while building for iOS

2016-03-07 Thread Tomaz Canabrava
I hate warnings. 0001-Clean-DiveCartesianAxis.patch Description: Binary data 0002-Clean-DiveEventItem.patch Description: Binary data 0003-Clean-DiveProfileItem.patch Description: Binary data 0004-Clean-Profilewidget2.patch Description: Binary data 0005-Clean-TankItem.patch Description: Bi

silence-warning patches

2016-03-07 Thread Tomaz Canabrava
we hare more than 1000 warnings while building for iOS we need to silence those because they are hiding possible real errors this is the beginning of that work. 0001-Silence-warning-about-unued-parameter.patch Description: Binary data 0002-Create-a-constructor-with-default-parameters-to-some.pa

Re: subsurface-ios first patches

2016-03-05 Thread Tomaz Canabrava
; noise on the dumb project for iOS. >> >> >> On Sat, Mar 5, 2016 at 2:01 PM, Tomaz Canabrava >> wrote: >> >>> >>> >>> On Sat, Mar 5, 2016 at 1:50 PM, Dirk Hohndel wrote: >>> >>>> Sadly the patches are base64 encoded (t

Re: subsurface-ios first patches

2016-03-05 Thread Tomaz Canabrava
abrava > wrote: > >> >> >> On Sat, Mar 5, 2016 at 1:50 PM, Dirk Hohndel wrote: >> >>> Sadly the patches are base64 encoded (typical Mac issue) and I can't >>> easily quote them in there. >>> >>> A few comments: >>> >>

Re: subsurface-ios first patches

2016-03-05 Thread Tomaz Canabrava
this cleans the CMakeLists file (it reverts to master) and removes some noise on the dumb project for iOS. On Sat, Mar 5, 2016 at 2:01 PM, Tomaz Canabrava wrote: > > > On Sat, Mar 5, 2016 at 1:50 PM, Dirk Hohndel wrote: > >> Sadly the patches are base64 encoded (typical Mac

Re: subsurface-ios first patches

2016-03-05 Thread Tomaz Canabrava
On Sat, Mar 5, 2016 at 1:50 PM, Dirk Hohndel wrote: > Sadly the patches are base64 encoded (typical Mac issue) and I can't > easily quote them in there. > > A few comments: > > If you don't use cmake, why patches to the CMakeLists.txt file? That seems > to make no

Re: subsurface-ios first patches

2016-03-05 Thread Dirk Hohndel
Sadly the patches are base64 encoded (typical Mac issue) and I can't easily quote them in there. A few comments: If you don't use cmake, why patches to the CMakeLists.txt file? That seems to make no sense (oh, and it's whitespace damaged, too) There are also changes to the CMake

Re: subsurface-ios first patches

2016-03-05 Thread Tomaz Canabrava
On Sat, Mar 5, 2016 at 1:43 PM, Dirk Hohndel wrote: > On Sat, Mar 05, 2016 at 01:27:44PM -0300, Tomaz Canabrava wrote: > > people: > > > > This will work only with Qt 5.6 for now, so don't even try with 5.5 > > the prerequisites should be build for x86_64 bits, and qt 5.5 is build > for > > 32 bi

Re: subsurface-ios first patches

2016-03-05 Thread Dirk Hohndel
On Sat, Mar 05, 2016 at 01:27:44PM -0300, Tomaz Canabrava wrote: > people: > > This will work only with Qt 5.6 for now, so don't even try with 5.5 > the prerequisites should be build for x86_64 bits, and qt 5.5 is build for > 32 bits, giving tons of erros. > > I tested the desktop build, it works

subsurface-ios first patches

2016-03-05 Thread Tomaz Canabrava
people: This will work only with Qt 5.6 for now, so don't even try with 5.5 the prerequisites should be build for x86_64 bits, and qt 5.5 is build for 32 bits, giving tons of erros. I tested the desktop build, it works android build also works, ios builds are currently "meh", they open but don't

[PATCH] 2 Android related build patches

2016-02-02 Thread Jan Mulder
Attached 2 Android related build patches. Subject: [PATCH 1/2] Build Android mobile app against latest OpenSSL No reasons not to upgrade to the latest OpenSSL lib. The currently used 1.0.1 branch is ending end of 2016, so a switch to 1.0.2 is useful anyway. Signed-off-by: Jan Mulder

Re: [PATCHES] Three patches for image handling

2016-01-10 Thread Dirk Hohndel
ds it via the HTTP PUT method. > > Nothing so far has been implemented on the server side. So this is totally > untested. These patches should not break anything but being conservative, > they might be considered a RFC. I took the first two. Before I take the third one I want to spend a little

Re: Patches regarding subsurface-mobile

2016-01-08 Thread Tomaz Canabrava
; >> > > >> > > >> > On Fri, Jan 8, 2016 at 1:00 PM, Lubomir I. Ivanov < > neolit...@gmail.com> > >> > wrote: > >> >> > >> >> On 8 January 2016 at 16:48, Tomaz Canabrava > wrote: > >> >> &

Re: Patches regarding subsurface-mobile

2016-01-08 Thread Lubomir I. Ivanov
>> > wrote: >> >> >> >> On 8 January 2016 at 16:48, Tomaz Canabrava wrote: >> >> > Dirk asked for a reworked set of patches, here they are. >> >> >> >> + Q_PROPERTY(QStringList weights READ weights CONSTANT) >> >> + Q_

Re: Patches regarding subsurface-mobile

2016-01-08 Thread Tomaz Canabrava
On Fri, Jan 8, 2016 at 1:04 PM, Lubomir I. Ivanov wrote: > On 8 January 2016 at 17:02, Tomaz Canabrava wrote: > > > > > > On Fri, Jan 8, 2016 at 1:00 PM, Lubomir I. Ivanov > > wrote: > >> > >> On 8 January 2016 at 16:48, Tomaz Canabrava wrote: &g

Re: Patches regarding subsurface-mobile

2016-01-08 Thread Lubomir I. Ivanov
On 8 January 2016 at 17:02, Tomaz Canabrava wrote: > > > On Fri, Jan 8, 2016 at 1:00 PM, Lubomir I. Ivanov > wrote: >> >> On 8 January 2016 at 16:48, Tomaz Canabrava wrote: >> > Dirk asked for a reworked set of patches, here they are. >> >> + Q_PROPE

Re: Patches regarding subsurface-mobile

2016-01-08 Thread Tomaz Canabrava
On Fri, Jan 8, 2016 at 1:00 PM, Lubomir I. Ivanov wrote: > On 8 January 2016 at 16:48, Tomaz Canabrava wrote: > > Dirk asked for a reworked set of patches, here they are. > > + Q_PROPERTY(QStringList weights READ weights CONSTANT) > + Q_PROPERTY(QStringList cylinders READ

Re: Patches regarding subsurface-mobile

2016-01-08 Thread Lubomir I. Ivanov
On 8 January 2016 at 16:48, Tomaz Canabrava wrote: > Dirk asked for a reworked set of patches, here they are. + Q_PROPERTY(QStringList weights READ weights CONSTANT) + Q_PROPERTY(QStringList cylinders READ cylinders CONSTANT) is it still possible to get cylinder0 - cylinderN and wieg

Re: Patches regarding subsurface-mobile

2016-01-08 Thread Tomaz Canabrava
Dirk asked for a reworked set of patches, here they are. around 200 lines removed by using QObject properties in a single class, yey. On Thu, Jan 7, 2016 at 7:53 PM, Tomaz Canabrava wrote: > I'm trying to cleanup how we interact from QML to C++ > those patches are cleaning a bu

Patches regarding subsurface-mobile

2016-01-07 Thread Tomaz Canabrava
I'm trying to cleanup how we interact from QML to C++ those patches are cleaning a bunch of code and makign sure things continue working as they should. Mostly: - Clean the DiveListModel to only give what we need (the Dive) - Move a bit of things around - Remove unecessary methods / calls -

Re: CMake patches

2015-12-17 Thread Tomaz Canabrava
It is, I fixed bugs, not those. :D On Thu, Dec 17, 2015 at 5:11 PM, Joakim Bygdell wrote: > > On 17 Dec 2015, at 18:03, Tomaz Canabrava wrote: > > code cleanup and bug fixes. > > > Building for android is broken. > > -- Found ANT: /usr/local/bin/ant > CMake Error at > /Users/Jocke/src/Android/q

Re: CMake patches

2015-12-17 Thread Joakim Bygdell
> On 17 Dec 2015, at 18:03, Tomaz Canabrava wrote: > > code cleanup and bug fixes. Building for android is broken. -- Found ANT: /usr/local/bin/ant CMake Error at /Users/Jocke/src/Android/qt-android-cmake/AddQtAndroidApk.cmake:90 (get_property): get_property could not find TARGET subsurfac

CMake patches

2015-12-17 Thread Tomaz Canabrava
code cleanup and bugfixes. From 51a441c514beede832361efa8f9b4c7a18837c49 Mon Sep 17 00:00:00 2001 From: Tomaz Canabrava Date: Thu, 17 Dec 2015 14:01:28 -0200 Subject: [PATCH 1/5] Remove depreceated calls to -DLIBGIT23 Signed-off-by: Tomaz Canabrava --- cmake/Modules/HandleFindGit2.cmake | 8 ---

Re: [PATCHES]

2015-11-25 Thread Sebastian Kügler
On Tuesday, November 24, 2015 05:49:21 PM Robert Helling wrote: > + QPixmap tempPixmap = pixmap; > + QPainter painter; > + painter.begin(&tempPixmap); > + painter.fillRect(pixmap.rect(), QColor(127, 127, 127, 127)); > + painter.end(); I may be dense today, but this se

[PATCHES]

2015-11-24 Thread Robert Helling
Hi,I am resending a number of patches I sent earlier which seem to me are still not pushed. Comments or pushes would be appreciated.From 10be4f46ca1a16353cedbd4b709bcc2332d69a78 Mon Sep 17 00:00:00 2001 From: "Robert C. Helling" Date: Mon, 16 Nov 2015 16:10:07 +0100 Subject: [PATCH 1/2]

[PATCH 0/3] some patches that fix printing for planned dive

2015-11-15 Thread Lubomir I. Ivanov
From: "Lubomir I. Ivanov" Lubomir I. Ivanov (3): qthelper.cpp: support line breaks for notes when printing pretty much a hack to convert some planner HTML tags to . non-planned dive notes line breaks are also converted to printing_templates: mark 'dive.notes' as 'safe' this patch requires

Re: Patches to add Context Menu to Images

2015-11-03 Thread Guido Lerch
Hi Robert 2015-11-03 21:34 GMT+01:00 Robert C. Helling : > Hi Guido, > > On 03 Nov 2015, at 17:21, Guido Lerch wrote: > > This set of patches enables users to use the mouse and a context menu to: > > > I think the interference between these and my Drag and Drop patch sh

Re: Patches to add Context Menu to Images

2015-11-03 Thread Robert C. Helling
Hi Guido, > On 03 Nov 2015, at 17:21, Guido Lerch wrote: > > This set of patches enables users to use the mouse and a context menu to: I think the interference between these and my Drag and Drop patch should be very small, so yes, of course, go ahead, let’s sort this out together! F

Patches to add Context Menu to Images

2015-11-03 Thread Guido Lerch
Hi All, Re-submitting. This set of patches enables users to use the mouse and a context menu to: 1. Add images from files/web 2. Delete selected images 3. Delete all images If there is no objection, I am going to work on a local file based management of images again that can be selected via the

[PATCH] 2 translation related patches

2015-10-20 Thread Jan Mulder
2 patched attached. 1) Fix broken translation in divelist Fixes a broken translation in the divelist introduced in commit 45b1d0d73db6e21. Now, the (.. dives) string on a trip line in the divelist is translated (again). 2) Add missing tr() implementations One specific string did not translate.

Fwd: minor [PATCHES] for freediving

2015-10-18 Thread Giorgio Marzano
Now that the new release is out, could we consider adding those patches to the next minor? G -- Forwarded message -- From: Giorgio Marzano Date: 2015-10-11 23:40 GMT+02:00 Subject: minor [PATCHES] for freediving To: Subsurface Mailing List Hi, I know that this is something

minor [PATCHES] for freediving

2015-10-11 Thread Giorgio Marzano
Hi, I know that this is something which won't be merged before the next release, but I would like to propose those patches for a (low priority) review. They are all easy, cosmetic and freedive specific (no impact on scuba) 0001-Change-plot-scaling-to-handle-FREEDIVE-mode hacks the autosc

Re: three small patches for current git head

2015-10-07 Thread K. "pestophagous" Heller
ug fixes at: >> > >> > http://trac.subsurface-divelog.org/ticket/912 and >> > http://trac.subsurface-divelog.org/ticket/820 >> >> We generally prefer patches to be sent to the mailing list (to answer >> your question in the bug comment). I personally u

Re: three small patches for current git head

2015-10-07 Thread K. "pestophagous" Heller
On Wed, Oct 7, 2015 at 12:11 AM, Dirk Hohndel wrote: > > Hello and welcome. I think you are the first person who told me that they > "lurked without subscribing". That's a new approach :-) > Yep :) your httpd access logs probably show activity that looks like i was trying to hit every page of th

Re: three small patches for current git head

2015-10-07 Thread Dirk Hohndel
an issue in some environments.) I'll fix this here by making it a calloc as I had originally intended. :facepalm: > > Also, I have provided two (unrelated) bug fixes at: > > > > http://trac.subsurface-divelog.org/ticket/912 and > > http://trac.subsurface-divelog.org/t

Re: three small patches for current git head

2015-10-07 Thread Dirk Hohndel
are the first person who told me that they "lurked without subscribing". That's a new approach :-) As for patches... I love fixes so I'll go and look at github to see if I can find them... but you may have noticed that we mostly do things in email here. Or at least with pull request

Re: three small patches for current git head

2015-10-06 Thread Miika Turkia
gt; Also, I have provided two (unrelated) bug fixes at: > > http://trac.subsurface-divelog.org/ticket/912 and > http://trac.subsurface-divelog.org/ticket/820 We generally prefer patches to be sent to the mailing list (to answer your question in the bug comment). I personally use git send-emai

three small patches for current git head

2015-10-06 Thread K. Heller
Hi all, When you pull the latest from github.com/torvalds/subsurface, if you (like me) are configured to open the default "username.xml" logbook on launch, you will likely discover a problem in commit e8a868aae of Oct 6. See comments here: https://github.com/torvalds/subsurface/commit/e8a868aae

patches pushed

2015-09-16 Thread Dirk Hohndel
So I think I have pushed what I had pending - except for my Uemis fixes as I don't want to cause merge issues for Guido. Hopefully we'll get his patches and I can add them tomorrow. I'll kick of new dailies and I hope to do Beta 2 tomorrow

  1   2   3   4   >