Re: [GNC] GnuCash 3.2 Japanese Keyboard

2019-01-13 Thread John Ralls

> On Jan 12, 2019, at 10:39 PM, Thomas Reich  wrote:
> 
> Hi,
> I have exactly the same problem now. I've made no changes to my system or
> gnucash and prior it worked fine, but suddenly it only shows Kanas and
> ignores all IME settings. I then updated to Gnucash 3.4 but no change. Prior
> I was on 3.1 and it worked until today. Is there a solution for this?
> 
> As a sidenote, I had the same problem for Geany and never found a fix. I
> would only do it intermittendly. Using Pycharm now and no more problems. I'm
> afraid no such alternative for Gnucash exists, so would love to know a
> solution.]

We raised an issue last fall and got Fan Chun-Wei to fix the Windows IME in 
Gtk. Unfortunately there was a hiccup with the build server updating Gtk and 
that didn’t make it into 3.4. I fixed that and the (Korean) user who originally 
reported the problem says that the nightly builds from last weekend now work. 
Please try one, https://code.gnucash.org/builds/win32/maint 
.

If you can get the Geany folks to make a Windows build with gtk-3.24.2 it 
should work there as well.

Regards,
John Ralls

___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.

Re: [GNC] GnuCash 3.2 Japanese Keyboard

2019-01-12 Thread Thomas Reich
Hi,
I have exactly the same problem now. I've made no changes to my system or
gnucash and prior it worked fine, but suddenly it only shows Kanas and
ignores all IME settings. I then updated to Gnucash 3.4 but no change. Prior
I was on 3.1 and it worked until today. Is there a solution for this?

As a sidenote, I had the same problem for Geany and never found a fix. I
would only do it intermittendly. Using Pycharm now and no more problems. I'm
afraid no such alternative for Gnucash exists, so would love to know a
solution.]

thanks,
thomas




--
Sent from: http://gnucash.1415818.n4.nabble.com/GnuCash-User-f1415819.html
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] GnuCash 3.2 Japanese Keyboard

2018-08-31 Thread KrisGaethofs
Hi,

Sorry I did not reply earlier.

As of the build I downloaded today (Build ID: git 3.2-160-gfc368b91d+
(2018-08-30)) the problem still seems to exist.

Kind regards,
Kris



--
Sent from: http://gnucash.1415818.n4.nabble.com/GnuCash-User-f1415819.html
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] GNUcash 3.2 flatpak file open issue

2018-08-26 Thread Colin Law
On Sun, 26 Aug 2018 at 14:54, John Ralls  wrote:
>
> Colin,
>
> Did you try `--share=network`?

Yes, that didn't help either, sadly.

Colin

>
> http://docs.flatpak.org/en/latest/sandbox-permissions-reference.html
>
> Regards,
> John Ralls
>
> On Aug 26, 2018, at 3:22 AM, Colin Law  wrote:
>
> Thanks for working that out Geert.  It has allowed me to get gnucash
> to generate a trace file by running
> sudo flatpak override org.gnucash.GnuCash --filesystem=/tmp
> It appears that the flatpak does not have access to /tmp without this.
> It would be better, obviously, if that were built into the flatpak,
> assuming that it can be. I have updated the issue [1].
>
> Having done that I am trying to get mysql access going.  Looking in
> the trace file I see on startup
> WARN  Could not spawn perl: Failed to execute child
> process “perl” (No such file or directory)
> but I think that is not the problem.  When I attempt to Save As to mysql I get
> CRIT  [GncDbiBackend::session_begin()] Unable
> to connect to database 'gnucash'
> If I stop the mysql server I get the same message which suggests it is
> not able to access the server..
> The user/pwd are correct, confirmed by CLI access to the server, which
> is localhost.  Also mysql access works on a home built version of 3.2
> on the same machine.
>
> I have looked at the documentation for flatpak override but I can't
> see anything there that might fix this issue.
>
> Colin
>
> [1] https://github.com/flathub/org.gnucash.GnuCash/issues/16
> On Fri, 10 Aug 2018 at 15:17, Geert Janssens  
> wrote:
>
>
> I have been playing with the gnucash flatpak package in the last few days.
>
> And I can add some information regarding the file open issues (though not
> everything is clear yet).
>
> For starters I can confirm that by default USB sticks and network shares are
> not accessible. I have fouind this is due to flatpak's security policy which
> states: by default allow as little access as possible. This clearly excludes
> mounted media and network shares.
>
> This limitation can be relaxed though with the "flatpak override" command. In
> particular by running
>  flatpak override org.gnucash.GnuCash --filesystem=
>
>  can be any filesystem path you wish to access from within
> gnucash. For example on Fedora usb sticks are mounted under /run/media so I
> have run
>
>  flatpak override org.gnucash.GnuCash --filesystem=/run/media
>
> And now USB sticks appear in the gnucash File->Open dialog.
>
> It appears on Ubuntu and derivatives however usb sticks are mounted under
> /media so on those platforms the command would become
>
>  flatpak override org.gnucash.GnuCash --filesystem=/media
>
> The same can be done for any network shares that are not mounted under your
> home directory. For example if you have a mounted network share under /mynet
> you can allow access by running
>
>  flatpak override org.gnucash.GnuCash --filesystem=/mynet
>
> One caveat:
> I had some permission issues on my system, which I don't know were due to how
> my system is set up or a bug in flatpak. As my flatpaks are installed system
> wide, the flatpak information is stored in /var/lib/flatpak and only the root
> user has write access there.
>
> So I had to prefix each command with 'sudo'. With this the commands ran fine,
> but I still had issues because the file permissions of the generated override
> file and its parent directory, "overrides", didn't grant access to ordinary
> users.
>
> I fixed this by running following two commands:
> sudo chmod o=rx /var/lib/flatpak/overrides
> sudo chmod o+r /var/lib/flatpak/overrides/org.gnucash.GnuCash
>
> You may or may not need to do something similar on your system. YMMV.
>
> Hopefully this will make flatpak a viable alternative for more users that want
> to try out gnucash 3 while it's not yet available on their preferred platform.
>
> Regards,
>
> Geert
>
> Op vrijdag 27 juli 2018 01:06:49 CEST schreef DaveC49:
>
> Adrien, David,
>
> The same issue occurs in Linux Mint 19(Tara) which is Ubuntu 18.04 based.
> Nemo (file explorer)  can see the mounted USB stick and access it directly
> or via the /media// mount point for the device but the Gnucash file
> open dialog neither sees the USB stick or /media// mount point when
> you click on other locations. It only lists a restricted set of the
> directories under / by comparison with what can be accessed from Nemo. Not
> being able to access the /media mount points would qualify as a bug.
>
> On LM19 /media has 755 permissions, the user directory under it has 750 and
> the mounted USB stick has 755 permissions.
>
> The file->Open dialog in LibreOffice which looks to be a similar GTK3 dialog
> does display the USB stick in the sidebar and it sees all the directories
> under / as well as any networked locations which don't show up in GnuCash
> either.
>
> if no-one has already filked a bug i will put one in later today.
>
> David Cousens
>
>
>
>
> ___
> gnucash-user 

Re: [GNC] GNUcash 3.2 flatpak file open issue

2018-08-26 Thread John Ralls
Colin,

Did you try `--share=network`?

http://docs.flatpak.org/en/latest/sandbox-permissions-reference.html 


Regards,
John Ralls

> On Aug 26, 2018, at 3:22 AM, Colin Law  wrote:
> 
> Thanks for working that out Geert.  It has allowed me to get gnucash
> to generate a trace file by running
> sudo flatpak override org.gnucash.GnuCash --filesystem=/tmp
> It appears that the flatpak does not have access to /tmp without this.
> It would be better, obviously, if that were built into the flatpak,
> assuming that it can be. I have updated the issue [1].
> 
> Having done that I am trying to get mysql access going.  Looking in
> the trace file I see on startup
> WARN  Could not spawn perl: Failed to execute child
> process “perl” (No such file or directory)
> but I think that is not the problem.  When I attempt to Save As to mysql I get
> CRIT  [GncDbiBackend::session_begin()] Unable
> to connect to database 'gnucash'
> If I stop the mysql server I get the same message which suggests it is
> not able to access the server..
> The user/pwd are correct, confirmed by CLI access to the server, which
> is localhost.  Also mysql access works on a home built version of 3.2
> on the same machine.
> 
> I have looked at the documentation for flatpak override but I can't
> see anything there that might fix this issue.
> 
> Colin
> 
> [1] https://github.com/flathub/org.gnucash.GnuCash/issues/16
> On Fri, 10 Aug 2018 at 15:17, Geert Janssens  
> wrote:
>> 
>> I have been playing with the gnucash flatpak package in the last few days.
>> 
>> And I can add some information regarding the file open issues (though not
>> everything is clear yet).
>> 
>> For starters I can confirm that by default USB sticks and network shares are
>> not accessible. I have fouind this is due to flatpak's security policy which
>> states: by default allow as little access as possible. This clearly excludes
>> mounted media and network shares.
>> 
>> This limitation can be relaxed though with the "flatpak override" command. In
>> particular by running
>>  flatpak override org.gnucash.GnuCash --filesystem=
>> 
>>  can be any filesystem path you wish to access from within
>> gnucash. For example on Fedora usb sticks are mounted under /run/media so I
>> have run
>> 
>>  flatpak override org.gnucash.GnuCash --filesystem=/run/media
>> 
>> And now USB sticks appear in the gnucash File->Open dialog.
>> 
>> It appears on Ubuntu and derivatives however usb sticks are mounted under
>> /media so on those platforms the command would become
>> 
>>  flatpak override org.gnucash.GnuCash --filesystem=/media
>> 
>> The same can be done for any network shares that are not mounted under your
>> home directory. For example if you have a mounted network share under /mynet
>> you can allow access by running
>> 
>>  flatpak override org.gnucash.GnuCash --filesystem=/mynet
>> 
>> One caveat:
>> I had some permission issues on my system, which I don't know were due to how
>> my system is set up or a bug in flatpak. As my flatpaks are installed system
>> wide, the flatpak information is stored in /var/lib/flatpak and only the root
>> user has write access there.
>> 
>> So I had to prefix each command with 'sudo'. With this the commands ran fine,
>> but I still had issues because the file permissions of the generated override
>> file and its parent directory, "overrides", didn't grant access to ordinary
>> users.
>> 
>> I fixed this by running following two commands:
>> sudo chmod o=rx /var/lib/flatpak/overrides
>> sudo chmod o+r /var/lib/flatpak/overrides/org.gnucash.GnuCash
>> 
>> You may or may not need to do something similar on your system. YMMV.
>> 
>> Hopefully this will make flatpak a viable alternative for more users that 
>> want
>> to try out gnucash 3 while it's not yet available on their preferred 
>> platform.
>> 
>> Regards,
>> 
>> Geert
>> 
>> Op vrijdag 27 juli 2018 01:06:49 CEST schreef DaveC49:
>>> Adrien, David,
>>> 
>>> The same issue occurs in Linux Mint 19(Tara) which is Ubuntu 18.04 based.
>>> Nemo (file explorer)  can see the mounted USB stick and access it directly
>>> or via the /media// mount point for the device but the Gnucash file
>>> open dialog neither sees the USB stick or /media// mount point when
>>> you click on other locations. It only lists a restricted set of the
>>> directories under / by comparison with what can be accessed from Nemo. Not
>>> being able to access the /media mount points would qualify as a bug.
>>> 
>>> On LM19 /media has 755 permissions, the user directory under it has 750 and
>>> the mounted USB stick has 755 permissions.
>>> 
>>> The file->Open dialog in LibreOffice which looks to be a similar GTK3 dialog
>>> does display the USB stick in the sidebar and it sees all the directories
>>> under / as well as any networked locations which don't show up in GnuCash
>>> either.
>>> 
>>> if no-one has already filked a bug i will put one in later today.
>>> 

Re: [GNC] GNUcash 3.2 flatpak file open issue

2018-08-26 Thread Colin Law
Thanks for working that out Geert.  It has allowed me to get gnucash
to generate a trace file by running
sudo flatpak override org.gnucash.GnuCash --filesystem=/tmp
It appears that the flatpak does not have access to /tmp without this.
It would be better, obviously, if that were built into the flatpak,
assuming that it can be. I have updated the issue [1].

Having done that I am trying to get mysql access going.  Looking in
the trace file I see on startup
WARN  Could not spawn perl: Failed to execute child
process “perl” (No such file or directory)
but I think that is not the problem.  When I attempt to Save As to mysql I get
CRIT  [GncDbiBackend::session_begin()] Unable
to connect to database 'gnucash'
If I stop the mysql server I get the same message which suggests it is
not able to access the server..
The user/pwd are correct, confirmed by CLI access to the server, which
is localhost.  Also mysql access works on a home built version of 3.2
on the same machine.

I have looked at the documentation for flatpak override but I can't
see anything there that might fix this issue.

Colin

[1] https://github.com/flathub/org.gnucash.GnuCash/issues/16
On Fri, 10 Aug 2018 at 15:17, Geert Janssens  wrote:
>
> I have been playing with the gnucash flatpak package in the last few days.
>
> And I can add some information regarding the file open issues (though not
> everything is clear yet).
>
> For starters I can confirm that by default USB sticks and network shares are
> not accessible. I have fouind this is due to flatpak's security policy which
> states: by default allow as little access as possible. This clearly excludes
> mounted media and network shares.
>
> This limitation can be relaxed though with the "flatpak override" command. In
> particular by running
>   flatpak override org.gnucash.GnuCash --filesystem=
>
>  can be any filesystem path you wish to access from within
> gnucash. For example on Fedora usb sticks are mounted under /run/media so I
> have run
>
>   flatpak override org.gnucash.GnuCash --filesystem=/run/media
>
> And now USB sticks appear in the gnucash File->Open dialog.
>
> It appears on Ubuntu and derivatives however usb sticks are mounted under
> /media so on those platforms the command would become
>
>   flatpak override org.gnucash.GnuCash --filesystem=/media
>
> The same can be done for any network shares that are not mounted under your
> home directory. For example if you have a mounted network share under /mynet
> you can allow access by running
>
>   flatpak override org.gnucash.GnuCash --filesystem=/mynet
>
> One caveat:
> I had some permission issues on my system, which I don't know were due to how
> my system is set up or a bug in flatpak. As my flatpaks are installed system
> wide, the flatpak information is stored in /var/lib/flatpak and only the root
> user has write access there.
>
> So I had to prefix each command with 'sudo'. With this the commands ran fine,
> but I still had issues because the file permissions of the generated override
> file and its parent directory, "overrides", didn't grant access to ordinary
> users.
>
> I fixed this by running following two commands:
> sudo chmod o=rx /var/lib/flatpak/overrides
> sudo chmod o+r /var/lib/flatpak/overrides/org.gnucash.GnuCash
>
> You may or may not need to do something similar on your system. YMMV.
>
> Hopefully this will make flatpak a viable alternative for more users that want
> to try out gnucash 3 while it's not yet available on their preferred platform.
>
> Regards,
>
> Geert
>
> Op vrijdag 27 juli 2018 01:06:49 CEST schreef DaveC49:
> > Adrien, David,
> >
> > The same issue occurs in Linux Mint 19(Tara) which is Ubuntu 18.04 based.
> > Nemo (file explorer)  can see the mounted USB stick and access it directly
> > or via the /media// mount point for the device but the Gnucash file
> > open dialog neither sees the USB stick or /media// mount point when
> > you click on other locations. It only lists a restricted set of the
> > directories under / by comparison with what can be accessed from Nemo. Not
> > being able to access the /media mount points would qualify as a bug.
> >
> >  On LM19 /media has 755 permissions, the user directory under it has 750 and
> > the mounted USB stick has 755 permissions.
> >
> > The file->Open dialog in LibreOffice which looks to be a similar GTK3 dialog
> > does display the USB stick in the sidebar and it sees all the directories
> > under / as well as any networked locations which don't show up in GnuCash
> > either.
> >
> > if no-one has already filked a bug i will put one in later today.
> >
> > David Cousens
>
>
>
> ___
> gnucash-user mailing list
> gnucash-user@gnucash.org
> To update your subscription preferences or to unsubscribe:
> https://lists.gnucash.org/mailman/listinfo/gnucash-user
> If you are using Nabble or Gmane, please see 
> https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
> -
> Please remember to CC 

Re: [GNC] Gnucash 3.2

2018-08-12 Thread John Ralls



> On Aug 12, 2018, at 2:28 AM, ankita shree  wrote:
> 
> Hi all,
> 
> I've been trying to download and use this stable version, but in the
> account type during initial setup, I only see a module on Indian business
> with GST. I want to use it for a non-Indian business. Where can I find
> other business modules?

Temporarily set the locale for the country where you need the account 
structure. See https://wiki.gnucash.org/wiki/Locale_Settings 
.

Regards,
John Ralls

___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


[GNC] Gnucash 3.2

2018-08-12 Thread ankita shree
Hi all,

I've been trying to download and use this stable version, but in the
account type during initial setup, I only see a module on Indian business
with GST. I want to use it for a non-Indian business. Where can I find
other business modules?

Thanks!

--
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] GNUcash 3.2 flatpak file open issue

2018-08-10 Thread Geert Janssens
I have been playing with the gnucash flatpak package in the last few days.

And I can add some information regarding the file open issues (though not 
everything is clear yet).

For starters I can confirm that by default USB sticks and network shares are 
not accessible. I have fouind this is due to flatpak's security policy which 
states: by default allow as little access as possible. This clearly excludes 
mounted media and network shares.

This limitation can be relaxed though with the "flatpak override" command. In 
particular by running
  flatpak override org.gnucash.GnuCash --filesystem=

 can be any filesystem path you wish to access from within 
gnucash. For example on Fedora usb sticks are mounted under /run/media so I 
have run

  flatpak override org.gnucash.GnuCash --filesystem=/run/media

And now USB sticks appear in the gnucash File->Open dialog.

It appears on Ubuntu and derivatives however usb sticks are mounted under 
/media so on those platforms the command would become

  flatpak override org.gnucash.GnuCash --filesystem=/media

The same can be done for any network shares that are not mounted under your 
home directory. For example if you have a mounted network share under /mynet
you can allow access by running 

  flatpak override org.gnucash.GnuCash --filesystem=/mynet

One caveat:
I had some permission issues on my system, which I don't know were due to how 
my system is set up or a bug in flatpak. As my flatpaks are installed system 
wide, the flatpak information is stored in /var/lib/flatpak and only the root 
user has write access there.

So I had to prefix each command with 'sudo'. With this the commands ran fine, 
but I still had issues because the file permissions of the generated override 
file and its parent directory, "overrides", didn't grant access to ordinary 
users.

I fixed this by running following two commands:
sudo chmod o=rx /var/lib/flatpak/overrides
sudo chmod o+r /var/lib/flatpak/overrides/org.gnucash.GnuCash

You may or may not need to do something similar on your system. YMMV.

Hopefully this will make flatpak a viable alternative for more users that want 
to try out gnucash 3 while it's not yet available on their preferred platform.

Regards,

Geert

Op vrijdag 27 juli 2018 01:06:49 CEST schreef DaveC49:
> Adrien, David,
> 
> The same issue occurs in Linux Mint 19(Tara) which is Ubuntu 18.04 based.
> Nemo (file explorer)  can see the mounted USB stick and access it directly
> or via the /media// mount point for the device but the Gnucash file
> open dialog neither sees the USB stick or /media// mount point when
> you click on other locations. It only lists a restricted set of the
> directories under / by comparison with what can be accessed from Nemo. Not
> being able to access the /media mount points would qualify as a bug.
> 
>  On LM19 /media has 755 permissions, the user directory under it has 750 and
> the mounted USB stick has 755 permissions.
> 
> The file->Open dialog in LibreOffice which looks to be a similar GTK3 dialog
> does display the USB stick in the sidebar and it sees all the directories
> under / as well as any networked locations which don't show up in GnuCash
> either.
> 
> if no-one has already filked a bug i will put one in later today.
> 
> David Cousens



___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] GNUcash 3.2 file open issue

2018-07-29 Thread Colin Law
On 29 July 2018 at 13:34, David Cousens  wrote:

> Just an update.
>
> I have been converting from LM18.3 to LM 19 on my desktop and didn't have
> it setup for building GnuCash for the past week which is why I was using
> the
> flatpack version.
> I've just completed building GnuCash 3.2 from sources in LM 19 with all the
> options and I now see USB sticks in the sidebar and can open them. Other
> Locations is not however showing shares from my NAS but I usually mount
> these into directories under my home directory and they are accessible from
> there.
>
> It may be the flatpak version that is limiting access. I will build v3.2 on
> LM18.3 on my laptop tomorrow to see if it is OS or flathub.
>

That will likely be a flatpak issue.  Flatpak packages are by default
sandboxed and it is up to the packager to specify what it is allowed to
access.  Likely some permission is missing from there.

Come to think of it that may well be the reason for the missing trace file,
if the app cannot access the specified folder.

Colin
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] GNUcash 3.2 file open issue

2018-07-29 Thread David Cousens
Just an update. 

I have been converting from LM18.3 to LM 19 on my desktop and didn't have 
it setup for building GnuCash for the past week which is why I was using the
flatpack version. 
I've just completed building GnuCash 3.2 from sources in LM 19 with all the
options and I now see USB sticks in the sidebar and can open them. Other
Locations is not however showing shares from my NAS but I usually mount
these into directories under my home directory and they are accessible from
there.

It may be the flatpak version that is limiting access. I will build v3.2 on
LM18.3 on my laptop tomorrow to see if it is OS or flathub.

David



-
David Cousens
--
Sent from: http://gnucash.1415818.n4.nabble.com/GnuCash-User-f1415819.html
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] GnuCash 3.2 Japanese Keyboard

2018-07-28 Thread John Ralls
Are you on GnuCash 3.2?

Regards,
John Ralls


> On Jul 28, 2018, at 3:55 PM, KrisGaethofs  wrote:
> 
> John Ralls-2 wrote
>> One other thing: Are you having problems with IME on all windows and
>> dialogs or just in the register?
> 
> Same problem occurs in other areas of the program. For example the account
> edit / create screen.
> 
> Regards,
> Kris
> 
> 
> 
> 
> --
> Sent from: http://gnucash.1415818.n4.nabble.com/GnuCash-User-f1415819.html
> ___
> gnucash-user mailing list
> gnucash-user@gnucash.org
> To update your subscription preferences or to unsubscribe:
> https://lists.gnucash.org/mailman/listinfo/gnucash-user
> If you are using Nabble or Gmane, please see 
> https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
> -
> Please remember to CC this list on all your replies.
> You can do this by using Reply-To-List or Reply-All.

___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] GnuCash 3.2 Japanese Keyboard

2018-07-28 Thread KrisGaethofs
John Ralls-2 wrote
> One other thing: Are you having problems with IME on all windows and
> dialogs or just in the register?

Same problem occurs in other areas of the program. For example the account
edit / create screen.

Regards,
Kris




--
Sent from: http://gnucash.1415818.n4.nabble.com/GnuCash-User-f1415819.html
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] GNUcash 3.2 file open issue

2018-07-28 Thread Adrien Monteleone
LibreOffice now by default uses the system dialogs for file and print but 
retained the option to use LO versions. Yes, GIMP is still in transition. They 
have opined they might even skip 3 and target GTK+4.

Regards,
Adrien

> On Jul 27, 2018, at 6:50 PM, John Ralls  wrote:
> 
> David,
> 
> LibreOffice has it's own GUI toolkit; it can wrap Gtk or Qt or it can use its 
> own dialogs. Are you sure that GIMP is on Gtk3? I thought that they were 
> still working on converting.
> 
> Regards,
> John Ralls
> 
> 
>> On Jul 27, 2018, at 3:46 PM, David Cousens  wrote:
>> 
>> Hi John,
>> 
>> Have posted it as Bug 796789 for V3.2. Other users with other OS and GnuCash
>> versions might like to comment on behavior on their systems which may help
>> with tracking down the problem. Not sure whether it is a bug in Ubuntu and
>> derivatives but Libre Office, GIMP with similar dialogs all seem to be able
>> to access the mounted USB sticks and network locations in the file open
>> dialogs.
>> 
>> Cheers
>> David Cousens
>> 
>> 
>> 
>> -
>> David Cousens
>> --
>> Sent from: http://gnucash.1415818.n4.nabble.com/GnuCash-User-f1415819.html
>> ___
>> gnucash-user mailing list
>> gnucash-user@gnucash.org
>> To update your subscription preferences or to unsubscribe:
>> https://lists.gnucash.org/mailman/listinfo/gnucash-user
>> If you are using Nabble or Gmane, please see 
>> https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
>> -
>> Please remember to CC this list on all your replies.
>> You can do this by using Reply-To-List or Reply-All.
> 
> ___
> gnucash-user mailing list
> gnucash-user@gnucash.org
> To update your subscription preferences or to unsubscribe:
> https://lists.gnucash.org/mailman/listinfo/gnucash-user
> If you are using Nabble or Gmane, please see 
> https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
> -
> Please remember to CC this list on all your replies.
> You can do this by using Reply-To-List or Reply-All.
> 


___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] GNUcash 3.2 file open issue

2018-07-28 Thread Colin Law
On 27 July 2018 at 23:46, David Cousens  wrote:

> Hi John,
>
> Have posted it as Bug 796789 for V3.2.
>

For some reason I had some difficulty finding this bug, in case anyone else
has this problem it is at
https://bugs.gnucash.org/show_bug.cgi?id=796789

Colin
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] GNUcash 3.2 file open issue

2018-07-27 Thread David Cousens
Additional information. The GTK FileChooser dialog has a "local-only"
property which by default is true and has setters and getters to access
it.(https://developer.gnome.org/gtk3/stable/GtkFileChooser.html#gtk-file-chooser-get-uris)
-
The “local-only” property
  “local-only”   gboolean
Whether the selected file(s) should be limited to local file: URLs.

Flags: Read / Write

Default value: TRUE
---

gtk_file_chooser_set_local_only ()
void
gtk_file_chooser_set_local_only (GtkFileChooser *chooser,
 gboolean local_only);
Sets whether only local files can be selected in the file selector. If
local_only is TRUE (the default), then the selected file or files are
guaranteed to be accessible through the operating systems native file system
and therefore the application only needs to worry about the filename
functions in GtkFileChooser, like gtk_file_chooser_get_filename(), rather
than the URI functions like gtk_file_chooser_get_uri(),

On some systems non-native files may still be available using the native
filesystem via a userspace filesystem (FUSE).

Parameters
chooser

a GtkFileChooser
 
local_only

TRUE if only local files can be selected
--

gtk_file_chooser_get_local_only ()
gboolean
gtk_file_chooser_get_local_only (GtkFileChooser *chooser);
Gets whether only local files can be selected in the file selector. See
gtk_file_chooser_set_local_only()

Parameters
chooser

a GtkFileChooser

 
Returns
TRUE if only local files can be selected.
--

not sure how this property affects usb mounts and network shares.  I'll
check it out on the v3.2 source code as I have both it and the matesr branch
downloaded and easily built

David



-
David Cousens
--
Sent from: http://gnucash.1415818.n4.nabble.com/GnuCash-User-f1415819.html
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.

Re: [GNC] GNUcash 3.2 file open issue

2018-07-27 Thread David Carlson
I think that David Cousens is closing in on the problem.  I have seen that
GnuCash 2.6.17 in Ubuntu 16.04 cannot always see network mounted servers,
but on my LAN it appears that it is important to assign the correct domain
name when mounting the server with Nautilus.

David Carlson

On Fri, Jul 27, 2018 at 8:00 PM, David Cousens 
wrote:

> John,
>
> I'm not really sure what GIMP uses as a UI toolkit. I showed the Libre-
> Office one primarily because on my system it was almost identical in
> appearance and function to the dialog window from Gnucash apart from
> the missing USB mount and network mounts. I have explored a few other
> (non GTK) apps I use and whether they see the network an USB mounts is
> highly variable. As another user pointed out it isn't exactly a show
> stopper as you can always transfer a file elsewhere using Nemo or the
> OS facilities.
>
> I'm also not very familiar with GTK3 either at this stage. I would
> guess they wrap the basic OS file and network access routines. I'll
> have a bit of a dig around the documentation and see if I can unearth
> anything useful. Firefox which uses GTK3 has reported network access
> issues in its file dialog on AskUbuntu (https://askubuntu.com/questions
> /764272/upload-dialogs-for-firefox-and-chrome-now-differ-ffs-doesnt-
> include-network-d). This post on unix  stack exchange, https://unix.sta
> ckexchange.com/questions/198996/prevent-the-gtk-file-dialog-from-
> listing-mount-points,  indicates that there is a way of stopping GTK
> from accessing mounted devices by the udev configuration, so maybe I
> can use the info to enable it. https://bugs.launchpad.net/ubuntu/+bug/3
> 04345 for Audacious also reports similar problems and a fix.
>
> Will give it a try later today. I have some of the network mounts done
> in fstab and others for devices which may or may not be available using
> autofs so that may also be a source for differences within Linux.
>
> David Cousens
>
> On Fri, 2018-07-27 at 16:50 -0700, John Ralls wrote:
> > David,
> >
> > LibreOffice has it's own GUI toolkit; it can wrap Gtk or Qt or it can
> > use its own dialogs. Are you sure that GIMP is on Gtk3? I thought
> > that they were still working on converting.
> >
> > Regards,
> > John Ralls
> >
> >
> > > On Jul 27, 2018, at 3:46 PM, David Cousens  > > m> wrote:
> > >
> > > Hi John,
> > >
> > > Have posted it as Bug 796789 for V3.2. Other users with other OS
> > > and GnuCash
> > > versions might like to comment on behavior on their systems which
> > > may help
> > > with tracking down the problem. Not sure whether it is a bug in
> > > Ubuntu and
> > > derivatives but Libre Office, GIMP with similar dialogs all seem to
> > > be able
> > > to access the mounted USB sticks and network locations in the file
> > > open
> > > dialogs.
> > >
> > > Cheers
> > > David Cousens
> > >
> > >
> > >
> > > -
> > > David Cousens
> > > --
> > > Sent from: http://gnucash.1415818.n4.nabble.com/GnuCash-User-f14158
> > > 19.html
> > > ___
> > > gnucash-user mailing list
> > > gnucash-user@gnucash.org
> > > To update your subscription preferences or to unsubscribe:
> > > https://lists.gnucash.org/mailman/listinfo/gnucash-user
> > > If you are using Nabble or Gmane, please see https://wiki.gnucash.o
> > > rg/wiki/Mailing_Lists for more information.
> > > -
> > > Please remember to CC this list on all your replies.
> > > You can do this by using Reply-To-List or Reply-All.
> >
> >
> ___
> gnucash-user mailing list
> gnucash-user@gnucash.org
> To update your subscription preferences or to unsubscribe:
> https://lists.gnucash.org/mailman/listinfo/gnucash-user
> If you are using Nabble or Gmane, please see
> https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
> -
> Please remember to CC this list on all your replies.
> You can do this by using Reply-To-List or Reply-All.
>
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] GNUcash 3.2 file open issue

2018-07-27 Thread David Cousens
John,

I'm not really sure what GIMP uses as a UI toolkit. I showed the Libre-
Office one primarily because on my system it was almost identical in
appearance and function to the dialog window from Gnucash apart from
the missing USB mount and network mounts. I have explored a few other
(non GTK) apps I use and whether they see the network an USB mounts is
highly variable. As another user pointed out it isn't exactly a show
stopper as you can always transfer a file elsewhere using Nemo or the
OS facilities. 

I'm also not very familiar with GTK3 either at this stage. I would
guess they wrap the basic OS file and network access routines. I'll
have a bit of a dig around the documentation and see if I can unearth
anything useful. Firefox which uses GTK3 has reported network access
issues in its file dialog on AskUbuntu (https://askubuntu.com/questions
/764272/upload-dialogs-for-firefox-and-chrome-now-differ-ffs-doesnt-
include-network-d). This post on unix  stack exchange, https://unix.sta
ckexchange.com/questions/198996/prevent-the-gtk-file-dialog-from-
listing-mount-points,  indicates that there is a way of stopping GTK
from accessing mounted devices by the udev configuration, so maybe I
can use the info to enable it. https://bugs.launchpad.net/ubuntu/+bug/3
04345 for Audacious also reports similar problems and a fix. 

Will give it a try later today. I have some of the network mounts done
in fstab and others for devices which may or may not be available using
autofs so that may also be a source for differences within Linux.

David Cousens

On Fri, 2018-07-27 at 16:50 -0700, John Ralls wrote:
> David,
> 
> LibreOffice has it's own GUI toolkit; it can wrap Gtk or Qt or it can
> use its own dialogs. Are you sure that GIMP is on Gtk3? I thought
> that they were still working on converting.
> 
> Regards,
> John Ralls
> 
> 
> > On Jul 27, 2018, at 3:46 PM, David Cousens  > m> wrote:
> > 
> > Hi John,
> > 
> > Have posted it as Bug 796789 for V3.2. Other users with other OS
> > and GnuCash
> > versions might like to comment on behavior on their systems which
> > may help
> > with tracking down the problem. Not sure whether it is a bug in
> > Ubuntu and
> > derivatives but Libre Office, GIMP with similar dialogs all seem to
> > be able
> > to access the mounted USB sticks and network locations in the file
> > open
> > dialogs.
> > 
> > Cheers
> > David Cousens
> > 
> > 
> > 
> > -
> > David Cousens
> > --
> > Sent from: http://gnucash.1415818.n4.nabble.com/GnuCash-User-f14158
> > 19.html
> > ___
> > gnucash-user mailing list
> > gnucash-user@gnucash.org
> > To update your subscription preferences or to unsubscribe:
> > https://lists.gnucash.org/mailman/listinfo/gnucash-user
> > If you are using Nabble or Gmane, please see https://wiki.gnucash.o
> > rg/wiki/Mailing_Lists for more information.
> > -
> > Please remember to CC this list on all your replies.
> > You can do this by using Reply-To-List or Reply-All.
> 
> 
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] GNUcash 3.2 file open issue

2018-07-27 Thread Stephen M. Butler
On 07/27/2018 03:46 PM, David Cousens wrote:
> Hi John,
>
> Have posted it as Bug 796789 for V3.2. Other users with other OS and GnuCash
> versions might like to comment on behavior on their systems which may help
> with tracking down the problem. Not sure whether it is a bug in Ubuntu and
> derivatives but Libre Office, GIMP with similar dialogs all seem to be able
> to access the mounted USB sticks and network locations in the file open
> dialogs.
>
> Cheers
> David Cousens
>
Thunderbird on Ubuntu (all versions I've had) is not able to see a
Windows mounted share.  I have to copy the file over using the file
manager.  Have not tried GnuCash though.

-- 
Stephen M Butler, PMP, PSM
stephen.m.butle...@gmail.com
kg...@arrl.net
253-350-0166
---
GnuPG Fingerprint:  8A25 9726 D439 758D D846 E5D4 282A 5477 0385 81D8

___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.

Re: [GNC] GNUcash 3.2 file open issue

2018-07-27 Thread John Ralls
David,

LibreOffice has it's own GUI toolkit; it can wrap Gtk or Qt or it can use its 
own dialogs. Are you sure that GIMP is on Gtk3? I thought that they were still 
working on converting.

Regards,
John Ralls


> On Jul 27, 2018, at 3:46 PM, David Cousens  wrote:
> 
> Hi John,
> 
> Have posted it as Bug 796789 for V3.2. Other users with other OS and GnuCash
> versions might like to comment on behavior on their systems which may help
> with tracking down the problem. Not sure whether it is a bug in Ubuntu and
> derivatives but Libre Office, GIMP with similar dialogs all seem to be able
> to access the mounted USB sticks and network locations in the file open
> dialogs.
> 
> Cheers
> David Cousens
> 
> 
> 
> -
> David Cousens
> --
> Sent from: http://gnucash.1415818.n4.nabble.com/GnuCash-User-f1415819.html
> ___
> gnucash-user mailing list
> gnucash-user@gnucash.org
> To update your subscription preferences or to unsubscribe:
> https://lists.gnucash.org/mailman/listinfo/gnucash-user
> If you are using Nabble or Gmane, please see 
> https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
> -
> Please remember to CC this list on all your replies.
> You can do this by using Reply-To-List or Reply-All.

___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] GNUcash 3.2 file open issue

2018-07-27 Thread David Cousens
Hi John,

Have posted it as Bug 796789 for V3.2. Other users with other OS and GnuCash
versions might like to comment on behavior on their systems which may help
with tracking down the problem. Not sure whether it is a bug in Ubuntu and
derivatives but Libre Office, GIMP with similar dialogs all seem to be able
to access the mounted USB sticks and network locations in the file open
dialogs.

Cheers
David Cousens



-
David Cousens
--
Sent from: http://gnucash.1415818.n4.nabble.com/GnuCash-User-f1415819.html
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] GNUcash 3.2 file open issue

2018-07-27 Thread Adrien Monteleone
You were running it on a remote machine? Why wouldn’t you always run it locally 
and just connect to the network drive? (as you just experimented with)

Though, this would mean the problem is with Windows, not Ubuntu as you weren’t 
originally running it on Ubuntu.

Regards,
Adrien

> On Jul 27, 2018, at 5:03 PM, David Carlson  
> wrote:
> 
> Interesting! when running GnuCash locally in the Ubuntu 16.04 Unity desktop
> the network drive does appear in the GnuCash File>Open dialog, but when
> running it remotely in Windows with XMing/PuTTY via SSH the network drive
> is not visible in the GnuCash File>Open dialog.
> 
> David C
> 
> On Fri, Jul 27, 2018 at 12:24 PM, Colin Law  wrote:
> 
>> On 27 July 2018 at 18:23, Colin Law  wrote:
>> 
>>> I am running 2.1.19 from the Ubuntu repo on Ubuntu 18.04 and can click
>>> File > Open, then select File System in the left hand pane of the dialog
>>> and can browse to any of the root directories with no problem.
>>> 
>> 
>> That is 2.6.19 of course.
>> 
>> Colin
>> 
>> 
>>> 
>>> Colin
>>> 
>>> On 27 July 2018 at 00:06, DaveC49  wrote:
>>> 
 Adrien, David,
 
 The same issue occurs in Linux Mint 19(Tara) which is Ubuntu 18.04
>> based.
 Nemo (file explorer)  can see the mounted USB stick and access it
>> directly
 or via the /media// mount point for the device but the Gnucash
>> file
 open dialog neither sees the USB stick or /media// mount point
>> when
 you click on other locations. It only lists a restricted set of the
 directories under / by comparison with what can be accessed from Nemo.
>> Not
 being able to access the /media mount points would qualify as a bug.
 
 On LM19 /media has 755 permissions, the user directory under it has 750
 and
 the mounted USB stick has 755 permissions.
 
 The file->Open dialog in LibreOffice which looks to be a similar GTK3
 dialog
 does display the USB stick in the sidebar and it sees all the
>> directories
 under / as well as any networked locations which don't show up in
>> GnuCash
 either.
 
 if no-one has already filked a bug i will put one in later today.
 
 David Cousens
 
 
 
 -
 David Cousens
 --
 Sent from: http://gnucash.1415818.n4.nabble.com/GnuCash-User-f1415819.
 html
 ___
 gnucash-user mailing list
 gnucash-user@gnucash.org
 To update your subscription preferences or to unsubscribe:
 https://lists.gnucash.org/mailman/listinfo/gnucash-user
 If you are using Nabble or Gmane, please see
 https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
 -
 Please remember to CC this list on all your replies.
 You can do this by using Reply-To-List or Reply-All.
 
>>> 
>>> 
>> ___
>> gnucash-user mailing list
>> gnucash-user@gnucash.org
>> To update your subscription preferences or to unsubscribe:
>> https://lists.gnucash.org/mailman/listinfo/gnucash-user
>> If you are using Nabble or Gmane, please see
>> https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
>> -
>> Please remember to CC this list on all your replies.
>> You can do this by using Reply-To-List or Reply-All.
>> 
> ___
> gnucash-user mailing list
> gnucash-user@gnucash.org
> To update your subscription preferences or to unsubscribe:
> https://lists.gnucash.org/mailman/listinfo/gnucash-user
> If you are using Nabble or Gmane, please see 
> https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
> -
> Please remember to CC this list on all your replies.
> You can do this by using Reply-To-List or Reply-All.
> 


___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.

Re: [GNC] GNUcash 3.2 file open issue

2018-07-27 Thread David Carlson
Interesting! when running GnuCash locally in the Ubuntu 16.04 Unity desktop
the network drive does appear in the GnuCash File>Open dialog, but when
running it remotely in Windows with XMing/PuTTY via SSH the network drive
is not visible in the GnuCash File>Open dialog.

David C

On Fri, Jul 27, 2018 at 12:24 PM, Colin Law  wrote:

> On 27 July 2018 at 18:23, Colin Law  wrote:
>
> > I am running 2.1.19 from the Ubuntu repo on Ubuntu 18.04 and can click
> > File > Open, then select File System in the left hand pane of the dialog
> > and can browse to any of the root directories with no problem.
> >
>
> That is 2.6.19 of course.
>
> Colin
>
>
> >
> > Colin
> >
> > On 27 July 2018 at 00:06, DaveC49  wrote:
> >
> >> Adrien, David,
> >>
> >> The same issue occurs in Linux Mint 19(Tara) which is Ubuntu 18.04
> based.
> >> Nemo (file explorer)  can see the mounted USB stick and access it
> directly
> >> or via the /media// mount point for the device but the Gnucash
> file
> >> open dialog neither sees the USB stick or /media// mount point
> when
> >> you click on other locations. It only lists a restricted set of the
> >> directories under / by comparison with what can be accessed from Nemo.
> Not
> >> being able to access the /media mount points would qualify as a bug.
> >>
> >>  On LM19 /media has 755 permissions, the user directory under it has 750
> >> and
> >> the mounted USB stick has 755 permissions.
> >>
> >> The file->Open dialog in LibreOffice which looks to be a similar GTK3
> >> dialog
> >> does display the USB stick in the sidebar and it sees all the
> directories
> >> under / as well as any networked locations which don't show up in
> GnuCash
> >> either.
> >>
> >> if no-one has already filked a bug i will put one in later today.
> >>
> >> David Cousens
> >>
> >>
> >>
> >> -
> >> David Cousens
> >> --
> >> Sent from: http://gnucash.1415818.n4.nabble.com/GnuCash-User-f1415819.
> >> html
> >> ___
> >> gnucash-user mailing list
> >> gnucash-user@gnucash.org
> >> To update your subscription preferences or to unsubscribe:
> >> https://lists.gnucash.org/mailman/listinfo/gnucash-user
> >> If you are using Nabble or Gmane, please see
> >> https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
> >> -
> >> Please remember to CC this list on all your replies.
> >> You can do this by using Reply-To-List or Reply-All.
> >>
> >
> >
> ___
> gnucash-user mailing list
> gnucash-user@gnucash.org
> To update your subscription preferences or to unsubscribe:
> https://lists.gnucash.org/mailman/listinfo/gnucash-user
> If you are using Nabble or Gmane, please see
> https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
> -
> Please remember to CC this list on all your replies.
> You can do this by using Reply-To-List or Reply-All.
>
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] GNUcash 3.2 file open issue

2018-07-27 Thread Colin Law
On 27 July 2018 at 18:23, Colin Law  wrote:

> I am running 2.1.19 from the Ubuntu repo on Ubuntu 18.04 and can click
> File > Open, then select File System in the left hand pane of the dialog
> and can browse to any of the root directories with no problem.
>

That is 2.6.19 of course.

Colin


>
> Colin
>
> On 27 July 2018 at 00:06, DaveC49  wrote:
>
>> Adrien, David,
>>
>> The same issue occurs in Linux Mint 19(Tara) which is Ubuntu 18.04 based.
>> Nemo (file explorer)  can see the mounted USB stick and access it directly
>> or via the /media// mount point for the device but the Gnucash file
>> open dialog neither sees the USB stick or /media// mount point when
>> you click on other locations. It only lists a restricted set of the
>> directories under / by comparison with what can be accessed from Nemo. Not
>> being able to access the /media mount points would qualify as a bug.
>>
>>  On LM19 /media has 755 permissions, the user directory under it has 750
>> and
>> the mounted USB stick has 755 permissions.
>>
>> The file->Open dialog in LibreOffice which looks to be a similar GTK3
>> dialog
>> does display the USB stick in the sidebar and it sees all the directories
>> under / as well as any networked locations which don't show up in GnuCash
>> either.
>>
>> if no-one has already filked a bug i will put one in later today.
>>
>> David Cousens
>>
>>
>>
>> -
>> David Cousens
>> --
>> Sent from: http://gnucash.1415818.n4.nabble.com/GnuCash-User-f1415819.
>> html
>> ___
>> gnucash-user mailing list
>> gnucash-user@gnucash.org
>> To update your subscription preferences or to unsubscribe:
>> https://lists.gnucash.org/mailman/listinfo/gnucash-user
>> If you are using Nabble or Gmane, please see
>> https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
>> -
>> Please remember to CC this list on all your replies.
>> You can do this by using Reply-To-List or Reply-All.
>>
>
>
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] GNUcash 3.2 file open issue

2018-07-27 Thread Colin Law
I am running 2.1.19 from the Ubuntu repo on Ubuntu 18.04 and can click File
> Open, then select File System in the left hand pane of the dialog and can
browse to any of the root directories with no problem.

Colin

On 27 July 2018 at 00:06, DaveC49  wrote:

> Adrien, David,
>
> The same issue occurs in Linux Mint 19(Tara) which is Ubuntu 18.04 based.
> Nemo (file explorer)  can see the mounted USB stick and access it directly
> or via the /media// mount point for the device but the Gnucash file
> open dialog neither sees the USB stick or /media// mount point when
> you click on other locations. It only lists a restricted set of the
> directories under / by comparison with what can be accessed from Nemo. Not
> being able to access the /media mount points would qualify as a bug.
>
>  On LM19 /media has 755 permissions, the user directory under it has 750
> and
> the mounted USB stick has 755 permissions.
>
> The file->Open dialog in LibreOffice which looks to be a similar GTK3
> dialog
> does display the USB stick in the sidebar and it sees all the directories
> under / as well as any networked locations which don't show up in GnuCash
> either.
>
> if no-one has already filked a bug i will put one in later today.
>
> David Cousens
>
>
>
> -
> David Cousens
> --
> Sent from: http://gnucash.1415818.n4.nabble.com/GnuCash-User-f1415819.html
> ___
> gnucash-user mailing list
> gnucash-user@gnucash.org
> To update your subscription preferences or to unsubscribe:
> https://lists.gnucash.org/mailman/listinfo/gnucash-user
> If you are using Nabble or Gmane, please see
> https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
> -
> Please remember to CC this list on all your replies.
> You can do this by using Reply-To-List or Reply-All.
>
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] GNUcash 3.2 file open issue

2018-07-27 Thread John Ralls
Yes, a bug, but perhaps in Ubuntu and its derivatives rather than GnuCash, or 
perhaps the Ubuntu package. Using a Debian Stable VM in the GnuCash File>Open 
dialog, when I select "Computer" from "Other Locations" I get a full listing of 
my root directory and have no trouble navigating the /media directory.

If I mount a USB drive it shows up as its own item in the sidebar which, when 
selected, reveals its path as /media/john/74AB-2AA0. I can navigate to that 
path starting from the root directory as well as use the sidebar item.

Regards,
John Ralls


> On Jul 27, 2018, at 8:55 AM, Adrien Monteleone 
>  wrote:
> 
> Yep, a bug for sure. I’m curious why GC creates its own file/print dialogs 
> when they could instead call the native OS dialogs. To me, that’s the bug and 
> the problem in this thread would also be solved. It’s also less code to 
> maintain.
> 
> Regards,
> Adrien
> 
>> On Jul 26, 2018, at 6:06 PM, DaveC49  wrote:
>> 
>> Adrien, David,
>> 
>> The same issue occurs in Linux Mint 19(Tara) which is Ubuntu 18.04 based.
>> Nemo (file explorer)  can see the mounted USB stick and access it directly
>> or via the /media// mount point for the device but the Gnucash file
>> open dialog neither sees the USB stick or /media// mount point when
>> you click on other locations. It only lists a restricted set of the
>> directories under / by comparison with what can be accessed from Nemo. Not
>> being able to access the /media mount points would qualify as a bug.
>> 
>> On LM19 /media has 755 permissions, the user directory under it has 750 and
>> the mounted USB stick has 755 permissions. 
>> 
>> The file->Open dialog in LibreOffice which looks to be a similar GTK3 dialog
>> does display the USB stick in the sidebar and it sees all the directories
>> under / as well as any networked locations which don't show up in GnuCash
>> either.
>> 
>> if no-one has already filked a bug i will put one in later today.
>> 
>> David Cousens
>> 
>> 
>> 
>> -
>> David Cousens
>> --
>> Sent from: http://gnucash.1415818.n4.nabble.com/GnuCash-User-f1415819.html
>> ___
>> gnucash-user mailing list
>> gnucash-user@gnucash.org
>> To update your subscription preferences or to unsubscribe:
>> https://lists.gnucash.org/mailman/listinfo/gnucash-user
>> If you are using Nabble or Gmane, please see 
>> https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
>> -
>> Please remember to CC this list on all your replies.
>> You can do this by using Reply-To-List or Reply-All.
>> 
> 
> 
> ___
> gnucash-user mailing list
> gnucash-user@gnucash.org
> To update your subscription preferences or to unsubscribe:
> https://lists.gnucash.org/mailman/listinfo/gnucash-user
> If you are using Nabble or Gmane, please see 
> https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
> -
> Please remember to CC this list on all your replies.
> You can do this by using Reply-To-List or Reply-All.

___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.

Re: [GNC] GNUcash 3.2 file open issue

2018-07-27 Thread David Carlson
If I recall, there was an issue unique to another O S, possibly Windows
that required special treatment in the past.  Maybe still true.

I am not a developer  tho so don't quote me.

David C

On Fri, Jul 27, 2018, 10:58 AM Adrien Monteleone <
adrien.montele...@lusfiber.net> wrote:

> Yep, a bug for sure. I’m curious why GC creates its own file/print dialogs
> when they could instead call the native OS dialogs. To me, that’s the bug
> and the problem in this thread would also be solved. It’s also less code to
> maintain.
>
> Regards,
> Adrien
>
> > On Jul 26, 2018, at 6:06 PM, DaveC49  wrote:
> >
> > Adrien, David,
> >
> > The same issue occurs in Linux Mint 19(Tara) which is Ubuntu 18.04 based.
> > Nemo (file explorer)  can see the mounted USB stick and access it
> directly
> > or via the /media// mount point for the device but the Gnucash file
> > open dialog neither sees the USB stick or /media// mount point when
> > you click on other locations. It only lists a restricted set of the
> > directories under / by comparison with what can be accessed from Nemo.
> Not
> > being able to access the /media mount points would qualify as a bug.
> >
> > On LM19 /media has 755 permissions, the user directory under it has 750
> and
> > the mounted USB stick has 755 permissions.
> >
> > The file->Open dialog in LibreOffice which looks to be a similar GTK3
> dialog
> > does display the USB stick in the sidebar and it sees all the directories
> > under / as well as any networked locations which don't show up in GnuCash
> > either.
> >
> > if no-one has already filked a bug i will put one in later today.
> >
> > David Cousens
> >
> >
> >
> > -
> > David Cousens
> > --
> > Sent from:
> http://gnucash.1415818.n4.nabble.com/GnuCash-User-f1415819.html
> > ___
> > gnucash-user mailing list
> > gnucash-user@gnucash.org
> > To update your subscription preferences or to unsubscribe:
> > https://lists.gnucash.org/mailman/listinfo/gnucash-user
> > If you are using Nabble or Gmane, please see
> https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
> > -
> > Please remember to CC this list on all your replies.
> > You can do this by using Reply-To-List or Reply-All.
> >
>
>
> ___
> gnucash-user mailing list
> gnucash-user@gnucash.org
> To update your subscription preferences or to unsubscribe:
> https://lists.gnucash.org/mailman/listinfo/gnucash-user
> If you are using Nabble or Gmane, please see
> https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
> -
> Please remember to CC this list on all your replies.
> You can do this by using Reply-To-List or Reply-All.
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.

Re: [GNC] GNUcash 3.2 file open issue

2018-07-27 Thread Adrien Monteleone
Yep, a bug for sure. I’m curious why GC creates its own file/print dialogs when 
they could instead call the native OS dialogs. To me, that’s the bug and the 
problem in this thread would also be solved. It’s also less code to maintain.

Regards,
Adrien

> On Jul 26, 2018, at 6:06 PM, DaveC49  wrote:
> 
> Adrien, David,
> 
> The same issue occurs in Linux Mint 19(Tara) which is Ubuntu 18.04 based.
> Nemo (file explorer)  can see the mounted USB stick and access it directly
> or via the /media// mount point for the device but the Gnucash file
> open dialog neither sees the USB stick or /media// mount point when
> you click on other locations. It only lists a restricted set of the
> directories under / by comparison with what can be accessed from Nemo. Not
> being able to access the /media mount points would qualify as a bug.
> 
> On LM19 /media has 755 permissions, the user directory under it has 750 and
> the mounted USB stick has 755 permissions. 
> 
> The file->Open dialog in LibreOffice which looks to be a similar GTK3 dialog
> does display the USB stick in the sidebar and it sees all the directories
> under / as well as any networked locations which don't show up in GnuCash
> either.
> 
> if no-one has already filked a bug i will put one in later today.
> 
> David Cousens
> 
> 
> 
> -
> David Cousens
> --
> Sent from: http://gnucash.1415818.n4.nabble.com/GnuCash-User-f1415819.html
> ___
> gnucash-user mailing list
> gnucash-user@gnucash.org
> To update your subscription preferences or to unsubscribe:
> https://lists.gnucash.org/mailman/listinfo/gnucash-user
> If you are using Nabble or Gmane, please see 
> https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
> -
> Please remember to CC this list on all your replies.
> You can do this by using Reply-To-List or Reply-All.
> 


___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.

Re: [GNC] GNUcash 3.2 file open issue

2018-07-27 Thread DaveC49
Adrien, David,

The same issue occurs in Linux Mint 19(Tara) which is Ubuntu 18.04 based.
Nemo (file explorer)  can see the mounted USB stick and access it directly
or via the /media// mount point for the device but the Gnucash file
open dialog neither sees the USB stick or /media// mount point when
you click on other locations. It only lists a restricted set of the
directories under / by comparison with what can be accessed from Nemo. Not
being able to access the /media mount points would qualify as a bug.

 On LM19 /media has 755 permissions, the user directory under it has 750 and
the mounted USB stick has 755 permissions. 

The file->Open dialog in LibreOffice which looks to be a similar GTK3 dialog
does display the USB stick in the sidebar and it sees all the directories
under / as well as any networked locations which don't show up in GnuCash
either.

if no-one has already filked a bug i will put one in later today.

David Cousens



-
David Cousens
--
Sent from: http://gnucash.1415818.n4.nabble.com/GnuCash-User-f1415819.html
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] GNUcash 3.2 file open issue

2018-07-26 Thread Adrien Monteleone
As Mint is based on Ubuntu you *might* be facing the read-only usb bug. (which 
seems to keep reappearing after being allegedly fixed) What are the permissions 
on the parent folder for the mount point of the drive? And then the same for 
the gnucash folder and files? (I’m looking for either octals like ‘755’ or the 
string type like ‘wrxwrx-r-’)

And, I know this sounds terrible for Linux, but does a log-out/in or a system 
restart magically make the external drive read-write? (a strong indication of 
the aforementioned bug)

Regards,
Adrien

> On Jul 26, 2018, at 4:15 PM, Don Pawluk  wrote:
> 
> Gave it a try. Can open the file, but only as read-only and it will not save 
> back to the original location. Creates a temporary directory 
> \run\users\doc\1a36500 and puts files there. the files disappear when GNUcash 
> is closed. Have full access to read & write to the source directory when not 
> in GNUcash, but it does not seem to have write access.
> 
> Thanks for the suggestion.
> 
> On Thu, Jul 26, 2018 at 12:02 PM, Adrien Monteleone 
>  wrote:
> Don,
> 
> Presumably you already checked if the drives are visible where you expect 
> using Caja?
> 
> If so, can you navigate to the usb/external and open the file from there?
> 
> Regards,
> Adrien
> 
> > On Jul 26, 2018, at 1:50 PM, Don Pawluk  wrote:
> > 
> > Running on Linux Mint 18.3 Mate, open file will not provide access to usb
> > external drives or smb dirves. Will open on local PC drives. When bringing
> > up file system there is no media folder where I would normally expect to
> > find the usb external drives or smb drives.
> > 
> > Any help would be appreciated, Don
> > ___
> > gnucash-user mailing list
> > gnucash-user@gnucash.org
> > To update your subscription preferences or to unsubscribe:
> > https://lists.gnucash.org/mailman/listinfo/gnucash-user
> > If you are using Nabble or Gmane, please see 
> > https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
> > -
> > Please remember to CC this list on all your replies.
> > You can do this by using Reply-To-List or Reply-All.
> > 
> 
> 
> ___
> gnucash-user mailing list
> gnucash-user@gnucash.org
> To update your subscription preferences or to unsubscribe:
> https://lists.gnucash.org/mailman/listinfo/gnucash-user
> If you are using Nabble or Gmane, please see 
> https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
> -
> Please remember to CC this list on all your replies.
> You can do this by using Reply-To-List or Reply-All.
> 


___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.

Re: [GNC] GNUcash 3.2 file open issue

2018-07-26 Thread David Carlson
I have a similar problem in Ubuntu 16.04 with release 2.6.17 from some
repo.  I can open that instance of GnuCash remotely from Windows 7 via SSH
and if Ubuntu is already running with the file server where the data
resides already mounted, everything works.

If I want to change to a different data file on the same server, I have a
problem, because the GnuCash file open dialog cannot seem to get to
run/user/1000/gvfs/smb-share:server=xxx.xxx.xxx.xxx where it has already
opened the current data file.
If I sit at the Ubuntu user desktop I can navigate to that server and see
all the sub-folders and files and click on them to open them with GnuCash,
but my goal is to do it remotely with SSH.  I tried starting nautilus
remotely through SSH once but that hosed Windows so badly that I had to
re-boot Windows.

On Thu, Jul 26, 2018 at 2:02 PM, Adrien Monteleone <
adrien.montele...@lusfiber.net> wrote:

> Don,
>
> Presumably you already checked if the drives are visible where you expect
> using Caja?
>
> If so, can you navigate to the usb/external and open the file from there?
>
> Regards,
> Adrien
>
> > On Jul 26, 2018, at 1:50 PM, Don Pawluk  wrote:
> >
> > Running on Linux Mint 18.3 Mate, open file will not provide access to usb
> > external drives or smb dirves. Will open on local PC drives. When
> bringing
> > up file system there is no media folder where I would normally expect to
> > find the usb external drives or smb drives.
> >
> > Any help would be appreciated, Don
> > ___
> > gnucash-user mailing list
> > gnucash-user@gnucash.org
> > To update your subscription preferences or to unsubscribe:
> > https://lists.gnucash.org/mailman/listinfo/gnucash-user
> > If you are using Nabble or Gmane, please see
> https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
> > -
> > Please remember to CC this list on all your replies.
> > You can do this by using Reply-To-List or Reply-All.
> >
>
>
> ___
> gnucash-user mailing list
> gnucash-user@gnucash.org
> To update your subscription preferences or to unsubscribe:
> https://lists.gnucash.org/mailman/listinfo/gnucash-user
> If you are using Nabble or Gmane, please see
> https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
> -
> Please remember to CC this list on all your replies.
> You can do this by using Reply-To-List or Reply-All.
>
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] GNUcash 3.2 file open issue

2018-07-26 Thread Don Pawluk
Gave it a try. Can open the file, but only as read-only and it will not
save back to the original location. Creates a temporary directory
\run\users\doc\1a36500 and puts files there. the files disappear when
GNUcash is closed. Have full access to read & write to the source directory
when not in GNUcash, but it does not seem to have write access.

Thanks for the suggestion.

On Thu, Jul 26, 2018 at 12:02 PM, Adrien Monteleone <
adrien.montele...@lusfiber.net> wrote:

> Don,
>
> Presumably you already checked if the drives are visible where you expect
> using Caja?
>
> If so, can you navigate to the usb/external and open the file from there?
>
> Regards,
> Adrien
>
> > On Jul 26, 2018, at 1:50 PM, Don Pawluk  wrote:
> >
> > Running on Linux Mint 18.3 Mate, open file will not provide access to usb
> > external drives or smb dirves. Will open on local PC drives. When
> bringing
> > up file system there is no media folder where I would normally expect to
> > find the usb external drives or smb drives.
> >
> > Any help would be appreciated, Don
> > ___
> > gnucash-user mailing list
> > gnucash-user@gnucash.org
> > To update your subscription preferences or to unsubscribe:
> > https://lists.gnucash.org/mailman/listinfo/gnucash-user
> > If you are using Nabble or Gmane, please see
> https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
> > -
> > Please remember to CC this list on all your replies.
> > You can do this by using Reply-To-List or Reply-All.
> >
>
>
> ___
> gnucash-user mailing list
> gnucash-user@gnucash.org
> To update your subscription preferences or to unsubscribe:
> https://lists.gnucash.org/mailman/listinfo/gnucash-user
> If you are using Nabble or Gmane, please see
> https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
> -
> Please remember to CC this list on all your replies.
> You can do this by using Reply-To-List or Reply-All.
>
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] GNUcash 3.2 file open issue

2018-07-26 Thread Adrien Monteleone
Don,

Presumably you already checked if the drives are visible where you expect using 
Caja?

If so, can you navigate to the usb/external and open the file from there?

Regards,
Adrien

> On Jul 26, 2018, at 1:50 PM, Don Pawluk  wrote:
> 
> Running on Linux Mint 18.3 Mate, open file will not provide access to usb
> external drives or smb dirves. Will open on local PC drives. When bringing
> up file system there is no media folder where I would normally expect to
> find the usb external drives or smb drives.
> 
> Any help would be appreciated, Don
> ___
> gnucash-user mailing list
> gnucash-user@gnucash.org
> To update your subscription preferences or to unsubscribe:
> https://lists.gnucash.org/mailman/listinfo/gnucash-user
> If you are using Nabble or Gmane, please see 
> https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
> -
> Please remember to CC this list on all your replies.
> You can do this by using Reply-To-List or Reply-All.
> 


___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


[GNC] GNUcash 3.2 file open issue

2018-07-26 Thread Don Pawluk
Running on Linux Mint 18.3 Mate, open file will not provide access to usb
external drives or smb dirves. Will open on local PC drives. When bringing
up file system there is no media folder where I would normally expect to
find the usb external drives or smb drives.

Any help would be appreciated, Don
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] GnuCash 3.2 Japanese Keyboard

2018-07-21 Thread John Ralls


> On Jul 21, 2018, at 5:34 PM, KrisGaethofs  wrote:
> 
> I'm running GnuCash on Windows 10.
> 
> System region is set to Japan and both English and Japanese language packs
> are installed. I use a Japanese keyboard together with Microsoft IME.
> 
> Since updating to GnuCash 3.2 all keyboard input in GnuCash defaults to
> halfwidth katakana and there's no way to switch it off. Switching to English
> input (Win Key + Space)  does not make a difference, all input is still in
> halfwidth katakana. Switching to different Japanese inputs (romaji /
> hiragana / katakana) does not make a difference either, all input still is
> in halfwidth katakana.
> 
> Note that when I say input is in halfwidth katakana I mean it literally
> corresponds to the kana keys on my keyboard. For example the q key gives me
> タ and the w key gives me テ.
> 
> The normal way of inputting any Japanese would be by typing it out
> phonetically and using the IME to convert to hiragana / katakana / kanji.
> 
> Looks like GnuCash ignores all IME / Language selections made and just
> sticks to kana only mode for my keyboard (Logicool G710+).
> 
> GnuCash is the first program I've encountered to display this kind of
> behaviour. Any idea what might be going on?
> 

We’ve had several reports about IME not working correctly. Some of the issues 
have been addressed, but there’s some IME code in the register that we suspect 
is obsolete. Geert plans to work on that next month.

In the meantime, there have been a few changes since 3.2 was released, so it 
would be helpful if you could retrieve the latest nightly build from 
https://code.gnucash.org/biulds/win32/maint 
, test it, and report on the 
behavior.

One other thing: Are you having problems with IME on all windows and dialogs or 
just in the register?

Regards,
John Ralls

___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.

[GNC] GnuCash 3.2 Japanese Keyboard

2018-07-21 Thread KrisGaethofs
I'm running GnuCash on Windows 10.

System region is set to Japan and both English and Japanese language packs
are installed. I use a Japanese keyboard together with Microsoft IME.

Since updating to GnuCash 3.2 all keyboard input in GnuCash defaults to
halfwidth katakana and there's no way to switch it off. Switching to English
input (Win Key + Space)  does not make a difference, all input is still in
halfwidth katakana. Switching to different Japanese inputs (romaji /
hiragana / katakana) does not make a difference either, all input still is
in halfwidth katakana.

Note that when I say input is in halfwidth katakana I mean it literally
corresponds to the kana keys on my keyboard. For example the q key gives me
タ and the w key gives me テ.

The normal way of inputting any Japanese would be by typing it out
phonetically and using the IME to convert to hiragana / katakana / kanji.

Looks like GnuCash ignores all IME / Language selections made and just
sticks to kana only mode for my keyboard (Logicool G710+).

GnuCash is the first program I've encountered to display this kind of
behaviour. Any idea what might be going on?




--
Sent from: http://gnucash.1415818.n4.nabble.com/GnuCash-User-f1415819.html
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.

Re: [GNC] Gnucash 3.2 Crashes Frequently

2018-07-09 Thread John Ralls


> On Jul 9, 2018, at 4:10 PM, DenverJim  wrote:
> 
> Hi.  Haven't seen any comments since 3.2 was released about sudden crashes. 
> It's crashed for me probably 6 or 7 times since June 28th for various
> reasons.  Last crash was caused when saving a transaction report to PDF. 
> Just curious if others having same problem.  
> 
> Love the product.  Been using for a long time on Mac OSX.  Currently running
> High Sierra on a 4 year old MBP.  

There’s https://bugs.gnucash.org/show_bug.cgi?id=796656 
 which might be similar though 
the reporter hasn’t said anything about printing PDFs; his problem seems to be 
about an odd sequence involving duplicating and editing transactions. He’s 
posted a bunch of crash reports to the bug. Can you compare some of them to 
yours to see if you’ve got a similar issue?

Regards,
John Ralls

___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.

Re: [GNC] Gnucash 3.2 Crashes Frequently

2018-07-09 Thread Rich Shepard

On Mon, 9 Jul 2018, DenverJim wrote:


Hi. Haven't seen any comments since 3.2 was released about sudden crashes.
It's crashed for me probably 6 or 7 times since June 28th for various
reasons. Last crash was caused when saving a transaction report to PDF.
Just curious if others having same problem.


  No problems on Slackware-14.2. For that matter, no version of gc has
crashed on me.

Rich
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


[GNC] Gnucash 3.2 Crashes Frequently

2018-07-09 Thread DenverJim
Hi.  Haven't seen any comments since 3.2 was released about sudden crashes. 
It's crashed for me probably 6 or 7 times since June 28th for various
reasons.  Last crash was caused when saving a transaction report to PDF. 
Just curious if others having same problem.  

Love the product.  Been using for a long time on Mac OSX.  Currently running
High Sierra on a 4 year old MBP.  

Thanks.



--
Sent from: http://gnucash.1415818.n4.nabble.com/GnuCash-User-f1415819.html
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] GnuCash 3.2 Released

2018-07-06 Thread David Cousens
On Wed, 2018-07-04 at 14:54 +0200, Geert Janssens wrote:
> Op dinsdag 3 juli 2018 00:59:51 CEST schreef DaveC49:
> > 
> > Geert,
> > 
> > I had realised the same thing about needing to uninstall before
> > building and
> > shifted the section on uninstalling to before the section on
> > Building on
> > the Wiki page and specifically mentioned using the previous
> > version's build
> > directory. I might make the note clearer about retaining the build
> > directory for uninstalling.
> > 
> Thanks for documenting all this.

No problem my pleasure
> 
> > 
> > From the tarball the source directory installs with the version
> > number
> > attached (from github it is a generic gnucash). It has become my
> > practice to
> > put the build directory inside the source directory (I have had no
> > problems
> > with that) so it is clearly identified which version it is for, or
> > alternatively one could tag the build directory with the version
> > number as
> > there is no real need to keep the source directory once the build
> > is done.
> This is a subtlety I'm not so sure about.
> I think in order for "make/ninja-build uninstall" to work properly
> you need to 
> keep both the source directory and the build directory. In addition
> the source 
> directory should reflect the version of gnucash you wish to
> uninstall.
> 
> Here's a quick experiment to illustrate this:
> I have a build directory outside my source tree and I have
> successfully run
> ninja-build install

Geert,
You are correct here. I tried the experiment and build.ninja looks for
the CMakeLists.txt in the top level of the source directory and fails
when it is not there. It also goes into the source tree. I copied
CMakeLists.txt back and then it failed when files further down the
source tree were not present
> 
>  This also means cmake will check dependencies
> before trying to run "make uninstall". The uninstall command depends
> on "install_manifest.txt".
> That file seems to be a file generated and tracked by the cmake build
> system itself. Our CMakeLists.txt files don't manipulate it
> explicitly. And clearly cmake attempts track dependencies on this
> file (namely each file that got installed).
The install_manifest.txt file is written by cmake_install.cmake which
is in turn called by the uninstall target in build.ninja which reside
in the top level of the build directory
> 
> > 
> > I'm not pushed for space so I don't bother to delete the source
> > files until
> > I've installed another version and I'm happy with it but others
> > won't
> > necessarily have that luxury.
> > 
> > At the moment the uninstall from a ninja build I did is a kludge. I
> > will see
> > if I can find how/where cmake generates the install secion when
> > creating
> > build.ninja and populate the uninstall target. If I succeed, i'll
> > generate
> > a patch.
> Are you referring to the fact that uninstall doesn't remove empty
> directories
> Maybe that can be improved indeed. I don't know. Keep in mind the
> intended final install destination is typically into a set of 
> directories that already contain applications and libraries. 
> So we can't unconditionally delete all directories. We should at
> least verify whether they are empty or not.
> And we probably don't want to delete any common top-level directory 
> like bin or lib when dealing with standard install locations.
>  

No. The uninstall target in build.ninja as written by cmake was just an
empty stub. It was originally:

#
# Utility command for uninstall

build uninstall: phony CMakeFiles/uninstall

#

 I copied the code from the install target:

#
# Utility command for install

build CMakeFiles/install.util: CUSTOM_COMMAND all
  COMMAND = cd /home/david/Applications/gnucash-3.2/build-ninja &&
/usr/bin/cmake -P cmake_install.cmake
  DESC = Install the project...
  pool = console
  restat = 1
build install: phony CMakeFiles/install.util

#

, substituted "uninstall" for "install" so it became:

#
# Utility command for uninstall
build CMakeFiles/uninstall.util: CUSTOM_COMMAND all
  COMMAND = cd /home/david/Applications/gnucash-3.2/build-ninja &&
/usr/bin/cmake -P cmake_uninstall.cmake
  DESC = Uninstall the project...
  pool = console
  restat = 1
build uninstall: phony CMakeFiles/uninstall

#

and then ninja uninstall works in a shell open in the build directory.

cmake_uninstall.cmake existed and had been created by cmake when it
configured the build, but it could not be executed from build.ninja.
Somewhere in the CMakeLists.txt files in the source something is
missing which writes the code into build.ninja to run
cmake_uninstall.cmake. 

I think it would be nice to tidy up the uninstall of the directories as
well. John has pointed out elsewhere 

Re: [GNC] GnuCash 3.2 Released

2018-07-05 Thread John Ralls



> On Jul 5, 2018, at 12:56 AM, Geert Janssens  
> wrote:
> 
> Op donderdag 5 juli 2018 07:04:21 CEST schreef David Cousens:
>> On Wed, 2018-07-04 at 14:54 +0200, Geert Janssens wrote:
>>> Are you referring to the fact that uninstall doesn't remove empty
>>> directories
>>> 
>> 
>> No. The uninstall target in build.ninja as written by cmake was just an
>> empty stub. 
> 
> 
>> 
>> cmake_uninstall.cmake existed and had been created by cmake when it
>> configured the build, but it could not be executed from build.ninja.
>> Somewhere in the CMakeLists.txt files in the source something is
>> missing which writes the code into build.ninja to run
>> cmake_uninstall.cmake. 
> 
> This is odd in itself. I have been using ninja-build for months and the 
> uninstall target works just fine without your additions (it does leave the 
> directories of course).
> 
> So I don't understand why you would need to modify the generated build.ninja 
> file.
>> 
>> I think it would be nice to tidy up the uninstall of the directories as
>> well. John has pointed out elsewhere that it isn't absolutely necessary
>> to prevent any interference between installs and that this was
>> primarily for developers but with cmake now the primary build
>> configuration, those of us who like to keep ahead of the distro version
>> are likely to be building from source using cmak and ninja. 
>> 
>> With a /usr/local prefix, GnuCash does a nice install where the files
>> are all copied into directories named as gnucash:
>> /usr/local/lib/gnucash/...
>> /usr/local/share/gnucash/...
>> /usr/local/etc/gnucash/...
>> /usr/local/include/gnucash/...
>> 
>> and the directories I referred to were subdirectories of the respective
>> gnucash directories listed above. At present install_manifest.txt has
>> no explicit record of the existence of them as they are created on the
>> fly when files are installed in them by cmake_install.cmake (top level
>> of build directory) rather than being created explicitly with a mkdir.
>> 
>> Removing the above directories with "rm -r /lib/gnucash " and
>> similar commands for the others should do it with the appropriate
>> checking as you mentioned above.
> 
> Indeed. You could add something to that effect in cmake_uninstall.cmake.in
> 
>> 
>> There is a separate target in build.ninja for install/local (but not an
>> uninstall/local) for installing under a user home directory.
>> 
> build.ninja is generated based on the contents of the various CMakeLists.txt 
> and *.cmake files. I only look in build.ninja if a ninja build behaves 
> differently from a make build. Is that the case here ?
> 
> Note I always install in a custom prefix under my home directory. Perhaps 
> that's why my uninstall works where uninstall under /usr/local doesn't ?
> 
> Something to try when I find the time.
> 
>> Do you know if Rob Gowin is continuing to work on the cmake scripts or
>> not? I don't mind going in and trying to patch it, but if it is still a
>> work in progress then I don't want to get in his way, and I'm happy to
>> leave it to Rob if he is still developing them.
> 
> I don't know. I'll let Rob answer this.

Remember that CMake does things differently when told to install anywhere under 
/usr and /opt.

See https://cmake.org/cmake/help/latest/module/GNUInstallDirs.html 


Regards,
John Ralls

___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] GnuCash 3.2 Released

2018-07-05 Thread Geert Janssens
Op donderdag 5 juli 2018 07:04:21 CEST schreef David Cousens:
> On Wed, 2018-07-04 at 14:54 +0200, Geert Janssens wrote:
> > Are you referring to the fact that uninstall doesn't remove empty
> > directories
> >
> 
> No. The uninstall target in build.ninja as written by cmake was just an
> empty stub. 


> 
> cmake_uninstall.cmake existed and had been created by cmake when it
> configured the build, but it could not be executed from build.ninja.
> Somewhere in the CMakeLists.txt files in the source something is
> missing which writes the code into build.ninja to run
> cmake_uninstall.cmake. 

This is odd in itself. I have been using ninja-build for months and the 
uninstall target works just fine without your additions (it does leave the 
directories of course).

So I don't understand why you would need to modify the generated build.ninja 
file.
> 
> I think it would be nice to tidy up the uninstall of the directories as
> well. John has pointed out elsewhere that it isn't absolutely necessary
> to prevent any interference between installs and that this was
> primarily for developers but with cmake now the primary build
> configuration, those of us who like to keep ahead of the distro version
> are likely to be building from source using cmak and ninja. 
> 
> With a /usr/local prefix, GnuCash does a nice install where the files
> are all copied into directories named as gnucash:
> /usr/local/lib/gnucash/...
> /usr/local/share/gnucash/...
> /usr/local/etc/gnucash/...
> /usr/local/include/gnucash/...
> 
> and the directories I referred to were subdirectories of the respective
> gnucash directories listed above. At present install_manifest.txt has
> no explicit record of the existence of them as they are created on the
> fly when files are installed in them by cmake_install.cmake (top level
> of build directory) rather than being created explicitly with a mkdir.
> 
> Removing the above directories with "rm -r /lib/gnucash " and
> similar commands for the others should do it with the appropriate
> checking as you mentioned above.

Indeed. You could add something to that effect in cmake_uninstall.cmake.in

> 
> There is a separate target in build.ninja for install/local (but not an
> uninstall/local) for installing under a user home directory.
> 
build.ninja is generated based on the contents of the various CMakeLists.txt 
and *.cmake files. I only look in build.ninja if a ninja build behaves 
differently from a make build. Is that the case here ?

Note I always install in a custom prefix under my home directory. Perhaps 
that's why my uninstall works where uninstall under /usr/local doesn't ?

Something to try when I find the time.

> Do you know if Rob Gowin is continuing to work on the cmake scripts or
> not? I don't mind going in and trying to patch it, but if it is still a
> work in progress then I don't want to get in his way, and I'm happy to
> leave it to Rob if he is still developing them.

I don't know. I'll let Rob answer this.

Geert



___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] GnuCash 3.2 Released

2018-07-04 Thread Geert Janssens
Op dinsdag 3 juli 2018 00:59:51 CEST schreef DaveC49:
> Geert,
> 
> I had realised the same thing about needing to uninstall before building and
> shifted the section on uninstalling to before the section on Building on
> the Wiki page and specifically mentioned using the previous version's build
> directory. I might make the note clearer about retaining the build
> directory for uninstalling.
> 
Thanks for documenting all this.

> From the tarball the source directory installs with the version number
> attached (from github it is a generic gnucash). It has become my practice to
> put the build directory inside the source directory (I have had no problems
> with that) so it is clearly identified which version it is for, or
> alternatively one could tag the build directory with the version number as
> there is no real need to keep the source directory once the build is done.

This is a subtlety I'm not so sure about.
I think in order for "make/ninja-build uninstall" to work properly you need to 
keep both the source directory and the build directory. In addition the source 
directory should reflect the version of gnucash you wish to uninstall.

Here's a quick experiment to illustrate this:
I have a build directory outside my source tree and I have successfully run
ninja-build install

Next I move the source tree aside (move source source-org)
And then from my build directory run
ninja-buile uninstall
This gives the following error message:
ninja-build uninstall
[0/1] Re-running CMake...
CMake Error: The source directory "source" does not exist.
Specify --help for usage, or press the help button on the CMake GUI.
FAILED: build.ninja 
/usr/bin/cmake -Hsource-Bbuild
ninja: error: rebuilding 'build.ninja': subcommand failed

Cmake tries very hard to detect source changes when running make/ninja-build 
based instructions. This also means cmake will check dependencies before 
trying to run "make uninstall". The uninstall command depends on 
"install_manifest.txt".
That file seems to be a file generated and tracked by the cmake build system 
itself. Our CMakeLists.txt files don't manipulate it explicitly. And clearly 
cmake attempts track dependencies on this file (namely each file that got 
installed).

> I'm not pushed for space so I don't bother to delete the source files until
> I've installed another version and I'm happy with it but others won't
> necessarily have that luxury.
> 
> At the moment the uninstall from a ninja build I did is a kludge. I will see
> if I can find how/where cmake generates the install secion when creating
> build.ninja and populate the uninstall target. If I succeed, i'll generate
> a patch.

Are you referring to the fact that uninstall doesn't remove empty directories 
?
Maybe that can be improved indeed. I don't know. Keep in mind the intended 
final install destination is typically into a set of directories that already 
contain applications and libraries. So we can't unconditionally delete all 
directories. We should at least verify whether they are empty or not. And we 
probably don't want to delete any common top-level directory like bin or lib 
when dealing with standard install locations.

Regards,

Geert


___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] GnuCash 3.2 Released

2018-07-04 Thread DaveC49
Geert,

I had realised the same thing about needing to uninstall before building and
shifted the section on uninstalling to before the section on Building on the
Wiki page and specifically mentioned using the previous version's build
directory. I might make the note clearer about retaining the build directory
for uninstalling.

>From the tarball the source directory installs with the version number
attached (from github it is a generic gnucash). It has become my practice to
put the build directory inside the source directory (I have had no problems
with that) so it is clearly identified which version it is for, or
alternatively one could tag the build directory with the version number as
there is no real need to keep the source directory once the build is done.
I'm not pushed for space so I don't bother to delete the source files until
I've installed another version and I'm happy with it but others won't
necessarily have that luxury.

At the moment the uninstall from a ninja build I did is a kludge. I will see
if I can find how/where cmake generates the install secion when creating
build.ninja and populate the uninstall target. If I succeed, i'll generate a
patch.

 I take John's point that ninja,  and cmake to a lesser extent now that it
is the only build configuration route, are primarily developers tools. 

David



-
David Cousens
--
Sent from: http://gnucash.1415818.n4.nabble.com/GnuCash-User-f1415819.html
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] GnuCash 3.2

2018-07-04 Thread cicko
I also want to thank the devs for the amount of bugs squashed in the latest
release! That's really impressive.



--
Sent from: http://gnucash.1415818.n4.nabble.com/GnuCash-User-f1415819.html
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


[GNC] GnuCash 3.2

2018-07-03 Thread Ken Pyzik
Have upgraded to 3.2 and wanted to report that I have had no issues.

 

I m a Windows 10 user

 

Positives:

*   Upgrade went smoothly (installed new over old and all worked fine)
*   Faster reports 
*   Overall operation seems faster

 

Negatives: none

 

I did notice that starting seems to take a little longer to start - but this
is no big deal.  Thanks! 

 

Ken 

___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] GnuCash 3.2 Released

2018-07-02 Thread John Ralls


> On Jul 1, 2018, at 11:13 PM, DaveC49  wrote:
> 
> John,
> 
> Just some further information. I rebuilt GnuCash with the -G Ninja option.
> 
> The build.ninja seems to contain a build uninstall target but it has no
> commands. If I run 
> sudo ninja install
> it installs GnuCash (in/usr/local the prefix I set with cmake) and creates
> install_manifest.txt.
> 
> If i copy the install target in build.ninja to the blank uninstall section
> and modify it as follows
> 
> # Utility command for uninstall
> build CMakeFiles/uninstall.util: CUSTOM_COMMAND all
>  COMMAND = cd /home/david/Applications/gnucash-3.2/build-ninja &&
> /usr/bin/cmake -P cmake_uninstall.cmake
>  DESC = Uninstall the project...
>  pool = console
>  restat = 1
> build uninstall: phony CMakeFiles/uninstall
> 
> and then issue
> 
> sudo ninja uninstall
> 
> Gnucash is correctly uninstalled except that it leaves:
>   an empty gnucash directory in /etc;
>  /include has an empty gnucash folder;
>  /lib has a guncash directory with a scm/ccache/2.2 directory containing
> gnucash, json and qif-import 
> folders
>  /share has a gnucash directory with subdirectories but no files
> 
> It appears the uninstall is removing all files but not necessarily the
> directory structure the files were in. OK unless that changes between
> versions.
> 
> I haven't checked whether the uninstall behavior is any different for the
> make version but a diff on the make and ninja versions of
> install_manifest.txt produces no differences so I would expect that the
> uninstall is the same given the cmake_uninstall.cmake files were essentially
> the same.
> 
> Getting cmake to correctly create the build.ninja uninstall target should be
> enough to get the ninja uninstall working as well.

David,

Remember that cmake is a tool for developers. Installing and uninstalling 
several times an hour isn’t uncommon when coding or debugging.

As for the rest, seems like a lot of work when `xargs rm < 
install_manifest.txt` works well (though it does leave the directory structure, 
but the goal is to get rid of the installable modules and old compiled scheme 
files so that the don’t confuse the new build). It also has the advantage of 
not talking to cmake so it’s not affected by changes in the source directory.

Incidentally, if you’ve already deleted install_manifest.txt, `rm -rf 
/lib/gnucash` will get rid of enough to get a clean build.


Regards,
John Ralls
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.

Re: [GNC] GnuCash 3.2 Released

2018-07-02 Thread DaveC49
John,

Just some further information. I rebuilt GnuCash with the -G Ninja option.

The build.ninja seems to contain a build uninstall target but it has no
commands. If I run 
sudo ninja install
it installs GnuCash (in/usr/local the prefix I set with cmake) and creates
install_manifest.txt.

If i copy the install target in build.ninja to the blank uninstall section
and modify it as follows

# Utility command for uninstall
build CMakeFiles/uninstall.util: CUSTOM_COMMAND all
  COMMAND = cd /home/david/Applications/gnucash-3.2/build-ninja &&
/usr/bin/cmake -P cmake_uninstall.cmake
  DESC = Uninstall the project...
  pool = console
  restat = 1
build uninstall: phony CMakeFiles/uninstall

and then issue

sudo ninja uninstall

Gnucash is correctly uninstalled except that it leaves:
   an empty gnucash directory in /etc;
  /include has an empty gnucash folder;
  /lib has a guncash directory with a scm/ccache/2.2 directory containing
gnucash, json and qif-import 
 folders
  /share has a gnucash directory with subdirectories but no files

It appears the uninstall is removing all files but not necessarily the
directory structure the files were in. OK unless that changes between
versions.

I haven't checked whether the uninstall behavior is any different for the
make version but a diff on the make and ninja versions of
install_manifest.txt produces no differences so I would expect that the
uninstall is the same given the cmake_uninstall.cmake files were essentially
the same.

Getting cmake to correctly create the build.ninja uninstall target should be
enough to get the ninja uninstall working as well.

Cheers
David




-
David Cousens
--
Sent from: http://gnucash.1415818.n4.nabble.com/GnuCash-User-f1415819.html
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] GnuCash 3.2 Released

2018-07-02 Thread DaveC49
John,

I'm using CMake v 3.5.1. Presumably the same or similar could be used to
create an uninstall target for Ninja. Their argument for providing a default
uninstall target seems a bit weak to me as you are not going to be issuing
the command in a build directory unless you really intend to uninstall those
useful files. 

The cmake_uninstall.cmake file contains a reference to

# This is taken from
https://cmake.org/Wiki/CMake_FAQ#Can_I_do_.22make_uninstall.22_with_CMake.3F

which has now been moved to Kitware
https://gitlab.kitware.com/cmake/community/wikis/FAQ

which has a very slow server by the look of it but eventually i found 
https://gitlab.kitware.com/cmake/community/wikis/FAQ#can-i-do-make-uninstall-with-cmake

Can I do "make uninstall" with CMake?

By default, CMake does not provide the "make uninstall" target, so you
cannot do this. We do not want "make uninstall" to remove useful files
from the system.

If you want an "uninstall" target in your project, then nobody prevents
you from providing one. You need to delete the files listed in
install_manifest.txt file. Here is how to do it. First create file
cmake_uninstall.cmake.in in the top-level directory of the project:

if(NOT EXISTS "@CMAKE_BINARY_DIR@/install_manifest.txt")
  message(FATAL_ERROR "Cannot find install manifest:
@CMAKE_BINARY_DIR@/install_manifest.txt")
endif(NOT EXISTS "@CMAKE_BINARY_DIR@/install_manifest.txt")

file(READ "@CMAKE_BINARY_DIR@/install_manifest.txt" files)
string(REGEX REPLACE "\n" ";" files "${files}")
foreach(file ${files})
  message(STATUS "Uninstalling $ENV{DESTDIR}${file}")
  if(IS_SYMLINK "$ENV{DESTDIR}${file}" OR EXISTS "$ENV{DESTDIR}${file}")
exec_program(
  "@CMAKE_COMMAND@" ARGS "-E remove \"$ENV{DESTDIR}${file}\""
  OUTPUT_VARIABLE rm_out
  RETURN_VALUE rm_retval
  )
if(NOT "${rm_retval}" STREQUAL 0)
  message(FATAL_ERROR "Problem when removing $ENV{DESTDIR}${file}")
endif(NOT "${rm_retval}" STREQUAL 0)
  else(IS_SYMLINK "$ENV{DESTDIR}${file}" OR EXISTS "$ENV{DESTDIR}${file}")
message(STATUS "File $ENV{DESTDIR}${file} does not exist.")
  endif(IS_SYMLINK "$ENV{DESTDIR}${file}" OR EXISTS "$ENV{DESTDIR}${file}")
endforeach(file)
Then in the top-level CMakeLists.txt add the following logic:

# uninstall target
if(NOT TARGET uninstall)
configure_file(
"${CMAKE_CURRENT_SOURCE_DIR}/cmake_uninstall.cmake.in"
"${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake"
IMMEDIATE @ONLY)

add_custom_target(uninstall
COMMAND ${CMAKE_COMMAND} -P
${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake)
endif()
Now you will have an "uninstall" target at the top-level directory of
your build tree.

Instead of creating an "uninstall" target, Unix users could enter this
command in the shell:

xargs rm < install_manifest.txt



-
David Cousens
--
Sent from: http://gnucash.1415818.n4.nabble.com/GnuCash-User-f1415819.html
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] GnuCash 3.2 Released

2018-07-02 Thread Geert Janssens
It was actually implemented by Rob Gowin in February last year:
https://github.com/Gnucash/gnucash/commit/6b14dc5b59ee

But while thinking of this I suspect the uninstall target should equally be 
run from the build directory that was used to install the old gnucash version. 
If you have already updated the source directory to the newer gnucash version 
invoking the uninstall target (be it from ninja-build or make) will probably 
trigger an update of the install-manifest file to match the newer sources 
before the uninstall itself will be triggered. And in that case it would still 
not uninstall obsolete files.

Geert

Op zondag 1 juli 2018 17:28:46 CEST schreef John Ralls:
> David,
> 
> That’s apparently new and undocumented behavior, maybe in CMake 3.10. Thanks
> for reporting it.
> 
> Regards,
> John Ralls
> 
> > On Jun 30, 2018, at 1:26 AM, DaveC49  wrote:
> > 
> > Hi John,
> > 
> > If GnuCash is not built with Ninja, there is a cmake_uninstall.cmake file
> > in the top level of the build directory which seems to read the
> > install_manifest.txt file. The Makefile in the same level produced by
> > CMake
> > has an uninstall target - not sure how it executes the commands in the
> > cmake_uninstall.cmake file but it appears to.
> > 
> > Executing "make uninstall" ( prefixed with sudo if installed in a system
> > location) in the build directory does remove all of the GnuCash files
> > installed in the  specified to cmake. (GnuCash V3.2 from the
> > SourceForge tarball on Linux Mint 18.3 built using Cmake, make and -
> > should
> > be the same for Ubuntu).
> > 
> > Not sure that happens if it is built with Ninja rather than make though.
> > 
> > David Cousens
> > 
> > 
> > 
> > -
> > David Cousens
> > --
> > Sent from: http://gnucash.1415818.n4.nabble.com/GnuCash-User-f1415819.html
> > ___
> > gnucash-user mailing list
> > gnucash-user@gnucash.org
> > To update your subscription preferences or to unsubscribe:
> > https://lists.gnucash.org/mailman/listinfo/gnucash-user
> > If you are using Nabble or Gmane, please see
> > https://wiki.gnucash.org/wiki/Mailing_Lists for more information. -
> > Please remember to CC this list on all your replies.
> > You can do this by using Reply-To-List or Reply-All.
> 
> ___
> gnucash-user mailing list
> gnucash-user@gnucash.org
> To update your subscription preferences or to unsubscribe:
> https://lists.gnucash.org/mailman/listinfo/gnucash-user
> If you are using Nabble or Gmane, please see
> https://wiki.gnucash.org/wiki/Mailing_Lists for more information. -
> Please remember to CC this list on all your replies.
> You can do this by using Reply-To-List or Reply-All.




___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.

[GNC] gnucash 3.2 failes to open database in Postgresql 10

2018-07-01 Thread Deamen TANG
Hi There,

I am using gnucash 3.2 with Postgresql 10,  after I have created my account
in gnucash I can successfully save it into postgres, but after I close
gnucash and open the account again, I get an error saying "experienced an
error or encountered bad or corrupt data".

I checked the postgres log, it was complaining about relation "gnclock"
already exists:
2018-07-02 09:33:30.982 AEST [30291] ERROR:  relation "gnclock" already
exists
2018-07-02 09:33:30.982 AEST [30291] STATEMENT:  CREATE TABLE gnclock (
Hostname varchar(255), PID int )

If I go to delete the "gnclock" table, I am able to open my account, but if
I close gnucash again I get the same error when I re-open my account.

For now, I have to drop the "gnclock" table after I close gnucash.

Could anyone please advise if this is a bug or a user error?

I tried the official windows binary and compiled one under Fedora 26, I am
getting the same error.

Thanks

Song
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] GnuCash 3.2 Released

2018-07-01 Thread John Ralls

David,

That’s apparently new and undocumented behavior, maybe in CMake 3.10. Thanks 
for reporting it.

Regards,
John Ralls

> On Jun 30, 2018, at 1:26 AM, DaveC49  wrote:
> 
> Hi John,
> 
> If GnuCash is not built with Ninja, there is a cmake_uninstall.cmake file in
> the top level of the build directory which seems to read the
> install_manifest.txt file. The Makefile in the same level produced by CMake
> has an uninstall target - not sure how it executes the commands in the
> cmake_uninstall.cmake file but it appears to. 
> 
> Executing "make uninstall" ( prefixed with sudo if installed in a system
> location) in the build directory does remove all of the GnuCash files
> installed in the  specified to cmake. (GnuCash V3.2 from the
> SourceForge tarball on Linux Mint 18.3 built using Cmake, make and - should
> be the same for Ubuntu).
> 
> Not sure that happens if it is built with Ninja rather than make though.
> 
> David Cousens
> 
> 
> 
> -
> David Cousens
> --
> Sent from: http://gnucash.1415818.n4.nabble.com/GnuCash-User-f1415819.html
> ___
> gnucash-user mailing list
> gnucash-user@gnucash.org
> To update your subscription preferences or to unsubscribe:
> https://lists.gnucash.org/mailman/listinfo/gnucash-user
> If you are using Nabble or Gmane, please see 
> https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
> -
> Please remember to CC this list on all your replies.
> You can do this by using Reply-To-List or Reply-All.

___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.

Re: [GNC] GnuCash 3.2 Released

2018-06-30 Thread DaveC49
Hi John,

If GnuCash is not built with Ninja, there is a cmake_uninstall.cmake file in
the top level of the build directory which seems to read the
install_manifest.txt file. The Makefile in the same level produced by CMake
has an uninstall target - not sure how it executes the commands in the
cmake_uninstall.cmake file but it appears to. 

Executing "make uninstall" ( prefixed with sudo if installed in a system
location) in the build directory does remove all of the GnuCash files
installed in the  specified to cmake. (GnuCash V3.2 from the
SourceForge tarball on Linux Mint 18.3 built using Cmake, make and - should
be the same for Ubuntu).

Not sure that happens if it is built with Ninja rather than make though.

David Cousens



-
David Cousens
--
Sent from: http://gnucash.1415818.n4.nabble.com/GnuCash-User-f1415819.html
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] GnuCash 3.2 Released

2018-06-30 Thread Stephen M. Butler
On 06/29/2018 12:43 AM, DaveC49 wrote:
> Stephen,
>
> It is generally a good idea to remove the previous version before installing
> a new one. Gnucash will generally overwrite any existing files of the same
> name, but you may be left with unnecessary files in some cases. Going from
> 3.1 to 3.2 should be OK as there are unlikey to be major changes in the file
> structure, but between major version could be problematical There are
> instructions on the Wiki in the build instructions for Ubuntu 16.04 for
> doing uninstalls in a variety of circumstances including manually deleting
> all the files which will be the same for 18.04. I'll put a note in there re
> uninstalling previous versionsbefore the build instructions to make it
> clearer.
>
> If you still have the 3.1 build directory:
>  open a shell and cd to the build directory then type 
>  sudo make uninstall

Sadly, I aggressively removed it when bringing in 3.2  :-(
So a learning experience that, hopefully, I can help others avoid.
>
> then do the install of V3.2
>
> This uses a manifest created when Gnucash was installed to uninstall all of
> the program files. It leaves user preference files untouched.
>
> David
>
>
>
> -
> David Cousens
> --
> Sent from: http://gnucash.1415818.n4.nabble.com/GnuCash-User-f1415819.html
> ___
> gnucash-user mailing list
> gnucash-user@gnucash.org
> To update your subscription preferences or to unsubscribe:
> https://lists.gnucash.org/mailman/listinfo/gnucash-user
> If you are using Nabble or Gmane, please see 
> https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
> -
> Please remember to CC this list on all your replies.
> You can do this by using Reply-To-List or Reply-All.
>

___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.

Re: [GNC] GnuCash 3.2 Released

2018-06-30 Thread Geert Janssens
Op vrijdag 29 juni 2018 09:43:59 CEST schreef DaveC49:
> Stephen,
> 
> It is generally a good idea to remove the previous version before installing
> a new one. Gnucash will generally overwrite any existing files of the same
> name, but you may be left with unnecessary files in some cases. Going from
> 3.1 to 3.2 should be OK as there are unlikey to be major changes in the
> file structure,

Unfortunately one file change did slip through in the report files between 3.1 
and 3.2. If not uninstalling it would leave two .scm files and two .go files 
from the 3.1 installation that conflict with the new files in 3.2.

Geert


___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] GnuCash 3.2 Released

2018-06-30 Thread DaveC49
Stephen,

It is generally a good idea to remove the previous version before installing
a new one. Gnucash will generally overwrite any existing files of the same
name, but you may be left with unnecessary files in some cases. Going from
3.1 to 3.2 should be OK as there are unlikey to be major changes in the file
structure, but between major version could be problematical There are
instructions on the Wiki in the build instructions for Ubuntu 16.04 for
doing uninstalls in a variety of circumstances including manually deleting
all the files which will be the same for 18.04. I'll put a note in there re
uninstalling previous versionsbefore the build instructions to make it
clearer.

If you still have the 3.1 build directory:
 open a shell and cd to the build directory then type 
 sudo make uninstall

then do the install of V3.2

This uses a manifest created when Gnucash was installed to uninstall all of
the program files. It leaves user preference files untouched.

David



-
David Cousens
--
Sent from: http://gnucash.1415818.n4.nabble.com/GnuCash-User-f1415819.html
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] GnuCash 3.2 Released

2018-06-29 Thread Stephen M. Butler
On 06/29/2018 02:17 PM, Geert Janssens wrote:
> Op vrijdag 29 juni 2018 21:04:31 CEST schreef Stephen M. Butler:
>> On 06/29/2018 11:02 AM, Geert Janssens wrote:
>>> Op vrijdag 29 juni 2018 19:54:04 CEST schreef Stephen M. Butler:
 On 06/29/2018 12:42 AM, Geert Janssens wrote:
> Op maandag 25 juni 2018 19:42:37 CEST schreef Stephen M. Butler:
>> Further research:
>>
>> It appears that net-charts.scm is a replacement for two other files in
>> standard-reports:  net-linecharts.scm and net-barcharts.scm
>>
>> I renamed those two to have a .old extension on them and GnuCash now
>> starts up without complaining about duplicate report IDs.
> Ah indeed. As you indicated you didn't uninstall first, the old files
> remained in the installation directory causing the conflict.
 Hopefully I remember for the next upgrade.

> The formal way to uninstall is a bit picky. You should run "make
> uninstall" in your build directory *before* changing the source
> directory
> to a newer version (be it a new git checkout or pull, or installing a
> new
> release tar ball).
>
> If you installed gnucash in it's own prefix (by adding
> -DCMAKE_INSTALL_PREFIX=xyz to your cmake run), uninstalling would be as
> easy as deleting this prefix.
>
> But in this case manually removing/renaming the offending files works as
> well. I would remove/rename the corresponding .go files in gnucash'
> lib64/gnucash/ scm/ccache/ directory as well though.
 Hmm.  Can't find that path.  Here is what is in /lib64 on my Ubuntu
 18.04 box:
>>> Oh, right. I believe debian and derivates use a different scheme for
>>> 64-bit
>>> applications
>>>
>>> Do you have
>>> /usr/lib/x86_64-linux-gnu/gnucash/scm/ccache ?
>>>
>>> Geert
>> Not that I see -- I am using a 64-bit O/S so maybe 32 bit apps are the
>> odd member here?
>>
>> I did find them here though:
>> /usr/local/lib/gnucash/scm/ccache/2.0/gnucash/report/standard-reports
>> Occasionally find can be useful!
>>
>> sudo find / -name net-barchart.go
>> /usr/local/lib/gnucash/scm/ccache/2.0/gnucash/report/standard-reports/net-ba
>> rchart.go
>>
>> I removed both.
> Ah, indeed. If you don't specify a prefix, cmake will use /usr/local. Sorry 
> for sending you around on different wrong paths.
>
> Geert
>
>
>
>

No problem.  Forces me to figure out what _is_ happening.  At least you
told me about the .go files.
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.

Re: [GNC] GnuCash 3.2 Released

2018-06-29 Thread Geert Janssens
Op vrijdag 29 juni 2018 21:04:31 CEST schreef Stephen M. Butler:
> On 06/29/2018 11:02 AM, Geert Janssens wrote:
> > Op vrijdag 29 juni 2018 19:54:04 CEST schreef Stephen M. Butler:
> >> On 06/29/2018 12:42 AM, Geert Janssens wrote:
> >>> Op maandag 25 juni 2018 19:42:37 CEST schreef Stephen M. Butler:
>  Further research:
>  
>  It appears that net-charts.scm is a replacement for two other files in
>  standard-reports:  net-linecharts.scm and net-barcharts.scm
>  
>  I renamed those two to have a .old extension on them and GnuCash now
>  starts up without complaining about duplicate report IDs.
> >>> 
> >>> Ah indeed. As you indicated you didn't uninstall first, the old files
> >>> remained in the installation directory causing the conflict.
> >> 
> >> Hopefully I remember for the next upgrade.
> >> 
> >>> The formal way to uninstall is a bit picky. You should run "make
> >>> uninstall" in your build directory *before* changing the source
> >>> directory
> >>> to a newer version (be it a new git checkout or pull, or installing a
> >>> new
> >>> release tar ball).
> >>> 
> >>> If you installed gnucash in it's own prefix (by adding
> >>> -DCMAKE_INSTALL_PREFIX=xyz to your cmake run), uninstalling would be as
> >>> easy as deleting this prefix.
> >>> 
> >>> But in this case manually removing/renaming the offending files works as
> >>> well. I would remove/rename the corresponding .go files in gnucash'
> >>> lib64/gnucash/ scm/ccache/ directory as well though.
> >> 
> >> Hmm.  Can't find that path.  Here is what is in /lib64 on my Ubuntu
> > 
> >> 18.04 box:
> > Oh, right. I believe debian and derivates use a different scheme for
> > 64-bit
> > applications
> > 
> > Do you have
> > /usr/lib/x86_64-linux-gnu/gnucash/scm/ccache ?
> > 
> > Geert
> 
> Not that I see -- I am using a 64-bit O/S so maybe 32 bit apps are the
> odd member here?
> 
> I did find them here though:
> /usr/local/lib/gnucash/scm/ccache/2.0/gnucash/report/standard-reports
> Occasionally find can be useful!
> 
> sudo find / -name net-barchart.go
> /usr/local/lib/gnucash/scm/ccache/2.0/gnucash/report/standard-reports/net-ba
> rchart.go
> 
> I removed both.

Ah, indeed. If you don't specify a prefix, cmake will use /usr/local. Sorry 
for sending you around on different wrong paths.

Geert



___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] GnuCash 3.2 Released

2018-06-29 Thread Stephen M. Butler
On 06/29/2018 11:02 AM, Geert Janssens wrote:
> Op vrijdag 29 juni 2018 19:54:04 CEST schreef Stephen M. Butler:
>> On 06/29/2018 12:42 AM, Geert Janssens wrote:
>>> Op maandag 25 juni 2018 19:42:37 CEST schreef Stephen M. Butler:
 Further research:

 It appears that net-charts.scm is a replacement for two other files in
 standard-reports:  net-linecharts.scm and net-barcharts.scm

 I renamed those two to have a .old extension on them and GnuCash now
 starts up without complaining about duplicate report IDs.
>>> Ah indeed. As you indicated you didn't uninstall first, the old files
>>> remained in the installation directory causing the conflict.
>> Hopefully I remember for the next upgrade.
>>
>>> The formal way to uninstall is a bit picky. You should run "make
>>> uninstall" in your build directory *before* changing the source directory
>>> to a newer version (be it a new git checkout or pull, or installing a new
>>> release tar ball).
>>>
>>> If you installed gnucash in it's own prefix (by adding
>>> -DCMAKE_INSTALL_PREFIX=xyz to your cmake run), uninstalling would be as
>>> easy as deleting this prefix.
>>>
>>> But in this case manually removing/renaming the offending files works as
>>> well. I would remove/rename the corresponding .go files in gnucash'
>>> lib64/gnucash/ scm/ccache/ directory as well though.
>> Hmm.  Can't find that path.  Here is what is in /lib64 on my Ubuntu
>> 18.04 box:
> Oh, right. I believe debian and derivates use a different scheme for 64-bit 
> applications
>
> Do you have
> /usr/lib/x86_64-linux-gnu/gnucash/scm/ccache ?
>
> Geert
>
>
Not that I see -- I am using a 64-bit O/S so maybe 32 bit apps are the
odd member here?

I did find them here though:
/usr/local/lib/gnucash/scm/ccache/2.0/gnucash/report/standard-reports
Occasionally find can be useful!

sudo find / -name net-barchart.go
/usr/local/lib/gnucash/scm/ccache/2.0/gnucash/report/standard-reports/net-barchart.go

I removed both.

___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] GnuCash 3.2 Released

2018-06-29 Thread Stephen M. Butler
On 06/29/2018 12:42 AM, Geert Janssens wrote:
> Op maandag 25 juni 2018 19:42:37 CEST schreef Stephen M. Butler:
>> Further research:
>>
>> It appears that net-charts.scm is a replacement for two other files in
>> standard-reports:  net-linecharts.scm and net-barcharts.scm
>>
>> I renamed those two to have a .old extension on them and GnuCash now
>> starts up without complaining about duplicate report IDs.
>>
> Ah indeed. As you indicated you didn't uninstall first, the old files 
> remained 
> in the installation directory causing the conflict.

Hopefully I remember for the next upgrade.
> The formal way to uninstall is a bit picky. You should run "make uninstall" 
> in 
> your build directory *before* changing the source directory to a newer 
> version 
> (be it a new git checkout or pull, or installing a new release tar ball).
>
> If you installed gnucash in it's own prefix (by adding
> -DCMAKE_INSTALL_PREFIX=xyz to your cmake run), uninstalling would be as easy 
> as deleting this prefix.
>
> But in this case manually removing/renaming the offending files works as 
> well. 
> I would remove/rename the corresponding .go files in gnucash' lib64/gnucash/
> scm/ccache/ directory as well though.

Hmm.  Can't find that path.  Here is what is in /lib64 on my Ubuntu
18.04 box:
drwxr-xr-x  2 root root 4096 May  6 20:28 ./
drwxr-xr-x 26 root root 4096 Jun 12 10:04 ../
lrwxrwxrwx  1 root root   32 Apr 16 13:14 ld-linux-x86-64.so.2 ->
/lib/x86_64-linux-gnu/ld-2.27.so*
lrwxrwxrwx  1 root root   20 May  6 20:28 ld-lsb-x86-64.so.2 ->
ld-linux-x86-64.so.2*
lrwxrwxrwx  1 root root   20 May  6 20:28 ld-lsb-x86-64.so.3 ->
ld-linux-x86-64.so.2*

And here is the location of all lib64 directories (via sudo find / -name
lib64

/usr/src/linux-headers-3.19.0-28/arch/sh/lib64
/usr/src/linux-headers-3.19.0-26/arch/sh/lib64
/usr/src/linux-headers-3.19.0-25/arch/sh/lib64
/usr/src/linux-headers-4.15.0-23/arch/sh/lib64
/usr/src/linux-headers-3.19.0-29/arch/sh/lib64
/usr/src/linux-headers-4.15.0-22/arch/sh/lib64
/usr/src/linux-headers-3.19.0-27/arch/sh/lib64
/usr/src/linux-headers-3.19.0-23/arch/sh/lib64
/usr/src/linux-headers-3.19.0-24/arch/sh/lib64
/usr/src/linux-headers-3.16.0-32/arch/sh/lib64
/lib64
/var/tmp/mkinitramfs_pYKPbh/lib64
/var/tmp/mkinitramfs_edihqS/lib64
/var/tmp/mkinitramfs_JevWJj/lib64
/var/tmp/mkinitramfs_dZ5Hy3/lib64
/var/tmp/mkinitramfs_2s7hMA/lib64
/var/tmp/mkinitramfs_ncQdoR/lib64
/var/tmp/mkinitramfs_fF6uQ0/lib64
/var/tmp/mkinitramfs_pWngoT/lib64
/var/tmp/mkinitramfs_gE5Jr7/lib64
/var/tmp/mkinitramfs_9spxCx/lib64
/var/tmp/mkinitramfs_Qr12to/lib64
/var/tmp/mkinitramfs_FJaQ9o/lib64
/snap/core/4830/lib64
/snap/core/4571/lib64
/snap/core/4650/lib64
/opt/wine-devel/lib64
/opt/sophos-av/lib64
/opt/sophos-av/update/cache/Primary/sav-linux/x86/64/lib64
/opt/epson-inkjet-printer-201208w/lib64
> Geert
>
>

Thanks,
-- Steve
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.

Re: [GNC] GnuCash 3.2 Released

2018-06-29 Thread Geert Janssens
Op vrijdag 29 juni 2018 19:54:04 CEST schreef Stephen M. Butler:
> On 06/29/2018 12:42 AM, Geert Janssens wrote:
> > Op maandag 25 juni 2018 19:42:37 CEST schreef Stephen M. Butler:
> >> Further research:
> >> 
> >> It appears that net-charts.scm is a replacement for two other files in
> >> standard-reports:  net-linecharts.scm and net-barcharts.scm
> >> 
> >> I renamed those two to have a .old extension on them and GnuCash now
> >> starts up without complaining about duplicate report IDs.
> > 
> > Ah indeed. As you indicated you didn't uninstall first, the old files
> > remained in the installation directory causing the conflict.
> 
> Hopefully I remember for the next upgrade.
> 
> > The formal way to uninstall is a bit picky. You should run "make
> > uninstall" in your build directory *before* changing the source directory
> > to a newer version (be it a new git checkout or pull, or installing a new
> > release tar ball).
> > 
> > If you installed gnucash in it's own prefix (by adding
> > -DCMAKE_INSTALL_PREFIX=xyz to your cmake run), uninstalling would be as
> > easy as deleting this prefix.
> > 
> > But in this case manually removing/renaming the offending files works as
> > well. I would remove/rename the corresponding .go files in gnucash'
> > lib64/gnucash/ scm/ccache/ directory as well though.
> 
> Hmm.  Can't find that path.  Here is what is in /lib64 on my Ubuntu
> 18.04 box:

Oh, right. I believe debian and derivates use a different scheme for 64-bit 
applications

Do you have
/usr/lib/x86_64-linux-gnu/gnucash/scm/ccache ?

Geert


___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] GnuCash 3.2 Released

2018-06-29 Thread John Ralls


> On Jun 29, 2018, at 12:42 AM, Geert Janssens  
> wrote:
> 
> Op maandag 25 juni 2018 19:42:37 CEST schreef Stephen M. Butler:
>> Further research:
>> 
>> It appears that net-charts.scm is a replacement for two other files in
>> standard-reports:  net-linecharts.scm and net-barcharts.scm
>> 
>> I renamed those two to have a .old extension on them and GnuCash now
>> starts up without complaining about duplicate report IDs.
>> 
> 
> Ah indeed. As you indicated you didn't uninstall first, the old files 
> remained 
> in the installation directory causing the conflict.
> 
> The formal way to uninstall is a bit picky. You should run "make uninstall" 
> in 
> your build directory *before* changing the source directory to a newer 
> version 
> (be it a new git checkout or pull, or installing a new release tar ball).
> 
> If you installed gnucash in it's own prefix (by adding
> -DCMAKE_INSTALL_PREFIX=xyz to your cmake run), uninstalling would be as easy 
> as deleting this prefix.
> 
> But in this case manually removing/renaming the offending files works as 
> well. 
> I would remove/rename the corresponding .go files in gnucash' lib64/gnucash/
> scm/ccache/ directory as well though.

CMake doesn’t create an uninstall target. To uninstall, use `xargs rm < 
install_manifest.txt` from the build directory. (In Windows CMake writes 
install_manifest.txt with windows paths so you have to use a Powershell window 
and do `get-contents install_manifest.txt | remove-item`).

On a related note, CMake’s clean target seems broken for makefiles but works 
fine for ninja.

Regards,
John Ralls

___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.

Re: [GNC] GnuCash 3.2 Released

2018-06-29 Thread Geert Janssens
Op donderdag 28 juni 2018 22:11:49 CEST schreef Dennis West:
> I'm sure you like to get feedback from someone with absolutely no
> problems at all.
> 
> I was using 2.6.21 on my primary computer and testing 3.1/3.2 on my
> standby testbed (both on Win 10.1803).  I finally decided to take the
> plunge and upgraded my primary computer form 2.6.21 to 3.2.  The
> experience was flawless and now my testbed pc is eagerly awaiting vs 4.0.
> 
> Dennis

Dennis,

That's nice to hear :)

Geert


___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] GnuCash 3.2 Released

2018-06-29 Thread Geert Janssens
Op maandag 25 juni 2018 19:42:37 CEST schreef Stephen M. Butler:
> Further research:
> 
> It appears that net-charts.scm is a replacement for two other files in
> standard-reports:  net-linecharts.scm and net-barcharts.scm
> 
> I renamed those two to have a .old extension on them and GnuCash now
> starts up without complaining about duplicate report IDs.
> 

Ah indeed. As you indicated you didn't uninstall first, the old files remained 
in the installation directory causing the conflict.

The formal way to uninstall is a bit picky. You should run "make uninstall" in 
your build directory *before* changing the source directory to a newer version 
(be it a new git checkout or pull, or installing a new release tar ball).

If you installed gnucash in it's own prefix (by adding
-DCMAKE_INSTALL_PREFIX=xyz to your cmake run), uninstalling would be as easy 
as deleting this prefix.

But in this case manually removing/renaming the offending files works as well. 
I would remove/rename the corresponding .go files in gnucash' lib64/gnucash/
scm/ccache/ directory as well though.

Geert

> 
> Stephen M Butler, PMP, PSM
> stephen.m.butle...@gmail.com
> kg...@arrl.net
> 253-350-0166
> ---
> GnuPG Fingerprint:  8A25 9726 D439 758D D846 E5D4 282A 5477 0385 81D8
> 
> On 06/25/2018 10:20 AM, Stephen M. Butler wrote:
> > Compiled and installed on Ubuntu 18.04.
> > 
> > When starting up it reports several duplicate report IDs.  Should I have
> > uninstalled 3.1 first?  I did these commands (with an empty mybuild):
> > 
> > cd mybuild
> > 
> > cmake ../gnucash-3.2
> > 
> > make
> > 
> > sudo make install
> > 
> > 
> > Stephen M Butler, PMP, PSM
> > stephen.m.butle...@gmail.com
> > kg...@arrl.net
> > 253-350-0166
> > ---
> > GnuPG Fingerprint:  8A25 9726 D439 758D D846 E5D4 282A 5477 0385 81D8
> > 
> > On 06/24/2018 08:40 PM, John Ralls wrote:
> >> The GnuCash development team announces GnuCash 3.2, the second release of
> >> the 3.x stable release series.
> >> 
> >> Changes
> >> 
> >> Between 3.0 and 3.2, the following bugfixes were accomplished:
> >>• Bug 787401 - Test Report System - Report Definition.
> >>• Bug 794617 - Can't compile with -DWITH_GNUCASH=NO due to
> >>scm-gnome-utils.
> >>• Bug 795101 - Scroll Bar in Reconcile Window Floats in and covers 
the
> >>check boxes. • Bug 795247 - datepicker broken in Persian. GnuCash
> >>passes dates as integer y/m/d without using locale-specific formats, 
so
> >>we need to strip out 'E' and 'O' from the format when scanning dates 
or
> >>determining separators in gnc-date. None of '-', 'E', or 'O' are
> >>supported by boost (and '-' causes errors), so strip them out from
> >>formatters in gnc-datetime as well. • Bug 795253 - Have problems 
input
> >>Chinese.
> >>• Bug 795272 - QIF importer causes application crash if action is
> >>invalid.
> >>• Bug 795276 - Invalid date on price stops file from being parsed.
> >>• Bug 795362 - Special variable "i" not parsed in function calls. Due 
to
> >>balance tests with insane random values. • Bug 795471 - Impossible to
> >>Edit Budget Unless Maximized.
> >>• Bug 795519 - Credit card payment after reconciliation.
> >>• Bug 795666 - Backslash '\' in Description field spoils CSV Import
> >>without helpful error message. • Bug 795831 - When read only 
threshold
> >>set, dates are silently changed. Display a message box informing the
> >>user of the change. • Bug 795944 - Cannot store change to Business
> >>Suppliers data.
> >>• Bug 796079 - Repeatable Crash in Tax Report Options.
> >>• Bug 796081 - Tax Schedule Report - An error occurred while running 
the
> >>report. • Bug 796083 - Reconcile Selection Doesn't Work Anymore.
> >>• Bug 796117 - Connecting 3.1 to an existing mysql db drops all data.
> >>Provide a backup recovery function that instead of dropping primaries
> >>and restoring backups merges the primaries and backups. This should
> >>handle a worst-case safe-save failure where the backup tables don't
> >>have a complete set of rows for some reason. • Bug 796256 - Main 
Window
> >>stays hidden when starting after closing main window while minimized. 
•
> >>Bug 796369 - Notes lost or perhaps just not displaying when using
> >>SQLite backend. This bug caused data loss if you saved your SQLite3
> >>database to a different file or database. The problem is that in
> >>SQLite3 (though not in MySQL or PgSQL) the subquery ((SELECT DISTINCT
> >>guid FROM transactions)) (note the double parentheses) returns only 
the
> >>first guid in the subquery's results. Some transactions are loaded by
> >>special queries and those queries are also used to retrieve the
> >>transaction's slots so they weren't affected. • Bug 796398 - Restrict
> >>accelerator keys to valid date range.
> >>• Bug 796409 - Incorrect 

Re: [GNC] GnuCash 3.2 Released

2018-06-28 Thread Dennis West
I'm sure you like to get feedback from someone with absolutely no 
problems at all.


I was using 2.6.21 on my primary computer and testing 3.1/3.2 on my 
standby testbed (both on Win 10.1803).  I finally decided to take the 
plunge and upgraded my primary computer form 2.6.21 to 3.2.  The 
experience was flawless and now my testbed pc is eagerly awaiting vs 4.0.


Dennis


On 6/24/2018 22:40, John Ralls wrote:

The GnuCash development team announces GnuCash 3.2, the second release of the 
3.x stable release series.

Changes

Between 3.0 and 3.2, the following bugfixes were accomplished:

• Bug 787401 - Test Report System - Report Definition.
• Bug 794617 - Can't compile with -DWITH_GNUCASH=NO due to 
scm-gnome-utils.
• Bug 795101 - Scroll Bar in Reconcile Window Floats in and covers the 
check boxes.
• Bug 795247 - datepicker broken in Persian. GnuCash passes dates as 
integer y/m/d without using locale-specific formats, so we need to strip out 
'E' and 'O' from the format when scanning dates or determining separators in 
gnc-date. None of '-', 'E', or 'O' are supported by boost (and '-' causes 
errors), so strip them out from formatters in gnc-datetime as well.
• Bug 795253 - Have problems input Chinese.
• Bug 795272 - QIF importer causes application crash if action is 
invalid.
• Bug 795276 - Invalid date on price stops file from being parsed.
• Bug 795362 - Special variable "i" not parsed in function calls. Due 
to balance tests with insane random values.
• Bug 795471 - Impossible to Edit Budget Unless Maximized.
• Bug 795519 - Credit card payment after reconciliation.
• Bug 795666 - Backslash '\' in Description field spoils CSV Import 
without helpful error message.
• Bug 795831 - When read only threshold set, dates are silently 
changed. Display a message box informing the user of the change.
• Bug 795944 - Cannot store change to Business Suppliers data.
• Bug 796079 - Repeatable Crash in Tax Report Options.
• Bug 796081 - Tax Schedule Report - An error occurred while running 
the report.
• Bug 796083 - Reconcile Selection Doesn't Work Anymore.
• Bug 796117 - Connecting 3.1 to an existing mysql db drops all data. 
Provide a backup recovery function that instead of dropping primaries and 
restoring backups merges the primaries and backups. This should handle a 
worst-case safe-save failure where the backup tables don't have a complete set 
of rows for some reason.
• Bug 796256 - Main Window stays hidden when starting after closing 
main window while minimized.
• Bug 796369 - Notes lost or perhaps just not displaying when using 
SQLite backend. This bug caused data loss if you saved your SQLite3 database to 
a different file or database. The problem is that in SQLite3 (though not in 
MySQL or PgSQL) the subquery ((SELECT DISTINCT guid FROM transactions)) (note 
the double parentheses) returns only the first guid in the subquery's results. 
Some transactions are loaded by special queries and those queries are also used 
to retrieve the transaction's slots so they weren't affected.
• Bug 796398 - Restrict accelerator keys to valid date range.
• Bug 796409 - Incorrect Current Value for Stocks. Missed calculating 
the value in the register summary bar.
• Bug 796423 - Cannot Input Chinese, seems does not work with other IME 
too. Toggles not in view with all rows selected weren't being redrawn.
• Bug 796484 - csv import: iostream error. Unfortunately it turns out 
that we can't use filestreams because they can't take path arguments containing 
Unicode on Windows.
• Bug 796527 - invalid currency on scheduled transactions.
• Don't even check for price/exchange rate on template 
transactions, there's no point.
• Check all split commodities are valid, abort transaction 
creation if not.
• If the template transaction's currency isn't used by any of 
the splits set the new transaction's currency to the first-found currency if 
there is one, otherwise to the first-found commodity.
• Bug 796537 - Transaction Report cannot sort by "num".
• Bug 796586 - QIF import incorrectly converts unicode characters from 
UTF8 encoded file.
• Bug 796595 - QIF Import Select Account button to add a new account is 
labled gnc-account-new but should be New.
• Bug 796600 - stock split cash-in-lieu income/asset labels backwards.
• Bug 796614 - Reconciliation report contains incorrect transactions.
• Bug 796638 - configuration not properly saved for CSV transactions 
import form.
The Following fixes and improvemts were not associated with bug reports:

• Transaction report improvements:
• Performance: Do all filtering ops before sorting.
• Move the options summary before the subtotals table.
• New 

Re: [GNC] GnuCash 3.2 Released

2018-06-25 Thread Stephen M. Butler
Further research:

It appears that net-charts.scm is a replacement for two other files in
standard-reports:  net-linecharts.scm and net-barcharts.scm

I renamed those two to have a .old extension on them and GnuCash now
starts up without complaining about duplicate report IDs.


Stephen M Butler, PMP, PSM
stephen.m.butle...@gmail.com
kg...@arrl.net
253-350-0166
---
GnuPG Fingerprint:  8A25 9726 D439 758D D846 E5D4 282A 5477 0385 81D8

On 06/25/2018 10:20 AM, Stephen M. Butler wrote:
> Compiled and installed on Ubuntu 18.04.
>
> When starting up it reports several duplicate report IDs.  Should I have
> uninstalled 3.1 first?  I did these commands (with an empty mybuild):
>
> cd mybuild
>
> cmake ../gnucash-3.2
>
> make
>
> sudo make install
>
>
> Stephen M Butler, PMP, PSM
> stephen.m.butle...@gmail.com
> kg...@arrl.net
> 253-350-0166
> ---
> GnuPG Fingerprint:  8A25 9726 D439 758D D846 E5D4 282A 5477 0385 81D8
>
> On 06/24/2018 08:40 PM, John Ralls wrote:
>> The GnuCash development team announces GnuCash 3.2, the second release of 
>> the 3.x stable release series.
>>
>> Changes
>>
>> Between 3.0 and 3.2, the following bugfixes were accomplished:
>>
>>  • Bug 787401 - Test Report System - Report Definition.
>>  • Bug 794617 - Can't compile with -DWITH_GNUCASH=NO due to 
>> scm-gnome-utils.
>>  • Bug 795101 - Scroll Bar in Reconcile Window Floats in and covers the 
>> check boxes.
>>  • Bug 795247 - datepicker broken in Persian. GnuCash passes dates as 
>> integer y/m/d without using locale-specific formats, so we need to strip out 
>> 'E' and 'O' from the format when scanning dates or determining separators in 
>> gnc-date. None of '-', 'E', or 'O' are supported by boost (and '-' causes 
>> errors), so strip them out from formatters in gnc-datetime as well.
>>  • Bug 795253 - Have problems input Chinese.
>>  • Bug 795272 - QIF importer causes application crash if action is 
>> invalid.
>>  • Bug 795276 - Invalid date on price stops file from being parsed.
>>  • Bug 795362 - Special variable "i" not parsed in function calls. Due 
>> to balance tests with insane random values.
>>  • Bug 795471 - Impossible to Edit Budget Unless Maximized.
>>  • Bug 795519 - Credit card payment after reconciliation.
>>  • Bug 795666 - Backslash '\' in Description field spoils CSV Import 
>> without helpful error message.
>>  • Bug 795831 - When read only threshold set, dates are silently 
>> changed. Display a message box informing the user of the change.
>>  • Bug 795944 - Cannot store change to Business Suppliers data.
>>  • Bug 796079 - Repeatable Crash in Tax Report Options.
>>  • Bug 796081 - Tax Schedule Report - An error occurred while running 
>> the report.
>>  • Bug 796083 - Reconcile Selection Doesn't Work Anymore.
>>  • Bug 796117 - Connecting 3.1 to an existing mysql db drops all data. 
>> Provide a backup recovery function that instead of dropping primaries and 
>> restoring backups merges the primaries and backups. This should handle a 
>> worst-case safe-save failure where the backup tables don't have a complete 
>> set of rows for some reason.
>>  • Bug 796256 - Main Window stays hidden when starting after closing 
>> main window while minimized.
>>  • Bug 796369 - Notes lost or perhaps just not displaying when using 
>> SQLite backend. This bug caused data loss if you saved your SQLite3 database 
>> to a different file or database. The problem is that in SQLite3 (though not 
>> in MySQL or PgSQL) the subquery ((SELECT DISTINCT guid FROM transactions)) 
>> (note the double parentheses) returns only the first guid in the subquery's 
>> results. Some transactions are loaded by special queries and those queries 
>> are also used to retrieve the transaction's slots so they weren't affected.
>>  • Bug 796398 - Restrict accelerator keys to valid date range.
>>  • Bug 796409 - Incorrect Current Value for Stocks. Missed calculating 
>> the value in the register summary bar.
>>  • Bug 796423 - Cannot Input Chinese, seems does not work with other IME 
>> too. Toggles not in view with all rows selected weren't being redrawn.
>>  • Bug 796484 - csv import: iostream error. Unfortunately it turns out 
>> that we can't use filestreams because they can't take path arguments 
>> containing Unicode on Windows.
>>  • Bug 796527 - invalid currency on scheduled transactions.
>>  • Don't even check for price/exchange rate on template 
>> transactions, there's no point.
>>  • Check all split commodities are valid, abort transaction 
>> creation if not.
>>  • If the template transaction's currency isn't used by any of 
>> the splits set the new transaction's currency to the first-found currency if 
>> there is one, otherwise to the first-found commodity.
>>  • Bug 796537 - Transaction Report cannot sort by "num".
>> 

Re: [GNC] GnuCash 3.2 Released

2018-06-25 Thread Stephen M. Butler
Compiled and installed on Ubuntu 18.04.

When starting up it reports several duplicate report IDs.  Should I have
uninstalled 3.1 first?  I did these commands (with an empty mybuild):

cd mybuild

cmake ../gnucash-3.2

make

sudo make install


Stephen M Butler, PMP, PSM
stephen.m.butle...@gmail.com
kg...@arrl.net
253-350-0166
---
GnuPG Fingerprint:  8A25 9726 D439 758D D846 E5D4 282A 5477 0385 81D8

On 06/24/2018 08:40 PM, John Ralls wrote:
> The GnuCash development team announces GnuCash 3.2, the second release of the 
> 3.x stable release series.
>
> Changes
>
> Between 3.0 and 3.2, the following bugfixes were accomplished:
>
>   • Bug 787401 - Test Report System - Report Definition.
>   • Bug 794617 - Can't compile with -DWITH_GNUCASH=NO due to 
> scm-gnome-utils.
>   • Bug 795101 - Scroll Bar in Reconcile Window Floats in and covers the 
> check boxes.
>   • Bug 795247 - datepicker broken in Persian. GnuCash passes dates as 
> integer y/m/d without using locale-specific formats, so we need to strip out 
> 'E' and 'O' from the format when scanning dates or determining separators in 
> gnc-date. None of '-', 'E', or 'O' are supported by boost (and '-' causes 
> errors), so strip them out from formatters in gnc-datetime as well.
>   • Bug 795253 - Have problems input Chinese.
>   • Bug 795272 - QIF importer causes application crash if action is 
> invalid.
>   • Bug 795276 - Invalid date on price stops file from being parsed.
>   • Bug 795362 - Special variable "i" not parsed in function calls. Due 
> to balance tests with insane random values.
>   • Bug 795471 - Impossible to Edit Budget Unless Maximized.
>   • Bug 795519 - Credit card payment after reconciliation.
>   • Bug 795666 - Backslash '\' in Description field spoils CSV Import 
> without helpful error message.
>   • Bug 795831 - When read only threshold set, dates are silently 
> changed. Display a message box informing the user of the change.
>   • Bug 795944 - Cannot store change to Business Suppliers data.
>   • Bug 796079 - Repeatable Crash in Tax Report Options.
>   • Bug 796081 - Tax Schedule Report - An error occurred while running 
> the report.
>   • Bug 796083 - Reconcile Selection Doesn't Work Anymore.
>   • Bug 796117 - Connecting 3.1 to an existing mysql db drops all data. 
> Provide a backup recovery function that instead of dropping primaries and 
> restoring backups merges the primaries and backups. This should handle a 
> worst-case safe-save failure where the backup tables don't have a complete 
> set of rows for some reason.
>   • Bug 796256 - Main Window stays hidden when starting after closing 
> main window while minimized.
>   • Bug 796369 - Notes lost or perhaps just not displaying when using 
> SQLite backend. This bug caused data loss if you saved your SQLite3 database 
> to a different file or database. The problem is that in SQLite3 (though not 
> in MySQL or PgSQL) the subquery ((SELECT DISTINCT guid FROM transactions)) 
> (note the double parentheses) returns only the first guid in the subquery's 
> results. Some transactions are loaded by special queries and those queries 
> are also used to retrieve the transaction's slots so they weren't affected.
>   • Bug 796398 - Restrict accelerator keys to valid date range.
>   • Bug 796409 - Incorrect Current Value for Stocks. Missed calculating 
> the value in the register summary bar.
>   • Bug 796423 - Cannot Input Chinese, seems does not work with other IME 
> too. Toggles not in view with all rows selected weren't being redrawn.
>   • Bug 796484 - csv import: iostream error. Unfortunately it turns out 
> that we can't use filestreams because they can't take path arguments 
> containing Unicode on Windows.
>   • Bug 796527 - invalid currency on scheduled transactions.
>   • Don't even check for price/exchange rate on template 
> transactions, there's no point.
>   • Check all split commodities are valid, abort transaction 
> creation if not.
>   • If the template transaction's currency isn't used by any of 
> the splits set the new transaction's currency to the first-found currency if 
> there is one, otherwise to the first-found commodity.
>   • Bug 796537 - Transaction Report cannot sort by "num".
>   • Bug 796586 - QIF import incorrectly converts unicode characters from 
> UTF8 encoded file.
>   • Bug 796595 - QIF Import Select Account button to add a new account is 
> labled gnc-account-new but should be New.
>   • Bug 796600 - stock split cash-in-lieu income/asset labels backwards.
>   • Bug 796614 - Reconciliation report contains incorrect transactions.
>   • Bug 796638 - configuration not properly saved for CSV transactions 
> import form.
> The Following fixes and improvemts were not associated with bug reports:
>
>   • Transaction report improvements:
>   

[GNC] GnuCash 3.2 Released

2018-06-24 Thread John Ralls
The GnuCash development team announces GnuCash 3.2, the second release of the 
3.x stable release series.

Changes

Between 3.0 and 3.2, the following bugfixes were accomplished:

• Bug 787401 - Test Report System - Report Definition.
• Bug 794617 - Can't compile with -DWITH_GNUCASH=NO due to 
scm-gnome-utils.
• Bug 795101 - Scroll Bar in Reconcile Window Floats in and covers the 
check boxes.
• Bug 795247 - datepicker broken in Persian. GnuCash passes dates as 
integer y/m/d without using locale-specific formats, so we need to strip out 
'E' and 'O' from the format when scanning dates or determining separators in 
gnc-date. None of '-', 'E', or 'O' are supported by boost (and '-' causes 
errors), so strip them out from formatters in gnc-datetime as well.
• Bug 795253 - Have problems input Chinese.
• Bug 795272 - QIF importer causes application crash if action is 
invalid.
• Bug 795276 - Invalid date on price stops file from being parsed.
• Bug 795362 - Special variable "i" not parsed in function calls. Due 
to balance tests with insane random values.
• Bug 795471 - Impossible to Edit Budget Unless Maximized.
• Bug 795519 - Credit card payment after reconciliation.
• Bug 795666 - Backslash '\' in Description field spoils CSV Import 
without helpful error message.
• Bug 795831 - When read only threshold set, dates are silently 
changed. Display a message box informing the user of the change.
• Bug 795944 - Cannot store change to Business Suppliers data.
• Bug 796079 - Repeatable Crash in Tax Report Options.
• Bug 796081 - Tax Schedule Report - An error occurred while running 
the report.
• Bug 796083 - Reconcile Selection Doesn't Work Anymore.
• Bug 796117 - Connecting 3.1 to an existing mysql db drops all data. 
Provide a backup recovery function that instead of dropping primaries and 
restoring backups merges the primaries and backups. This should handle a 
worst-case safe-save failure where the backup tables don't have a complete set 
of rows for some reason.
• Bug 796256 - Main Window stays hidden when starting after closing 
main window while minimized.
• Bug 796369 - Notes lost or perhaps just not displaying when using 
SQLite backend. This bug caused data loss if you saved your SQLite3 database to 
a different file or database. The problem is that in SQLite3 (though not in 
MySQL or PgSQL) the subquery ((SELECT DISTINCT guid FROM transactions)) (note 
the double parentheses) returns only the first guid in the subquery's results. 
Some transactions are loaded by special queries and those queries are also used 
to retrieve the transaction's slots so they weren't affected.
• Bug 796398 - Restrict accelerator keys to valid date range.
• Bug 796409 - Incorrect Current Value for Stocks. Missed calculating 
the value in the register summary bar.
• Bug 796423 - Cannot Input Chinese, seems does not work with other IME 
too. Toggles not in view with all rows selected weren't being redrawn.
• Bug 796484 - csv import: iostream error. Unfortunately it turns out 
that we can't use filestreams because they can't take path arguments containing 
Unicode on Windows.
• Bug 796527 - invalid currency on scheduled transactions.
• Don't even check for price/exchange rate on template 
transactions, there's no point.
• Check all split commodities are valid, abort transaction 
creation if not.
• If the template transaction's currency isn't used by any of 
the splits set the new transaction's currency to the first-found currency if 
there is one, otherwise to the first-found commodity.
• Bug 796537 - Transaction Report cannot sort by "num".
• Bug 796586 - QIF import incorrectly converts unicode characters from 
UTF8 encoded file.
• Bug 796595 - QIF Import Select Account button to add a new account is 
labled gnc-account-new but should be New.
• Bug 796600 - stock split cash-in-lieu income/asset labels backwards.
• Bug 796614 - Reconciliation report contains incorrect transactions.
• Bug 796638 - configuration not properly saved for CSV transactions 
import form.
The Following fixes and improvemts were not associated with bug reports:

• Transaction report improvements:
• Performance: Do all filtering ops before sorting.
• Move the options summary before the subtotals table.
• New unit tests
• Enable computing averages in subtotal grid.
• Generate the subtotal grid only if the primary sort key 
enables subtotals.
• Fix subtotal grid to support multiple commodities.
• New filters.
• Much cleaning and refactoring of the internals.
• Cache the num-split-action book option to avoid thousands of KVP 
queries