Migrate from Moneydance to Gnucash

2017-10-16 Thread Roger Miskowicz
Is there a recommended procedure for migrating Moneydance to GnuCash?
___
gnucash-user mailing list
gnucash-user@gnucash.org
https://lists.gnucash.org/mailman/listinfo/gnucash-user
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] Build on 18.04

2018-07-01 Thread Roger Miskowicz
Great point Stephen, I had forgotten that I had to remove all files from
the build directory first.


On Sun, Jul 1, 2018 at 6:36 PM Stephen M. Butler  wrote:

> On 07/01/2018 09:36 AM, Roger Miskowicz wrote:
> > I have GC3.2 on two 16.04 linux systems and in one build I have
> > install_manifest.txt which includes the 'icons' directory and in the
> other
> > the install_manifest.txt does not exist (in this one the icons files were
> > installed months earlier so not part of my latest install).
> >
> >
> > I just rebuilt GC3.2 on 16.04 using:
> >
> > mkdir build
> > cd build
> >
> > cmake -D WITH_AQBANKING=OFF -D WITH_OFX=OFF ../gnucash
> > cmake ..
> >
> > make
> >
> > and the install_manifest.txt include the 'icons' directory.
> >
> >
> > Hope this helps, let me know if you would like to try something else.
> >
> > Roger
>
> I am on Ubuntu 18.04 and build 3.2 from the tar.gz download.
>
> I looked in my source and build directories and found:
>
> ./GnuCash/gnucash-3.1/data/pixmaps/hicolor/16x16/actions/gnc-account-report.png
>
> ./GnuCash/gnucash-3.1/data/pixmaps/hicolor/24x24/actions/gnc-account-report.png
>
> ./GnuCash/mybuild/share/gnucash/icons/hicolor/16x16/actions/gnc-account-report.png
>
> ./GnuCash/mybuild/share/gnucash/icons/hicolor/24x24/actions/gnc-account-report.png/usr/local/share/gnucash/icons
>
> ./GnuCash/gnucash-3.2/data/pixmaps/hicolor/16x16/actions/gnc-account-report.png
>
> ./GnuCash/gnucash-3.2/data/pixmaps/hicolor/24x24/actions/gnc-account-report.png
>
>
> My "mybuild" directory was cleaned before building 3.2 as I shared it
> with 3.1.  From my ./GnuCash folder:
>
> cd mybuild
> cmake ../gnucash-3.2
> make
> sudo make install
>
> The icons in the mybuild folder were copied to
> /usr/local/share/gnucash/icons
>
>
>
> >
> > On Sun, Jul 1, 2018 at 11:52 AM, Colin Law  wrote:
> >
> >> On 1 July 2018 at 16:36, Roger Miskowicz  wrote:
> >>
> >>> in 16.04 and GC3.2 using:
> >>>
> >>> $ locate gnc-account-report
> >>> /usr/local/share/gnucash/icons
> >>> I found:
> >>>
> >>> /usr/local/share/gnucash/icons/hicolor/16x16/actions/gnc-
> >>> account-report.png
> >>> /usr/local/share/gnucash/icons/hicolor/24x24/actions/gnc-
> >>> account-report.png
> >>>
> >>> Are these files found in 18.04?
> >>>
> >> No, in /usr/local/share/gnucash there is no icons folder.   I have
> >> accounts  gtkbuilder  make-prefs-migration-script.xsl  pixmaps
> >> tip_of_the_day.list
> >> checksjqplot  migratable-prefs.xml scm  ui
> >>
> >> The only png file is pixmaps/gnucash_splash.png
> >>
> >> There is no reference to /usr/local/share/gnucash/icons in the output of
> >> sudo make install.
> >>
> >> Colin
> >>
> >> Colin
> >> /usr/local/share/gnucash/icons
> >>
> >>> On Sun, Jul 1, 2018 at 10:55 AM, Colin Law  wrote:
> >>>
> >>>> In the trace file I see around a dozen lines similar to
> >>>>
> >>>> * 13:29:29  WARN  [gnc_load_app_icons()] No icon named
> >>>> 'gnc-account' found. Some gui elements may be missing their icons
> >>>> * 13:29:29  WARN  [gnc_load_app_icons()] No icon named
> >>>> 'gnc-account-report' found. Some gui elements may be missing their
> icons
> >>>>
> >>>> Colin
> >>>>
> >>>>
> >>>> On 1 July 2018 at 13:39, Colin Law  wrote:
> >>>>
> >>>>> Actually I see there are more icons missing, such as the Split button
> >>>> icon
> >>>>> in the toolbar.  It seems that the missing files are the png files
> from
> >>>>> data/pixmaps/hicolor/?/actions.  Are these supposed to be copied
> >>>>> somewhere by make install?
> >>>>>
> >>>>> Colin
> >>>>>
> >>>>> On 1 July 2018 at 11:21, Colin Law  wrote:
> >>>>>
> >>>>>> Following the instructions for building GC 3.x on the wiki [1] has
> >>>>>> been accomplished on Ubuntu 18.04 with little difficulty, so many
> >>>>>> thanks to the contributors to the wiki.
> >>>>>>
> >>>>>> Just one small issue so far, the icons to the left of the account
> >>>>>> names are all showing as

Re: [GNC] Build on 18.04

2018-07-02 Thread Roger Miskowicz
I renamed the icon folder and executed sudo make install and the icon
folder was recreated.

Roger


On Mon, Jul 2, 2018 at 9:05 AM Colin Law  wrote:

> Well, this line in build/data/pixmaps/cmake_install.cmake
>
> file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/gnucash/icons"
> TYPE DIRECTORY FILES "/home/me/apps/gnucash-3.2/data/pixmaps/hicolor" REGEX
> ".*/apps.*" EXCLUDE)
>
> Is supposed to copy files from gnucash-3.2/data/pixmaps/hicolour/* to
> /usr/local/share/gnucash/icons excluding the pattern .*/apps.* so it should
> copy, for example, hicolor/16x16/actions/gnc-account.png but should exclude
> hicolor/16x16/apps/* but it doesn't work on my system, it excludes
> everything.  If I remove the REGEX  ".." EXCLUDE then it copies them all,
> including those in the apps folder.  I can't see why it doesn't work though.
>
> @Roger could you remove or rename /usr/local/share/gnucash/icons and run
> sudo make install and see if it puts back all the icons such as
> hicolor/actions/gnc-account.png.
>
> If it doesn't then there is a problem with the above cmake instruction, if
> it does then for some reason that does not work on my cmake.
>
> For reference my cmake is 3.10.2-1ubuntu2
>
> Colin
>
> On 2 July 2018 at 08:37, Colin Law  wrote:
>
>> @John
>>
>> I see in src  data/pixmaps/CMakeLists.txt the list of icons. I don't know
>> about the cmake system though. What is supposed to happen to those files?
>> What can I do to work out where the problem is?
>>
>> Colin
>>
>> On 1 July 2018 at 18:58, John Ralls  wrote:
>>
>>> data/pixmaps/CMakeLists.txt. There aren't any conditionals.
>>>
>>> Does your build directory have share/gnucash/icons?
>>>
>>> Regards,
>>> John Ralls
>>>
>>>
>>> > On Jul 1, 2018, at 10:33 AM, Colin Law  wrote:
>>> >
>>> > I have just rebuilt (on 18.04) using the exact same commands and my
>>> > manifest does not include the icons.  Do you know what is supposed to
>>> tell
>>> > the system to install them?
>>> >
>>> > Colin
>>> >
>>> > On 1 July 2018 at 17:36, Roger Miskowicz  wrote:
>>> >
>>> >> I have GC3.2 on two 16.04 linux systems and in one build I have
>>> >> install_manifest.txt which includes the 'icons' directory and in the
>>> other
>>> >> the install_manifest.txt does not exist (in this one the icons files
>>> were
>>> >> installed months earlier so not part of my latest install).
>>> >>
>>> >>
>>> >> I just rebuilt GC3.2 on 16.04 using:
>>> >>
>>> >> mkdir build
>>> >> cd build
>>> >>
>>> >> cmake -D WITH_AQBANKING=OFF -D WITH_OFX=OFF ../gnucash
>>> >> cmake ..
>>> >>
>>> >> make
>>> >>
>>> >> and the install_manifest.txt include the 'icons' directory.
>>> >>
>>> >>
>>> >> Hope this helps, let me know if you would like to try something else.
>>> >>
>>> >> Roger
>>> >>
>>> >>
>>> >> On Sun, Jul 1, 2018 at 11:52 AM, Colin Law  wrote:
>>> >>
>>> >>> On 1 July 2018 at 16:36, Roger Miskowicz  wrote:
>>> >>>
>>> >>>> in 16.04 and GC3.2 using:
>>> >>>>
>>> >>>> $ locate gnc-account-report
>>> >>>>
>>> >>>> I found:
>>> >>>>
>>> >>>> /usr/local/share/gnucash/icons/hicolor/16x16/actions/gnc-acc
>>> >>>> ount-report.png
>>> >>>> /usr/local/share/gnucash/icons/hicolor/24x24/actions/gnc-acc
>>> >>>> ount-report.png
>>> >>>>
>>> >>>> Are these files found in 18.04?
>>> >>>>
>>> >>>
>>> >>> No, in /usr/local/share/gnucash there is no icons folder.   I have
>>> >>> accounts  gtkbuilder  make-prefs-migration-script.xsl  pixmaps
>>> >>> tip_of_the_day.list
>>> >>> checksjqplot  migratable-prefs.xml scm  ui
>>> >>>
>>> >>> The only png file is pixmaps/gnucash_splash.png
>>> >>>
>>> >>> There is no reference to /usr/local/share/gnucash/icons in the
>>> output of
>>> >>> sudo make install.
>>&g

Re: [GNC] Build on 18.04

2018-07-02 Thread Roger Miskowicz
Yes, e.g.
$ ls -l /usr/local/share/gnucash/icons/hicolor/16x16/actions
total 72K
-rw-r--r-- 1 root root 540 Jun 26 11:17 gnc-account-delete.png
-rw-r--r-- 1 root root 416 Jun 26 11:17 gnc-account-edit.png
-rw-r--r-- 1 root root 460 Jun 26 11:17 gnc-account-new.png
-rw-r--r-- 1 root root 540 Jun 26 11:17 gnc-account-open.png
-rw-r--r-- 1 root root 417 Jun 26 11:17 gnc-account-report.png
-rw-r--r-- 1 root root 334 Jun 26 11:17 gnc-account.png
-rw-r--r-- 1 root root 549 Jun 26 11:17 gnc-gnome-pdf.png

Note: I will be away for the rest of the day,

Roger


On Mon, Jul 2, 2018 at 9:28 AM Colin Law  wrote:

> On 2 July 2018 at 14:26, Roger Miskowicz  wrote:
>
>> I renamed the icon folder and executed sudo make install and the icon
>> folder was recreated.
>>
>
> With all the icons in it?
>
> Colin
>
>
>>
>> Roger
>>
>>
>> On Mon, Jul 2, 2018 at 9:05 AM Colin Law  wrote:
>>
>>> Well, this line in build/data/pixmaps/cmake_install.cmake
>>>
>>> file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/gnucash/icons"
>>> TYPE DIRECTORY FILES "/home/me/apps/gnucash-3.2/data/pixmaps/hicolor" REGEX
>>> ".*/apps.*" EXCLUDE)
>>>
>>> Is supposed to copy files from gnucash-3.2/data/pixmaps/hicolour/* to
>>> /usr/local/share/gnucash/icons excluding the pattern .*/apps.* so it should
>>> copy, for example, hicolor/16x16/actions/gnc-account.png but should exclude
>>> hicolor/16x16/apps/* but it doesn't work on my system, it excludes
>>> everything.  If I remove the REGEX  ".." EXCLUDE then it copies them all,
>>> including those in the apps folder.  I can't see why it doesn't work though.
>>>
>>> @Roger could you remove or rename /usr/local/share/gnucash/icons and run
>>> sudo make install and see if it puts back all the icons such as
>>> hicolor/actions/gnc-account.png.
>>>
>>> If it doesn't then there is a problem with the above cmake instruction,
>>> if it does then for some reason that does not work on my cmake.
>>>
>>> For reference my cmake is 3.10.2-1ubuntu2
>>>
>>> Colin
>>>
>>> On 2 July 2018 at 08:37, Colin Law  wrote:
>>>
>>>> @John
>>>>
>>>> I see in src  data/pixmaps/CMakeLists.txt the list of icons. I don't
>>>> know about the cmake system though. What is supposed to happen to those
>>>> files?  What can I do to work out where the problem is?
>>>>
>>>> Colin
>>>>
>>>> On 1 July 2018 at 18:58, John Ralls  wrote:
>>>>
>>>>> data/pixmaps/CMakeLists.txt. There aren't any conditionals.
>>>>>
>>>>> Does your build directory have share/gnucash/icons?
>>>>>
>>>>> Regards,
>>>>> John Ralls
>>>>>
>>>>>
>>>>> > On Jul 1, 2018, at 10:33 AM, Colin Law  wrote:
>>>>> >
>>>>> > I have just rebuilt (on 18.04) using the exact same commands and my
>>>>> > manifest does not include the icons.  Do you know what is supposed
>>>>> to tell
>>>>> > the system to install them?
>>>>> >
>>>>> > Colin
>>>>> >
>>>>> > On 1 July 2018 at 17:36, Roger Miskowicz  wrote:
>>>>> >
>>>>> >> I have GC3.2 on two 16.04 linux systems and in one build I have
>>>>> >> install_manifest.txt which includes the 'icons' directory and in
>>>>> the other
>>>>> >> the install_manifest.txt does not exist (in this one the icons
>>>>> files were
>>>>> >> installed months earlier so not part of my latest install).
>>>>> >>
>>>>> >>
>>>>> >> I just rebuilt GC3.2 on 16.04 using:
>>>>> >>
>>>>> >> mkdir build
>>>>> >> cd build
>>>>> >>
>>>>> >> cmake -D WITH_AQBANKING=OFF -D WITH_OFX=OFF ../gnucash
>>>>> >> cmake ..
>>>>> >>
>>>>> >> make
>>>>> >>
>>>>> >> and the install_manifest.txt include the 'icons' directory.
>>>>> >>
>>>>> >>
>>>>> >> Hope this helps, let me know if you would like to try something
>>>>> else.
>>>>> >>
>>>>> >> Roger
>>>>> >>
>>>>> >>
&g

Re: [GNC] Change Reconcile Starting Balance

2018-06-30 Thread Roger Miskowicz
Not sure what you mean but here is the dialog box.




Because there is a difference I have to cancel and start again.

Is there any that I can force all transactions in the account to be
unreconciled?

On Sat, Jun 30, 2018 at 10:08 AM, Colin Law  wrote:

> What did you see at the start of the reconcile?  You can cancel the
> reconcile and start again.
>
> Colin
>
> On 30 June 2018 at 15:00, Roger Miskowicz  wrote:
> > At the beginning of the account I did:
> >
> > 2017-12-31  Opening Balance:  1,691.19
> >
> > Then with no other transactions I Reconciled with end date 2018-01-01
> which
> > yielded the following result:
> >
> >  Statement Date: 2018-01-01
> > Starting Balance:1,798.89
> >   Ending Balance:   1,691.19
> > Reconciled Balance:   1,798.89
> >   Difference: -107.70
> >
> > With only one entry shouldn't all the balances be identical?
> >
> > Anyway, in this case I would like to be able to set the starting balance
> to
> > 1,691.19 then I believe the reconcile might work as I expect?
> >
> > Am I misunderstanding something?
> >
> > On Sat, Jun 30, 2018 at 8:55 AM, D  wrote:
> >
> >> Only manually, a transaction at a time.
> >>
> >> What happens if you ignore the opening balance, enter the correct
> closing
> >> balance, and reconcile then?
> >>
> >> Often, if there's an inconsistency in the opening balance, you can
> proceed
> >> with reconciling, mark your current transactions and any earlier ones
> that
> >> were missed before (such as your opening balance transaction, say), and
> >> they balance out.
> >>
> >> David
> >>
> >> On June 30, 2018, at 8:23 AM, Roger Miskowicz 
> wrote:
> >>
> >> Thanks Colin.
> >>
> >> Is there anyway I can clear all reconcilation of the the account and
> start
> >> again from scratch?
> >>
> >> Roger
> >>
> >> On Sat, Jun 30, 2018 at 8:15 AM, Colin Law  wrote:
> >>
> >> > The starting balance in the reconcile start dialog will be the nett
> >> > balance of all reconciled transactions so far. Is this the first time
> >> > you have reconciled it?  If not then it should be the same as the
> >> > ending balance the last time you reconciled, unless you have editted a
> >> > reconciled transaction.
> >> >
> >> > Colin
> >> >
> >> > On 30 June 2018 at 13:08, Roger Miskowicz  wrote:
> >> > > I am using GC Version 3.2 and trying to reconcile my Credit Card
> >> Account
> >> > > which I started at the beginning of the year with an opening
> balance.
> >> > >
> >> > > I would like to reconcile the account from the opening balance but I
> >> > don't
> >> > > know how to set the 'starting balance' which happens to be some
> number
> >> > that
> >> > > doesn't seem relevant.
> >> > >
> >> > > Can the 'starting balance' in 'reconcile' be manuallly set, and if
> so,
> >> > how?
> >> > > ___
> >> > > 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.

[GNC] Change Reconcile Starting Balance

2018-06-30 Thread Roger Miskowicz
I am using GC Version 3.2 and trying to reconcile my Credit Card Account
which I started at the beginning of the year with an opening balance.

I would like to reconcile the account from the opening balance but I don't
know how to set the 'starting balance' which happens to be some number that
doesn't seem relevant.

Can the 'starting balance' in 'reconcile' be manuallly set, and if so, how?
___
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] Change Reconcile Starting Balance

2018-06-30 Thread Roger Miskowicz
Thanks Colin.

Is there anyway I can clear all reconcilation of the the account and start
again from scratch?

Roger

On Sat, Jun 30, 2018 at 8:15 AM, Colin Law  wrote:

> The starting balance in the reconcile start dialog will be the nett
> balance of all reconciled transactions so far. Is this the first time
> you have reconciled it?  If not then it should be the same as the
> ending balance the last time you reconciled, unless you have editted a
> reconciled transaction.
>
> Colin
>
> On 30 June 2018 at 13:08, Roger Miskowicz  wrote:
> > I am using GC Version 3.2 and trying to reconcile my Credit Card Account
> > which I started at the beginning of the year with an opening balance.
> >
> > I would like to reconcile the account from the opening balance but I
> don't
> > know how to set the 'starting balance' which happens to be some number
> that
> > doesn't seem relevant.
> >
> > Can the 'starting balance' in 'reconcile' be manuallly set, and if so,
> how?
> > ___
> > 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] Change Reconcile Starting Balance

2018-06-30 Thread Roger Miskowicz
At the beginning of the account I did:

2017-12-31  Opening Balance:  1,691.19

Then with no other transactions I Reconciled with end date 2018-01-01 which
yielded the following result:

 Statement Date: 2018-01-01
Starting Balance:1,798.89
  Ending Balance:   1,691.19
Reconciled Balance:   1,798.89
  Difference: -107.70

With only one entry shouldn't all the balances be identical?

Anyway, in this case I would like to be able to set the starting balance to
1,691.19 then I believe the reconcile might work as I expect?

Am I misunderstanding something?

On Sat, Jun 30, 2018 at 8:55 AM, D  wrote:

> Only manually, a transaction at a time.
>
> What happens if you ignore the opening balance, enter the correct closing
> balance, and reconcile then?
>
> Often, if there's an inconsistency in the opening balance, you can proceed
> with reconciling, mark your current transactions and any earlier ones that
> were missed before (such as your opening balance transaction, say), and
> they balance out.
>
> David
>
> On June 30, 2018, at 8:23 AM, Roger Miskowicz  wrote:
>
> Thanks Colin.
>
> Is there anyway I can clear all reconcilation of the the account and start
> again from scratch?
>
> Roger
>
> On Sat, Jun 30, 2018 at 8:15 AM, Colin Law  wrote:
>
> > The starting balance in the reconcile start dialog will be the nett
> > balance of all reconciled transactions so far. Is this the first time
> > you have reconciled it?  If not then it should be the same as the
> > ending balance the last time you reconciled, unless you have editted a
> > reconciled transaction.
> >
> > Colin
> >
> > On 30 June 2018 at 13:08, Roger Miskowicz  wrote:
> > > I am using GC Version 3.2 and trying to reconcile my Credit Card
> Account
> > > which I started at the beginning of the year with an opening balance.
> > >
> > > I would like to reconcile the account from the opening balance but I
> > don't
> > > know how to set the 'starting balance' which happens to be some number
> > that
> > > doesn't seem relevant.
> > >
> > > Can the 'starting balance' in 'reconcile' be manuallly set, and if so,
> > how?
> > > ___
> > > 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] Build on 18.04

2018-07-01 Thread Roger Miskowicz
I have GC3.2 on two 16.04 linux systems and in one build I have
install_manifest.txt which includes the 'icons' directory and in the other
the install_manifest.txt does not exist (in this one the icons files were
installed months earlier so not part of my latest install).


I just rebuilt GC3.2 on 16.04 using:

mkdir build
cd build

cmake -D WITH_AQBANKING=OFF -D WITH_OFX=OFF ../gnucash
cmake ..

make

and the install_manifest.txt include the 'icons' directory.


Hope this helps, let me know if you would like to try something else.

Roger


On Sun, Jul 1, 2018 at 11:52 AM, Colin Law  wrote:

> On 1 July 2018 at 16:36, Roger Miskowicz  wrote:
>
>> in 16.04 and GC3.2 using:
>>
>> $ locate gnc-account-report
>>
>> I found:
>>
>> /usr/local/share/gnucash/icons/hicolor/16x16/actions/gnc-
>> account-report.png
>> /usr/local/share/gnucash/icons/hicolor/24x24/actions/gnc-
>> account-report.png
>>
>> Are these files found in 18.04?
>>
>
> No, in /usr/local/share/gnucash there is no icons folder.   I have
> accounts  gtkbuilder  make-prefs-migration-script.xsl  pixmaps
> tip_of_the_day.list
> checksjqplot  migratable-prefs.xml scm  ui
>
> The only png file is pixmaps/gnucash_splash.png
>
> There is no reference to /usr/local/share/gnucash/icons in the output of
> sudo make install.
>
> Colin
>
> Colin
>
>
>>
>> On Sun, Jul 1, 2018 at 10:55 AM, Colin Law  wrote:
>>
>>> In the trace file I see around a dozen lines similar to
>>>
>>> * 13:29:29  WARN  [gnc_load_app_icons()] No icon named
>>> 'gnc-account' found. Some gui elements may be missing their icons
>>> * 13:29:29  WARN  [gnc_load_app_icons()] No icon named
>>> 'gnc-account-report' found. Some gui elements may be missing their icons
>>>
>>> Colin
>>>
>>>
>>> On 1 July 2018 at 13:39, Colin Law  wrote:
>>>
>>> > Actually I see there are more icons missing, such as the Split button
>>> icon
>>> > in the toolbar.  It seems that the missing files are the png files from
>>> > data/pixmaps/hicolor/?/actions.  Are these supposed to be copied
>>> > somewhere by make install?
>>> >
>>> > Colin
>>> >
>>> > On 1 July 2018 at 11:21, Colin Law  wrote:
>>> >
>>> >> Following the instructions for building GC 3.x on the wiki [1] has
>>> >> been accomplished on Ubuntu 18.04 with little difficulty, so many
>>> >> thanks to the contributors to the wiki.
>>> >>
>>> >> Just one small issue so far, the icons to the left of the account
>>> >> names are all showing as a little no entry sign, which I guess means
>>> >> the icon is missing.  Does that mean I have missed something or is
>>> >> something missing from the build?
>>> >>
>>> >> Colin
>>> >>
>>> >>
>>> >> [1] https://wiki.gnucash.org/wiki/BuildUbuntu16.04
>>> >>
>>> >
>>> >
>>> ___
>>> 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] Build on 18.04

2018-07-01 Thread Roger Miskowicz
in 16.04 and GC3.2 using:

$ locate gnc-account-report

I found:

/usr/local/share/gnucash/icons/hicolor/16x16/actions/gnc-account-report.png
/usr/local/share/gnucash/icons/hicolor/24x24/actions/gnc-account-report.png

Are these files found in 18.04?

On Sun, Jul 1, 2018 at 10:55 AM, Colin Law  wrote:

> In the trace file I see around a dozen lines similar to
>
> * 13:29:29  WARN  [gnc_load_app_icons()] No icon named
> 'gnc-account' found. Some gui elements may be missing their icons
> * 13:29:29  WARN  [gnc_load_app_icons()] No icon named
> 'gnc-account-report' found. Some gui elements may be missing their icons
>
> Colin
>
>
> On 1 July 2018 at 13:39, Colin Law  wrote:
>
> > Actually I see there are more icons missing, such as the Split button
> icon
> > in the toolbar.  It seems that the missing files are the png files from
> > data/pixmaps/hicolor/?/actions.  Are these supposed to be copied
> > somewhere by make install?
> >
> > Colin
> >
> > On 1 July 2018 at 11:21, Colin Law  wrote:
> >
> >> Following the instructions for building GC 3.x on the wiki [1] has
> >> been accomplished on Ubuntu 18.04 with little difficulty, so many
> >> thanks to the contributors to the wiki.
> >>
> >> Just one small issue so far, the icons to the left of the account
> >> names are all showing as a little no entry sign, which I guess means
> >> the icon is missing.  Does that mean I have missed something or is
> >> something missing from the build?
> >>
> >> Colin
> >>
> >>
> >> [1] https://wiki.gnucash.org/wiki/BuildUbuntu16.04
> >>
> >
> >
> ___
> 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] Build on 18.04

2018-07-01 Thread Roger Miskowicz
Hi Colin,

No idea, but from the 'build' directory I did:

$  grep -r "gnucash/icons" *
to get:

data/pixmaps/cmake_install.cmake:  file(INSTALL DESTINATION
"${CMAKE_INSTALL_PREFIX}/share/gnucash/icons" TYPE DIRECTORY FILES
"/home/roger/Projects/Gnucash/master/gnucash/data/pixmaps/hicolor" REGEX
".*/apps.*" EXCLUDE)
install_manifest.txt:/usr/local/share/gnucash/icons/hicolor/24x24/actions/gnc-account-edit.png
install_manifest.txt:/usr/local/share/gnucash/icons/hicolor/24x24/actions/gnc-account-new.png
. plus a bunch more

The '/home/roger/Projects/Gnucash/master/gnucash/data/pixmaps/hicolor'
folder contains the icons that appear to contain the images to be copied to
the ..gnucash/icon folders.

Hope this helps,
  Roger

On Sun, Jul 1, 2018 at 1:33 PM Colin Law  wrote:

> I have just rebuilt (on 18.04) using the exact same commands and my
> manifest does not include the icons.  Do you know what is supposed to tell
> the system to install them?
>
> Colin
>
> On 1 July 2018 at 17:36, Roger Miskowicz  wrote:
>
>> I have GC3.2 on two 16.04 linux systems and in one build I have
>> install_manifest.txt which includes the 'icons' directory and in the other
>> the install_manifest.txt does not exist (in this one the icons files were
>> installed months earlier so not part of my latest install).
>>
>>
>> I just rebuilt GC3.2 on 16.04 using:
>>
>> mkdir build
>> cd build
>>
>> cmake -D WITH_AQBANKING=OFF -D WITH_OFX=OFF ../gnucash
>> cmake ..
>>
>> make
>>
>> and the install_manifest.txt include the 'icons' directory.
>>
>>
>> Hope this helps, let me know if you would like to try something else.
>>
>> Roger
>>
>>
>> On Sun, Jul 1, 2018 at 11:52 AM, Colin Law  wrote:
>>
>>> On 1 July 2018 at 16:36, Roger Miskowicz  wrote:
>>>
>>>> in 16.04 and GC3.2 using:
>>>>
>>>> $ locate gnc-account-report
>>>>
>>>> I found:
>>>>
>>>>
>>>> /usr/local/share/gnucash/icons/hicolor/16x16/actions/gnc-account-report.png
>>>>
>>>> /usr/local/share/gnucash/icons/hicolor/24x24/actions/gnc-account-report.png
>>>>
>>>> Are these files found in 18.04?
>>>>
>>>
>>> No, in /usr/local/share/gnucash there is no icons folder.   I have
>>> accounts  gtkbuilder  make-prefs-migration-script.xsl  pixmaps
>>> tip_of_the_day.list
>>> checksjqplot  migratable-prefs.xml scm  ui
>>>
>>> The only png file is pixmaps/gnucash_splash.png
>>>
>>> There is no reference to /usr/local/share/gnucash/icons in the output of
>>> sudo make install.
>>>
>>> Colin
>>>
>>> Colin
>>>
>>>
>>>>
>>>> On Sun, Jul 1, 2018 at 10:55 AM, Colin Law  wrote:
>>>>
>>>>> In the trace file I see around a dozen lines similar to
>>>>>
>>>>> * 13:29:29  WARN  [gnc_load_app_icons()] No icon named
>>>>> 'gnc-account' found. Some gui elements may be missing their icons
>>>>> * 13:29:29  WARN  [gnc_load_app_icons()] No icon named
>>>>> 'gnc-account-report' found. Some gui elements may be missing their
>>>>> icons
>>>>>
>>>>> Colin
>>>>>
>>>>>
>>>>> On 1 July 2018 at 13:39, Colin Law  wrote:
>>>>>
>>>>> > Actually I see there are more icons missing, such as the Split
>>>>> button icon
>>>>> > in the toolbar.  It seems that the missing files are the png files
>>>>> from
>>>>> > data/pixmaps/hicolor/?/actions.  Are these supposed to be copied
>>>>> > somewhere by make install?
>>>>> >
>>>>> > Colin
>>>>> >
>>>>> > On 1 July 2018 at 11:21, Colin Law  wrote:
>>>>> >
>>>>> >> Following the instructions for building GC 3.x on the wiki [1] has
>>>>> >> been accomplished on Ubuntu 18.04 with little difficulty, so many
>>>>> >> thanks to the contributors to the wiki.
>>>>> >>
>>>>> >> Just one small issue so far, the icons to the left of the account
>>>>> >> names are all showing as a little no entry sign, which I guess means
>>>>> >> the icon is missing.  Does that mean I have missed something or is
>>>>> >> something missing from the build?
>>>>> >>
>>>>> >> Colin
>>>>> >>
>>>>> >>
>>>>> >> [1] https://wiki.gnucash.org/wiki/BuildUbuntu16.04
>>>>> >>
>>>>> >
>>>>> >
>>>>> ___
>>>>> 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] Build on 18.04

2018-07-01 Thread Roger Miskowicz
Yes, it does.


On Sun, Jul 1, 2018 at 2:01 PM John Ralls  wrote:

> data/pixmaps/CMakeLists.txt. There aren't any conditionals.
>
> Does your build directory have share/gnucash/icons?
>
> Regards,
> John Ralls
>
>
> > On Jul 1, 2018, at 10:33 AM, Colin Law  wrote:
> >
> > I have just rebuilt (on 18.04) using the exact same commands and my
> > manifest does not include the icons.  Do you know what is supposed to
> tell
> > the system to install them?
> >
> > Colin
> >
> > On 1 July 2018 at 17:36, Roger Miskowicz  wrote:
> >
> >> I have GC3.2 on two 16.04 linux systems and in one build I have
> >> install_manifest.txt which includes the 'icons' directory and in the
> other
> >> the install_manifest.txt does not exist (in this one the icons files
> were
> >> installed months earlier so not part of my latest install).
> >>
> >>
> >> I just rebuilt GC3.2 on 16.04 using:
> >>
> >> mkdir build
> >> cd build
> >>
> >> cmake -D WITH_AQBANKING=OFF -D WITH_OFX=OFF ../gnucash
> >> cmake ..
> >>
> >> make
> >>
> >> and the install_manifest.txt include the 'icons' directory.
> >>
> >>
> >> Hope this helps, let me know if you would like to try something else.
> >>
> >> Roger
> >>
> >>
> >> On Sun, Jul 1, 2018 at 11:52 AM, Colin Law  wrote:
> >>
> >>> On 1 July 2018 at 16:36, Roger Miskowicz  wrote:
> >>>
> >>>> in 16.04 and GC3.2 using:
> >>>>
> >>>> $ locate gnc-account-report
> >>>>
> >>>> I found:
> >>>>
> >>>> /usr/local/share/gnucash/icons/hicolor/16x16/actions/gnc-acc
> >>>> ount-report.png
> >>>> /usr/local/share/gnucash/icons/hicolor/24x24/actions/gnc-acc
> >>>> ount-report.png
> >>>>
> >>>> Are these files found in 18.04?
> >>>>
> >>>
> >>> No, in /usr/local/share/gnucash there is no icons folder.   I have
> >>> accounts  gtkbuilder  make-prefs-migration-script.xsl  pixmaps
> >>> tip_of_the_day.list
> >>> checksjqplot  migratable-prefs.xml scm  ui
> >>>
> >>> The only png file is pixmaps/gnucash_splash.png
> >>>
> >>> There is no reference to /usr/local/share/gnucash/icons in the output
> of
> >>> sudo make install.
> >>>
> >>> Colin
> >>>
> >>> Colin
> >>>
> >>>
> >>>>
> >>>> On Sun, Jul 1, 2018 at 10:55 AM, Colin Law  wrote:
> >>>>
> >>>>> In the trace file I see around a dozen lines similar to
> >>>>>
> >>>>> * 13:29:29  WARN  [gnc_load_app_icons()] No icon named
> >>>>> 'gnc-account' found. Some gui elements may be missing their icons
> >>>>> * 13:29:29  WARN  [gnc_load_app_icons()] No icon named
> >>>>> 'gnc-account-report' found. Some gui elements may be missing their
> icons
> >>>>>
> >>>>> Colin
> >>>>>
> >>>>>
> >>>>> On 1 July 2018 at 13:39, Colin Law  wrote:
> >>>>>
> >>>>>> Actually I see there are more icons missing, such as the Split
> button
> >>>>> icon
> >>>>>> in the toolbar.  It seems that the missing files are the png files
> >>>>> from
> >>>>>> data/pixmaps/hicolor/?/actions.  Are these supposed to be copied
> >>>>>> somewhere by make install?
> >>>>>>
> >>>>>> Colin
> >>>>>>
> >>>>>> On 1 July 2018 at 11:21, Colin Law  wrote:
> >>>>>>
> >>>>>>> Following the instructions for building GC 3.x on the wiki [1] has
> >>>>>>> been accomplished on Ubuntu 18.04 with little difficulty, so many
> >>>>>>> thanks to the contributors to the wiki.
> >>>>>>>
> >>>>>>> Just one small issue so far, the icons to the left of the account
> >>>>>>> names are all showing as a little no entry sign, which I guess
> means
> >>>>>>> the icon is missing.  Does that mean I have missed something or is
> >>>>>>> something missing from the build?
> >>>>>>>
> >>&

Re: [GNC] Build on 18.04

2018-07-01 Thread Roger Miskowicz
my directory listing shows:

$ ls
accounts/  gnucash.1icons/
migratable-prefs.xml  scm/ ui/
checks/gtkbuilder/  make-prefs-migration-script.xsl
pixmaps/  tip_of_the_day.list


On Sun, Jul 1, 2018 at 3:23 PM Colin Law  wrote:

> On 1 July 2018 at 19:14, Colin Law  wrote:
>
>> On 1 July 2018 at 18:58, John Ralls  wrote:
>>
>>> data/pixmaps/CMakeLists.txt. There aren't any conditionals.
>>>
>>> Does your build directory have share/gnucash/icons?
>>>
>>
>> No
>>
>> $ ls share/gnucash/
>> accounts  gnucash.1   make-prefs-migration-script.xsl  pixmaps
>> tip_of_the_day.list
>> checksgtkbuilder  migratable-prefs.xml scm  ui
>>
>
> What is supposed to put the files there?
>
> 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] autocomplete not working in 3.2

2018-07-03 Thread Roger Miskowicz
Seems to work okay in GC3.2 on Ubuntu 16.04.

On Tue, Jul 3, 2018 at 10:46 PM Deane Yamane  wrote:

> I have the same problems. IMHO V3.x has been buggy from the start. Some
> nice features but not worth it. I think I’ll revert to 2.26(?) and wait
> till the ‘dust clears’ :(
> On Jul 1, 2018, 2:34 AM -1000, Michael Matz ,
> wrote:
> > I just upgraded from 3.0 to 3.2. macOs 10.13.5
> >
> > (I skipped 3.1 because 3.0 has worked well for me, with the limited set
> of
> > features I use.)
> >
> > When I enter a new transaction, I type the first letter in the
> description
> > column and GnuCash makes a suggestion but if I continue typing the
> > suggestion is not updated or replaced.
> >
> > For example, if I type "F" the description becomes "Food". If I then type
> > "a" then the description becomes "Faood". Or typing "Fo" becomes "Foood"
> > This worked as expected in 3.0 and previous versions, i.e. typing "Fa"
> > results in "Fa" (no suggestion) and typing "Fo" result in "Food".
> >
> > The same thing happens in the Transfer column
> >
> > Anybody else having this problem?
> >
> > I've switched back to 3.0 for now.
> >
> > Thanks,
> > Michael
> > ___
> > 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.

Keyboard Shortcuts Additions in Linux

2018-01-21 Thread Roger Miskowicz
I wanted to add ctrl-b to reconcile and discovered that in:

https://wiki.gnucash.org/wiki/Keyboard_Shortcuts#Modifying_
Keyboard_Shortcuts

The following text is incorrect in that it doesn't work on my Linux:

Linux Kilo 4.10.1-041001-generic #201702260735 SMP Sun Feb 26 12:36:48 UTC
2017 x86_64 x86_64 x86_64 GNU/Linux

Ubuntu 16.04.3 LTS

"Accelerators

Under *Linux* hot keys can be created or reassignated. Open a terminal and
type:

gsettings set org.gnome.desktop.interface can-change-accels true"


However, editing

*~/.gnucash/accelerator-map*

did work by changing a line to:

 (gtk_accel_path
"/GncPluginPageRegisterActions/ActionsReconcileAction"
"b")
___
gnucash-user mailing list
gnucash-user@gnucash.org
https://lists.gnucash.org/mailman/listinfo/gnucash-user
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: Is "Transfer" same as making a "Journal Entry"

2018-02-05 Thread Roger Miskowicz
I am curious as to what 'Transfer' means in the 'Budget'?

On Mon, Feb 5, 2018 at 9:19 AM, Fran_3 via gnucash-user <
gnucash-user@gnucash.org> wrote:

> gnuCash Menue's offer:   Actions -> Transfer
> Which seems to allow a simple way to debit one account and credit
> another... right?
> if so isn't that the same functionality as what is called a "Journal
> Entry" ?
> 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.
___
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: Is "Transfer" same as making a "Journal Entry"

2018-02-05 Thread Roger Miskowicz
Thanks Phil, that helps.

On Mon, Feb 5, 2018 at 10:47 AM, Phil Longstaff <phil.longst...@gmail.com>
wrote:

> In an accounting sense, giving money to pay off the principal of a loan is
> not an expense. It is a transfer to pay down a liability. Similarly, giving
> money towards an RRSP (Canada) or 401K (US) is not an expense. It is a
> transfer to an asset account. These are the transfers that are captured by
> "Transfer". It is the money to pay down liabilities or increase assets.
>
> On Mon, Feb 5, 2018 at 9:42 AM, Roger Miskowicz <rmisk...@gmail.com>
> wrote:
>
>> I am curious as to what 'Transfer' means in the 'Budget'?
>>
>> On Mon, Feb 5, 2018 at 9:19 AM, Fran_3 via gnucash-user <
>> gnucash-user@gnucash.org> wrote:
>>
>> > gnuCash Menue's offer:   Actions -> Transfer
>> > Which seems to allow a simple way to debit one account and credit
>> > another... right?
>> > if so isn't that the same functionality as what is called a "Journal
>> > Entry" ?
>> > 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.
>> ___
>> 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: How to Manually Track a Collection of Stocks & Stuff Combined into a Single Share

2018-02-08 Thread Roger Miskowicz
Thanks Tim, that is the same as my situation and I like your solution.  I
am not worried about tax time as I just need to have a general idea I can
use for a sort of sanity check.  I will try your solution in parallel.


On Thu, Feb 8, 2018 at 11:30 AM, Timothy B. Taylor <taylo...@gmail.com>
wrote:

> Roger, there may be a simpler solution. I had an investment account that
> internally was kind of a mess, with various holdings that I really didn't
> want to try to track individually. The reports from the investment company
> were sufficient to track dividends and gains and to report taxes. I wanted
> to track the overall value in that account, but I didn't want to or need to
> deal with the internal ups and downs.
>
> So I created an asset account (type=asset) with the opening balance the
> total value of the account and date shown on the most recent statement.
>
> Then I created an equity account called Changes in Investment Value or
> something similar with an opening balance of zero.
>
> Periodically I add a transaction in the asset account to reflect the
> accumulated changes in value since the last transaction, to make the
> Gnucash account balance match the total value of the account. This
> transaction is balanced against the corresponding equity account. This
> makes sense to me. When my overall asset value goes up, so does my equity.
> And vice versa.
>
> In effect I am treating this investment account as a cash account, with a
> particular value on any given day, with ups and downs corresponding to the
> overall value of the account.
>
> The result is my Gnucash net worth, balance sheet and similar reports make
> sense. But of course dividends, capital gains, purchases, sales, investment
> fees and similar accounts do not. At tax time I have to add the Gnucash
> results to the data received from the investment company.
>
> I'm sure this won't pass anyone's proper-accounting test, but it seems to
> work for me. Tim
>
> On Thu, Feb 8, 2018 at 10:47 AM, Roger Miskowicz <rmisk...@gmail.com>
> wrote:
>
>> I went through the section 9.5.3 Entering Pre-Existing Stocks for about
>> the
>> fifth time.  Don't know what I did differently but it now works as
>> expected.  Before it used to crash when I tried a price update.
>>
>> Actually it still crashes when I click on Apply instead of Ok when editing
>> a Price Entry.  (I think, I need to check it out more to determine exactly
>> what I am doing to cause the crash).
>>
>> Is there a related bug in 2.6.12?
>>
>> On Thu, Feb 8, 2018 at 9:28 AM, David Carlson <
>> david.carlson@gmail.com>
>> wrote:
>>
>> > If you want to create a fictional stock and manually enter prices from
>> > time to time that is easy.
>> >
>> > Just use the security editor and invent a name and symbol, possibly
>> under
>> > the group called Fund.  Do not set an online quote source.  Then
>> manually
>> > use the price editor to enter prices for whatever dates you like.
>> >
>> > David C
>> >
>> > On Thu, Feb 8, 2018 at 8:00 AM, Roger Miskowicz <rmisk...@gmail.com>
>> > wrote:
>> >
>> >> Sorry, I just want to take a number from one online brokerage report
>> and
>> >> manually put it into gnucash.
>> >>
>> >> On Thu, Feb 8, 2018 at 6:28 AM, David T. <sunfis...@yahoo.com> wrote:
>> >>
>> >> > Roger,
>> >> >
>> >> > You stay by stating that you are able to generate a report that tells
>> >> you
>> >> > "the current value of everything."  Then, you ask how you can add
>> >> another
>> >> > layer of complexity to accomplish the same thing?
>> >> >
>> >> > I don't understand: what's wrong with the report?
>> >> >
>> >> > David
>> >> >
>> >> >
>> >> > On Thu, Feb 8, 2018 at 16:14, Roger Miskowicz
>> >> > <rmisk...@gmail.com> wrote:
>> >> > I have an Investment Account which is a collection of stocks,
>> >> certificates,
>> >> > cash etc in two currencies.  I can get a report that tells me in my
>> >> local
>> >> > currency the current value of everything.
>> >> >
>> >> > I would like to create a stock, fund, or whatever appropriate with 1
>> >> share
>> >> > for which  I can manually update a single price representing the
>> current
>> >> > value of the entire collection.
>> >> >
>> >

Re: Is "Transfer" same as making a "Journal Entry"

2018-02-05 Thread Roger Miskowicz
Thanks Adrien,

I have income and also make monthly withdrawal from an investment account.
In the Budget I enter Income and Transfer say (-$1,000)  from my Investment
account and the Monthly Total in the Budget seems to be okay.

I want the Total to be the difference between net income and net expenses
and I think it does that where on the Budget Spread Sheet it appears the
Monthly Total = Income - Expenses -Transfers.

I am not sure I really understand what is going on but it seems to give me
the results for which I was looking.

On Mon, Feb 5, 2018 at 4:42 PM, Adrien Monteleone <
adrien.montele...@gmail.com> wrote:

> So far my experience with the budget module is that the ‘Transfers’
> summary line is telling you about entries in asset and liability accounts.
> Entries in expense and income accounts do not get summed in the ‘Transfers’
> line. (I don’t think Equity does either since Equity IS Income-Expenses)
>
> So if you budget 90% of one months income/revenue towards expenses and
> then put 5% into a savings asset account and 5% as a payment (entered as a
> negative) into a liability account, your transfers summary line would be
> 10%. The payment of the liability would not be a budgeted expense but a
> budgeted transfer.
>
> (the expense was recorded already when you assumed the liability)
>
> This is how you would budget a mortgage or car payment. You could also
> budget payments on previous balances to consumer credit cards. (but you
> would not budget payments on those cards for expenses in the same month
> that you are budgeting for in their respective expense categories - that
> would be budgeting the same thing twice)
>
> It gets tricky when you budget money into savings and then use some or all
> of that at some point as a payment on a liability, while still socking some
> away that month into savings. You have to enter the full payment (as a
> negative) in the liability cell for that period, but then the difference
> between the full amount you are taking out of savings and the amount you
> are putting into savings into that month’s savings budget cell. If you had
> $2000 of savings stored up and you wanted to plop that down as an extra
> principle payment on a house note, but still put in $250 into your savings
> account that month, you’re pulling a net $1750 out of the savings account.
> So your savings cell that month would be -$1750 (you took out $2000, but
> put $250 back in, you could also have taken only $1750 out, combined it
> with the $250 in your pocket and used that to make the extra payment.) and
> your mortgage liability cell would be -$2000. You just want to make sure
> each period’s cell reflects the net change in the account balance at the
> end of that period.
>
> Regards,
> Adrien
>
> > On Feb 5, 2018, at 8:42 AM, Roger Miskowicz <rmisk...@gmail.com> wrote:
> >
> > I am curious as to what 'Transfer' means in the 'Budget'?
> >
> > On Mon, Feb 5, 2018 at 9:19 AM, Fran_3 via gnucash-user <
> > gnucash-user@gnucash.org> wrote:
> >
> >> gnuCash Menue's offer:   Actions -> Transfer
> >> Which seems to allow a simple way to debit one account and credit
> >> another... right?
> >> if so isn't that the same functionality as what is called a "Journal
> >> Entry" ?
> >> 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.
> > ___
> > 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.
&g

Re: How to Manually Track a Collection of Stocks & Stuff Combined into a Single Share

2018-02-08 Thread Roger Miskowicz
Sorry, I just want to take a number from one online brokerage report and
manually put it into gnucash.

On Thu, Feb 8, 2018 at 6:28 AM, David T. <sunfis...@yahoo.com> wrote:

> Roger,
>
> You stay by stating that you are able to generate a report that tells you
> "the current value of everything."  Then, you ask how you can add another
> layer of complexity to accomplish the same thing?
>
> I don't understand: what's wrong with the report?
>
> David
>
>
> On Thu, Feb 8, 2018 at 16:14, Roger Miskowicz
> <rmisk...@gmail.com> wrote:
> I have an Investment Account which is a collection of stocks, certificates,
> cash etc in two currencies.  I can get a report that tells me in my local
> currency the current value of everything.
>
> I would like to create a stock, fund, or whatever appropriate with 1 share
> for which  I can manually update a single price representing the current
> value of the entire collection.
>
> Using the online guide I have tried creating a fund or stock but I don't
> understand the process and can't seem to get it to work and even
> ocassionally crashing gnucash.
>
> I think I would like something such as:
>
> Investment
>   Stocks
> myStock  (I would like to manually update the price of a single share.)
>
>
> I am using gucash 2.6.12 on Ubuntu 16.04 LTS.
>
> I would appreciate it if someone can suggest a way to do this.
> ___
> 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.


How to Manually Track a Collection of Stocks & Stuff Combined into a Single Share

2018-02-08 Thread Roger Miskowicz
I have an Investment Account which is a collection of stocks, certificates,
cash etc in two currencies.  I can get a report that tells me in my local
currency the current value of everything.

I would like to create a stock, fund, or whatever appropriate with 1 share
for which  I can manually update a single price representing the current
value of the entire collection.

Using the online guide I have tried creating a fund or stock but I don't
understand the process and can't seem to get it to work and even
ocassionally crashing gnucash.

I think I would like something such as:

Investment
  Stocks
myStock  (I would like to manually update the price of a single share.)


I am using gucash 2.6.12 on Ubuntu 16.04 LTS.

I would appreciate it if someone can suggest a way to do this.
___
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: How to Manually Track a Collection of Stocks & Stuff Combined into a Single Share

2018-02-08 Thread Roger Miskowicz
I went through the section 9.5.3 Entering Pre-Existing Stocks for about the
fifth time.  Don't know what I did differently but it now works as
expected.  Before it used to crash when I tried a price update.

Actually it still crashes when I click on Apply instead of Ok when editing
a Price Entry.  (I think, I need to check it out more to determine exactly
what I am doing to cause the crash).

Is there a related bug in 2.6.12?

On Thu, Feb 8, 2018 at 9:28 AM, David Carlson <david.carlson@gmail.com>
wrote:

> If you want to create a fictional stock and manually enter prices from
> time to time that is easy.
>
> Just use the security editor and invent a name and symbol, possibly under
> the group called Fund.  Do not set an online quote source.  Then manually
> use the price editor to enter prices for whatever dates you like.
>
> David C
>
> On Thu, Feb 8, 2018 at 8:00 AM, Roger Miskowicz <rmisk...@gmail.com>
> wrote:
>
>> Sorry, I just want to take a number from one online brokerage report and
>> manually put it into gnucash.
>>
>> On Thu, Feb 8, 2018 at 6:28 AM, David T. <sunfis...@yahoo.com> wrote:
>>
>> > Roger,
>> >
>> > You stay by stating that you are able to generate a report that tells
>> you
>> > "the current value of everything."  Then, you ask how you can add
>> another
>> > layer of complexity to accomplish the same thing?
>> >
>> > I don't understand: what's wrong with the report?
>> >
>> > David
>> >
>> >
>> > On Thu, Feb 8, 2018 at 16:14, Roger Miskowicz
>> > <rmisk...@gmail.com> wrote:
>> > I have an Investment Account which is a collection of stocks,
>> certificates,
>> > cash etc in two currencies.  I can get a report that tells me in my
>> local
>> > currency the current value of everything.
>> >
>> > I would like to create a stock, fund, or whatever appropriate with 1
>> share
>> > for which  I can manually update a single price representing the current
>> > value of the entire collection.
>> >
>> > Using the online guide I have tried creating a fund or stock but I don't
>> > understand the process and can't seem to get it to work and even
>> > ocassionally crashing gnucash.
>> >
>> > I think I would like something such as:
>> >
>> > Investment
>> >   Stocks
>> > myStock  (I would like to manually update the price of a single
>> share.)
>> >
>> >
>> > I am using gucash 2.6.12 on Ubuntu 16.04 LTS.
>> >
>> > I would appreciate it if someone can suggest a way to do this.
>> > ___
>> > 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: How to assign transaction to accounts automatically.

2018-02-20 Thread Roger Miskowicz
Excellent question!

On Tue, Feb 20, 2018 at 7:39 AM, Hans Deragon  wrote:

> Greetings,
>
> New user here.  I downloaded 500 transactions from my credit card bank
> site, all assigned to 'Imbalanced-CAD'.  Now, how can I set rules to
> automatically assign transactions to a specific account?  For instance,
> any transaction with "^ESSO.*" or "^SHELL.*" must be reassigned to
> Car:Gasoline.  I fail to find that information on the web, except that
> when importing, GnuCash trains itself and does that automatically at the
> next import.
>
> But what about my 500 transactions that are already imported?  What
> about if one wants to reassign transactions to another account, after a
> month of careful thinking?  Does a user have to go through all
> transactions manually?
>
> As a workaround, is it possible to convert the GnuCash file into Unicode
> and use scripting languages to manipulate the transactions, then convert
> it back to its binary format?
>
> Using GnuCash 2.6.12 on Ubuntu 16.04 LTS.
>
> Best regards,
> Hans Deragon
>
>
> ___
> 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.


Transfer From Moneydance

2018-01-03 Thread Roger Miskowicz
I have been using gnucash for a business account for some time while using
Moneydance for personal accounts.

Are there tips or a preferred procedure for transferring from Moneydance
accounts  to gnucash?
___
gnucash-user mailing list
gnucash-user@gnucash.org
https://lists.gnucash.org/mailman/listinfo/gnucash-user
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: Transfer From Moneydance

2018-01-03 Thread Roger Miskowicz
Thanks, I guessed that it would take a while which partially explains my
procrastination. 

On Wed, Jan 3, 2018 at 9:17 PM, David Carlson <david.carlson@gmail.com>
wrote:

> I too used Moneydance for a while after Quicken.  That was long ago.  I
> think that Moneydance was able to generate fairly good QIF files which
> imported into GnuCash with about the same quirks as Quicken QIFs.
>
> That said, it is good to run a lot of tests and plan carefully before
> making a 'for real' data file.
>
>
> David C
>
> On Wed, Jan 3, 2018 at 7:48 PM, Roger Miskowicz <rmisk...@gmail.com>
> wrote:
>
>> I have been using gnucash for a business account for some time while using
>> Moneydance for personal accounts.
>>
>> Are there tips or a preferred procedure for transferring from Moneydance
>> accounts  to gnucash?
>> ___
>> gnucash-user mailing list
>> gnucash-user@gnucash.org
>> https://lists.gnucash.org/mailman/listinfo/gnucash-user
>> -
>> 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
https://lists.gnucash.org/mailman/listinfo/gnucash-user
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.

Re: [GNC] [OT] Why is Debit abbreviated Dr?

2018-09-05 Thread Roger Miskowicz
I thought that debit and credit only existed in double entry accounting and
simply identified columns as either Left or Right?

On Wed, Sep 5, 2018 at 2:43 PM Geoff Jankowski via gnucash-user <
gnucash-user@gnucash.org> wrote:

> David
>
> I would love to agree with you but…..
>
> In standard journal notation cr is a debt and dr an asset.  This is
> because it is nothing to do with credit (+ve) and debit (-ve) in any sense
> (or tense) but to do with a creditor (to whom we owe) and a debtor (who
> owes us).  Hence dr and cr relate to debtor and creditor and not to any
> form of debit or credit.
>
> For example, if I take cash from the cash box and deposit it at the bank I
> enter a cr to the cashbook and a dr to the bank account.
>
> Totally counterintuitive which is why accountancy is a black art and
> should be banned.
>
> I am also an engineer that has been a finance director for many years (but
> that does not necessarily give me the right to write what is right).
>
>
>
> Geoff
> +44 20 7100 1092
> +44 7770 58 48 38
> +33 5 46 97 13 89
> +33 6 22 93 00 53
>
>
>
>
>
>
>
>
>
>
> > On 5 Sep 2018, at 17:08, Colin Law  wrote:
> >
> > Wow, well now we know (or actually don't know), but we know we don't
> > know in great depth and detail :)
> >
> > Colin
> > On Wed, 5 Sep 2018 at 16:01, David Cousens 
> wrote:
> >>
> >> Derek
> >>
> >> Latin past participles of creditum and debitum are debere and credere
> are a possible explanation. Another theory is the
> >> Dr stands for debit record and Cr credit record. Another is that Dr is
> from debtors and Cr is from creditors. I favour
> >> the first because Luca Pacciola who is often attributed (wrongly) with
> the first known  treatise in 1494 (Summa de
> >> Arithmetica, Geometria, Proportioni et Proportionalita) which had a
> section on double entry accounting  and formulated
> >> the first documented use of the accounting equation used the terms
> debere (to owe) and credere (to entrust) to describe
> >> the two sides of the basic accounting equation but there is also
> evidence that Pacciola used Per (from) and A (to) in
> >> journal entries. I don't know if any originals of Pacciola's original
> treatise have survived and most of the comments
> >> are from an English translation in 1633 where Handson used Dr from the
> English debtor. Another translator Geejsbeek in
> >> 1914 suggested Dr comes from "in dare" (give) and "in havere"
> (receive). Pacciola apparently learned his accounting from
> >> Arab traders in North Africa where his father was a merchant.  Benedikt
> Kotruljevic in 1458 also described double entry
> >> accounting in a 1458 work on the Art of Trade published in Dubrovnik. I
> suspect both were describing methodology used by
> >> the Arab traders.There is also evidence that double entry might have
> been used in 10th century Muslim tax office but
> >> there is no definitive evidence. We will probably never know where the
> usage of the notation actually came from and the
> >> historians will continue to argue about it forever.
> >> David Cousens
> >>
> >>
> >>
> >> On Wed, 2018-09-05 at 09:59 -0400, Derek Atkins wrote:
> >>> Hi All,
> >>>
> >>> I'm an Engineer by training; I've picked up a ton of accounting
> >>> knowledge just by being involved here for the past few decades, but
> >>> there's one thing I've seen recently that I honestly don't underdstand
> >>> and would appreciate if a CPA or Accounting Historian could answer.
> >>>
> >>> Specifically, I've seen people show a transaction as:
> >>>
> >>>Dr ...  /  Cr ...
> >>>
> >>> So CR as an abbreviation for Credit makes sense to me (CRedit).  But
> why
> >>> is Debit abbreviated as DR?  There is no "R" in DEBIT.  So where does
> >>> that come from?  I would have expected it to be "Db".
> >>>
> >>> Just curious.
> >>>
> >>> -derek
> >>>
> >> ___
> >> 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:
> 

Re: [GNC] XDG_CONFIG_HOME

2018-04-15 Thread Roger Miskowicz
in Linux 16.04 this is where I have:

~/.local/share/gnucash/accelerator-map


On Sun, Apr 15, 2018 at 5:19 PM, cicko  wrote:

> Hm, now I'm trying to set up an accelerator by creating accelerator-map
> file
> in ~/.config/gnucash and it has no effect.
>
> Also, setting it manually like this
>
> GNC_DOC_PATH=~/.config/gnucash gnucash
>
> does not change anything.
> There is definitely nowhere in my user directory tree any mention of
> gnucash, which is weird.
> Is there a way to check where the settings are expected?
> The trace file did not provide any clues in that regard.
>
>
>
> --
> 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: keyboard shortcut (view double line)

2018-03-24 Thread Roger Miskowicz
I don't think there is one, but if there is one, it should be specified in:

/home/user/.gnucash/accelerator-map, or
/home/roger/.local/share/gnucash/accelerator-map  (depending on version of
gnucash)

In any case you might be able to use procedure in:

https://superuser.com/questions/1185318/how-do-i-add-a-new-keyboard-shortcut-in-gnucash

to set one up.



On Sat, Mar 24, 2018 at 3:51 PM, cohomike  wrote:

> Is there a keyboard shortcut to view double-line mode in registers? A way
> to
> toggle the display back and forth?
>
>
>
> --
> 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: Gnucash 2.7.5 Installation

2018-03-03 Thread Roger Miskowicz
Thanks John, I thought I had.  Sorry for the inconvenience.

Working great now,
  Roger

On Sat, Mar 3, 2018 at 9:35 AM, John Ralls <jra...@ceridwen.us> wrote:

>
>
> > On Mar 3, 2018, at 2:51 AM, Roger Miskowicz <rmisk...@gmail.com> wrote:
> >
> > Thanks John, I looked at that line several times and didn't notice the
> '/'.
> >
> > Now using:
> >
> > cmake   ..
> >
> > the output seems fine except for:
> >
> > -- Performing Test have_mod_mask - Failed
> >
> > Even so, I tried 'make' with the following failure:
> >
> > [ 48%] Building C object gnucash/gnome-utils/
> CMakeFiles/gncmod-gnome-utils.dir/account-quickfill.c.o
> > :0:38: error: redeclaration of enumerator ‘GDK_SHIFT_MASK’
> > /usr/include/gtk-3.0/gdk/gdktypes.h:318:3: note: in expansion of macro
> ‘GDK_MODIFIER_INTENT_DEFAULT_MOD_MASK’
> >GDK_MODIFIER_INTENT_DEFAULT_MOD_MASK,
> >^
> > In file included from /usr/include/gtk-3.0/gdk/
> gdkapplaunchcontext.h:30:0,
> >  from /usr/include/gtk-3.0/gdk/gdk.h:32,
> >  from /usr/include/gtk-3.0/gtk/gtk.h:30,
> >  from /home/roger/Projects/Gnucash/
> gnucash-2.7.5/gnucash/gnucash/gnome-utils/account-quickfill.h:43,
> >  from /home/roger/Projects/Gnucash/
> gnucash-2.7.5/gnucash/gnucash/gnome-utils/account-quickfill.c:25:
> > /usr/include/gtk-3.0/gdk/gdktypes.h:233:3: note: previous definition of
> ‘GDK_SHIFT_MASK’ was here
> >GDK_SHIFT_MASK= 1 << 0,
> >^
> > :0:52: error: expected ‘,’ or ‘}’ before ‘|’ token
> > /usr/include/gtk-3.0/gdk/gdktypes.h:318:3: note: in expansion of macro
> ‘GDK_MODIFIER_INTENT_DEFAULT_MOD_MASK’
> >GDK_MODIFIER_INTENT_DEFAULT_MOD_MASK,
> >^
> > gnucash/gnome-utils/CMakeFiles/gncmod-gnome-utils.dir/build.make:77:
> recipe for target 
> 'gnucash/gnome-utils/CMakeFiles/gncmod-gnome-utils.dir/account-quickfill.c.o'
> failed
> > make[2]: *** 
> > [gnucash/gnome-utils/CMakeFiles/gncmod-gnome-utils.dir/account-quickfill.c.o]
> Error 1
> > CMakeFiles/Makefile2:8265: recipe for target 'gnucash/gnome-utils/
> CMakeFiles/gncmod-gnome-utils.dir/all' failed
> > make[1]: *** [gnucash/gnome-utils/CMakeFiles/gncmod-gnome-utils.dir/all]
> Error 2
> > Makefile:160: recipe for target 'all' failed
> > make: *** [all] Error 2
> >
> > I am guessing I need to fix:
> >
> > -- Performing Test have_mod_mask - Failed
> >
> > but have no idea how.
> >
> > I have checked that all the following are installed, note I am not sure
> it is important but I have swig3.0:
> >
> > sudo apt-get install intltool
> > sudo apt-get install autoconf automake autotools-dev libsigsegv2 m4
> > sudo apt-get install libtool libltdl-dev
> > sudo apt-get install libglib2.0-dev
> > sudo apt-get install icu-devtools libicu-dev
> > sudo apt-get install libboost-all-dev
> > sudo apt-get install guile-2.0 guile-2.0-dev
> > sudo apt-get install swig2.0 *** here I have swig3.0
> ***
> > sudo apt-get install libxml++2.6-dev
> > sudo apt-get install libxslt1-dev
> > sudo apt-get install xsltproc
> > sudo apt-get install libgtest-dev
> > sudo apt-get install google-mock
> > sudo apt-get install gtk+3.0
> > sudo apt-get install libgtk-3-dev
> > sudo apt-get install libwebkit2gtk-4.0-37
> > sudo apt-get install libwebkit2gtk-4.0-dev
> >
> > Again, I would appreciate your support,
>
> Yes, you’re right about the have_mod_mask test. You reported in your first
> email that you’d changed the include line in the code for that test--it’s
> at the top of /gnucash/CMakeLists.txt. I told you to put it back,
> but if you didn’t that’s likely the problem.
>
> If you did then the build of that snippet is failing for some other
> reason. The output from all of the tests is in 
> /CMakeFiles/CMakeOutput.log.
> Look there for the compile error that caused the test to fail.
>
> 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: Gnucash 2.7.5 Installation

2018-03-03 Thread Roger Miskowicz
Not sure if I should have started another thread?

Anyway, I am trying to install git clone on a second computer with the same
operating system (Ubuntu 16.04.4 LTS) as one where the installation worked.

I checked the dependencies:

sudo apt-get install intltool
sudo apt-get install autoconf automake autotools-dev libsigsegv2 m4
sudo apt-get install libtool libltdl-dev
sudo apt-get install libglib2.0-dev
sudo apt-get install icu-devtools libicu-dev
sudo apt-get install libboost-all-dev
sudo apt-get install guile-2.0 guile-2.0-dev
sudo apt-get install swig2.0
sudo apt-get install libxml++2.6-dev
sudo apt-get install libxslt1-dev
sudo apt-get install xsltproc
sudo apt-get install libgtest-dev
sudo apt-get install google-mock
sudo apt-get install gtk+3.0
sudo apt-get install libgtk-3-dev
sudo apt-get install libwebkit2gtk-4.0-37
sudo apt-get install libwebkit2gtk-4.0-dev

cmake -D WITH_AQBANKING=OFF -D WITH_OFX=OFF ../gnucash  finished with no
errors

However, during *make* I can't get it past:

[ 28%] Generating ../../lib/gnucash/scm/ccache/2.0/gnucash/core-utils.go
Backtrace:
In srfi/srfi-1.scm:
 619: 19 [for-each # #]
In scripts/compile.scm:
 182: 18 [#
"/media/Projects/Gnucash/master/gnucash/libgnucash/core-utils/core-utils.scm"]
In system/base/target.scm:
  59: 17 [with-target "x86_64-pc-linux-gnu" ...]
In system/base/compile.scm:
 150: 16 [compile-file
"/media/Projects/Gnucash/master/gnucash/libgnucash/core-utils/core-utils.scm"
...]
  43: 15 [call-once #]
In ice-9/boot-9.scm:
 171: 14 [with-throw-handler #t ...]
In system/base/compile.scm:
  59: 13 [#]
 153: 12 [#
#]
 216: 11 [read-and-compile # #:from ...]
 232: 10 [lp (# # # # ...) # #]
 180: 9 [lp # # # ...]
In ice-9/boot-9.scm:
2401: 8 [save-module-excursion #]
In language/scheme/compile-tree-il.scm:
  31: 7 [#]
In ice-9/psyntax.scm:
1106: 6 [expand-top-sequence ((re-export gnc-build-userdata-path)) () ...]
 989: 5 [scan ((re-export gnc-build-userdata-path)) () ...]
 279: 4 [scan ((# #)) () (()) ...]
In ice-9/boot-9.scm:
2094: 3 [call-with-deferred-observers #]
 768: 2 [for-each # #]
In unknown file:
   ?: 1 [scm-error misc-error #f ...]
In ice-9/boot-9.scm:
 106: 0 [#
misc-error ...]

ice-9/boot-9.scm:106:20: In procedure #:
ice-9/boot-9.scm:106:20: *Undefined variable: gnc-build-userdata-path
 May this is the main symptom  ... How can I fix it?*
libgnucash/core-utils/CMakeFiles/scm-core-utils.dir/build.make:61: recipe
for target 'lib/gnucash/scm/ccache/2.0/gnucash/core-utils.go' failed
make[2]: *** [lib/gnucash/scm/ccache/2.0/gnucash/core-utils.go] Error 1
CMakeFiles/Makefile2:3937: recipe for target
'libgnucash/core-utils/CMakeFiles/scm-core-utils.dir/all' failed
make[1]: *** [libgnucash/core-utils/CMakeFiles/scm-core-utils.dir/all]
Error 2
Makefile:160: recipe for target 'all' failed
make: *** [all] Error 2

Regards,
  Roger


On Sat, Mar 3, 2018 at 10:04 AM, Roger Miskowicz <rmisk...@gmail.com> wrote:

> Thanks John, I thought I had.  Sorry for the inconvenience.
>
> Working great now,
>   Roger
>
> On Sat, Mar 3, 2018 at 9:35 AM, John Ralls <jra...@ceridwen.us> wrote:
>
>>
>>
>> > On Mar 3, 2018, at 2:51 AM, Roger Miskowicz <rmisk...@gmail.com> wrote:
>> >
>> > Thanks John, I looked at that line several times and didn't notice the
>> '/'.
>> >
>> > Now using:
>> >
>> > cmake   ..
>> >
>> > the output seems fine except for:
>> >
>> > -- Performing Test have_mod_mask - Failed
>> >
>> > Even so, I tried 'make' with the following failure:
>> >
>> > [ 48%] Building C object gnucash/gnome-utils/CMakeFiles
>> /gncmod-gnome-utils.dir/account-quickfill.c.o
>> > :0:38: error: redeclaration of enumerator ‘GDK_SHIFT_MASK’
>> > /usr/include/gtk-3.0/gdk/gdktypes.h:318:3: note: in expansion of macro
>> ‘GDK_MODIFIER_INTENT_DEFAULT_MOD_MASK’
>> >GDK_MODIFIER_INTENT_DEFAULT_MOD_MASK,
>> >^
>> > In file included from /usr/include/gtk-3.0/gdk/gdkap
>> plaunchcontext.h:30:0,
>> >  from /usr/include/gtk-3.0/gdk/gdk.h:32,
>> >  from /usr/include/gtk-3.0/gtk/gtk.h:30,
>> >  from /home/roger/Projects/Gnucash/g
>> nucash-2.7.5/gnucash/gnucash/gnome-utils/account-quickfill.h:43,
>> >  from /home/roger/Projects/Gnucash/g
>> nucash-2.7.5/gnucash/gnucash/gnome-utils/account-quickfill.c:25:
>> > /usr/include/gtk-3.0/gdk/gdktypes.h:233:3: note: previous definition
>> of ‘GDK_SHIFT_MASK’ was here
>> >GDK_SHIFT_MASK= 1 << 0,
>> >^
>> > :0:52: error: expected ‘,’ or ‘}’ before ‘|’ token
>> > /usr/include/gtk-3.0/gdk/gdktypes.h:318:3: note: in expansion of macro
>> ‘GDK_MODIFIER_INTENT_DEF

Re: Gnucash 2.7.5 build with OFX

2018-03-03 Thread Roger Miskowicz
Thanks Liz, I check it out.

On Sun, Mar 4, 2018 at 1:19 AM, Liz <ed...@billiau.net> wrote:

> On Sun, 4 Mar 2018 01:10:05 -0500
> Roger Miskowicz <rmisk...@gmail.com> wrote:
>
> > Hi Liz,
> >
> > I am using Ubuntu 16.04.4 LTS
> >
> > Regards,
> >   Roger
> >
> > On Sun, Mar 4, 2018 at 1:04 AM, Liz <ed...@billiau.net> wrote:
> >
> > > On Sat, 3 Mar 2018 23:48:30 -0500
> > > Roger Miskowicz <rmisk...@gmail.com> wrote:
> > >
> > > > I am trying to build 2.7.5 but there is a problem locating libofx
> > > > with
> > > >
>
> You will need a package like libofx-dev as it is a Debian variant.
>
> Liz
> ___
> 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 2.7.5 build with OFX

2018-03-03 Thread Roger Miskowicz
I am trying to build 2.7.5 but there is a problem locating libofx with

cmake -D WITH_AQBANKING=OFF -D WITH_OFX=ON ../gnucash

reports:

--   No package 'libofx' found

I have libofx installed at:

/usr/lib/x86_64-linux-gnu/libofx.so.6
/usr/lib/x86_64-linux-gnu/libofx.so.6.0.0

which seemed to work with 2.6.11

My goal is to import qfx files into gnucash 2.7.5 and later.

Any suggestions will be much appreciated.

Roger
___
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: Gnucash 2.7.5 build with OFX

2018-03-03 Thread Roger Miskowicz
Hi Liz,

I am using Ubuntu 16.04.4 LTS

Regards,
  Roger

On Sun, Mar 4, 2018 at 1:04 AM, Liz <ed...@billiau.net> wrote:

> On Sat, 3 Mar 2018 23:48:30 -0500
> Roger Miskowicz <rmisk...@gmail.com> wrote:
>
> > I am trying to build 2.7.5 but there is a problem locating libofx with
> >
> > cmake -D WITH_AQBANKING=OFF -D WITH_OFX=ON ../gnucash
> >
> > reports:
> >
> > --   No package 'libofx' found
> >
> > I have libofx installed at:
> >
> > /usr/lib/x86_64-linux-gnu/libofx.so.6
> > /usr/lib/x86_64-linux-gnu/libofx.so.6.0.0
> >
> > which seemed to work with 2.6.11
> >
> > My goal is to import qfx files into gnucash 2.7.5 and later.
> >
> > Any suggestions will be much appreciated.
> >
> > Roger
>
>
> What is the distro you are using?
> The answer is different for Arch, Gentoo, Debian et al, Fedora / RHEL
>
> and so on
>
>
> Liz
> ___
> 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: Gnucash 2.7.5 Installation

2018-03-03 Thread Roger Miskowicz
Solved.

I needed to make sure old versions were properly deleted.

On Sat, Mar 3, 2018 at 1:59 PM, Roger Miskowicz <rmisk...@gmail.com> wrote:

> Not sure if I should have started another thread?
>
> Anyway, I am trying to install git clone on a second computer with the
> same operating system (Ubuntu 16.04.4 LTS) as one where the installation
> worked.
>
> I checked the dependencies:
>
> sudo apt-get install intltool
> sudo apt-get install autoconf automake autotools-dev libsigsegv2 m4
> sudo apt-get install libtool libltdl-dev
> sudo apt-get install libglib2.0-dev
> sudo apt-get install icu-devtools libicu-dev
> sudo apt-get install libboost-all-dev
> sudo apt-get install guile-2.0 guile-2.0-dev
> sudo apt-get install swig2.0
> sudo apt-get install libxml++2.6-dev
> sudo apt-get install libxslt1-dev
> sudo apt-get install xsltproc
> sudo apt-get install libgtest-dev
> sudo apt-get install google-mock
> sudo apt-get install gtk+3.0
> sudo apt-get install libgtk-3-dev
> sudo apt-get install libwebkit2gtk-4.0-37
> sudo apt-get install libwebkit2gtk-4.0-dev
>
> cmake -D WITH_AQBANKING=OFF -D WITH_OFX=OFF ../gnucash  finished with no
> errors
>
> However, during *make* I can't get it past:
>
> [ 28%] Generating ../../lib/gnucash/scm/ccache/2.0/gnucash/core-utils.go
> Backtrace:
> In srfi/srfi-1.scm:
>  619: 19 [for-each # (file)> #]
> In scripts/compile.scm:
>  182: 18 [#
> "/media/Projects/Gnucash/master/gnucash/libgnucash/
> core-utils/core-utils.scm"]
> In system/base/target.scm:
>   59: 17 [with-target "x86_64-pc-linux-gnu" ...]
> In system/base/compile.scm:
>  150: 16 [compile-file 
> "/media/Projects/Gnucash/master/gnucash/libgnucash/core-utils/core-utils.scm"
> ...]
>   43: 15 [call-once # ()>]
> In ice-9/boot-9.scm:
>  171: 14 [with-throw-handler #t ...]
> In system/base/compile.scm:
>   59: 13 [#]
>  153: 12 [#
> #]
>  216: 11 [read-and-compile # #:from ...]
>  232: 10 [lp (# # # # ...) # #]
>  180: 9 [lp # # # ...]
> In ice-9/boot-9.scm:
> 2401: 8 [save-module-excursion # language/scheme/compile-tree-il.scm:29:3 ()>]
> In language/scheme/compile-tree-il.scm:
>   31: 7 [# ()>]
> In ice-9/psyntax.scm:
> 1106: 6 [expand-top-sequence ((re-export gnc-build-userdata-path)) () ...]
>  989: 5 [scan ((re-export gnc-build-userdata-path)) () ...]
>  279: 4 [scan ((# #)) () (()) ...]
> In ice-9/boot-9.scm:
> 2094: 3 [call-with-deferred-observers # ice-9/eval.scm:416:20 ()>]
>  768: 2 [for-each #
> #]
> In unknown file:
>?: 1 [scm-error misc-error #f ...]
> In ice-9/boot-9.scm:
>  106: 0 [#
> misc-error ...]
>
> ice-9/boot-9.scm:106:20: In procedure # ice-9/boot-9.scm:97:6 (thrown-k . args)>:
> ice-9/boot-9.scm:106:20: *Undefined variable: gnc-build-userdata-path
>  May this is the main symptom  ... How can I fix it?*
> libgnucash/core-utils/CMakeFiles/scm-core-utils.dir/build.make:61: recipe
> for target 'lib/gnucash/scm/ccache/2.0/gnucash/core-utils.go' failed
> make[2]: *** [lib/gnucash/scm/ccache/2.0/gnucash/core-utils.go] Error 1
> CMakeFiles/Makefile2:3937: recipe for target 'libgnucash/core-utils/
> CMakeFiles/scm-core-utils.dir/all' failed
> make[1]: *** [libgnucash/core-utils/CMakeFiles/scm-core-utils.dir/all]
> Error 2
> Makefile:160: recipe for target 'all' failed
> make: *** [all] Error 2
>
> Regards,
>   Roger
>
>
> On Sat, Mar 3, 2018 at 10:04 AM, Roger Miskowicz <rmisk...@gmail.com>
> wrote:
>
>> Thanks John, I thought I had.  Sorry for the inconvenience.
>>
>> Working great now,
>>   Roger
>>
>> On Sat, Mar 3, 2018 at 9:35 AM, John Ralls <jra...@ceridwen.us> wrote:
>>
>>>
>>>
>>> > On Mar 3, 2018, at 2:51 AM, Roger Miskowicz <rmisk...@gmail.com>
>>> wrote:
>>> >
>>> > Thanks John, I looked at that line several times and didn't notice the
>>> '/'.
>>> >
>>> > Now using:
>>> >
>>> > cmake   ..
>>> >
>>> > the output seems fine except for:
>>> >
>>> > -- Performing Test have_mod_mask - Failed
>>> >
>>> > Even so, I tried 'make' with the following failure:
>>> >
>>> > [ 48%] Building C object gnucash/gnome-utils/CMakeFiles
>>> /gncmod-gnome-utils.dir/account-quickfill.c.o
>>> > :0:38: error: redeclaration of enumerator
>>> ‘GDK_SHIFT_MASK’
>>> > /usr/include/gtk-3.0/gdk/gdktypes.h:318:3: note: in expansion of
>>> macro ‘GDK_MODIFIER_INTENT_DEFAULT_MOD_MASK’
>>> >GDK_MODIFIER_INTENT_DEFAULT_MOD_MASK,
>>> >  

Gnucash 2.7.5 Installation

2018-03-02 Thread Roger Miskowicz
I am having difficulty building gnucash 2.7.5 from the latest git clone.

I have modified  by:

adding:
cmake_minimum_required(VERSION 3.5)

changed:
#include 
to:
#include 

I am using:

cmake -D CMAKE_INSTALL_PREFIX=/~/gnucash/gnucash-devel -D
CMAKE_PREFIX_PATH=~/gnucash ../gnucash

which gives me the following errors:

CMake Error at CMakeLists.txt:5 (file):
  file problem creating directory: /glib-2.0/schemas


-- Performing Test have_mod_mask
-- Performing Test have_mod_mask - Failed
CMake Error at gnome/CMakeLists.txt:59 (gnc_add_swig_guile_command):
  Unknown CMake command "gnc_add_swig_guile_command".

My OS is: Ubuntu 16.04.4 LTS

I would appreciate any help in addressing these errors as well as any
related guidance for building 2.7.5.

Roger
___
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: Gnucash 2.7.5 Installation

2018-03-03 Thread Roger Miskowicz
Thanks John, I looked at that line several times and didn't notice the '/'.

Now using:

cmake   ..

the output seems fine except for:

-- Performing Test have_mod_mask - Failed

Even so, I tried 'make' with the following failure:

[ 48%] Building C object
gnucash/gnome-utils/CMakeFiles/gncmod-gnome-utils.dir/account-quickfill.c.o
:0:38: error: redeclaration of enumerator ‘GDK_SHIFT_MASK’
/usr/include/gtk-3.0/gdk/gdktypes.h:318:3: note: in expansion of macro
‘GDK_MODIFIER_INTENT_DEFAULT_MOD_MASK’
   GDK_MODIFIER_INTENT_DEFAULT_MOD_MASK,
   ^
In file included from /usr/include/gtk-3.0/gdk/gdkapplaunchcontext.h:30:0,
 from /usr/include/gtk-3.0/gdk/gdk.h:32,
 from /usr/include/gtk-3.0/gtk/gtk.h:30,
 from
/home/roger/Projects/Gnucash/gnucash-2.7.5/gnucash/gnucash/gnome-utils/account-quickfill.h:43,
 from
/home/roger/Projects/Gnucash/gnucash-2.7.5/gnucash/gnucash/gnome-utils/account-quickfill.c:25:
/usr/include/gtk-3.0/gdk/gdktypes.h:233:3: note: previous definition of
‘GDK_SHIFT_MASK’ was here
   GDK_SHIFT_MASK= 1 << 0,
   ^
:0:52: error: expected ‘,’ or ‘}’ before ‘|’ token
/usr/include/gtk-3.0/gdk/gdktypes.h:318:3: note: in expansion of macro
‘GDK_MODIFIER_INTENT_DEFAULT_MOD_MASK’
   GDK_MODIFIER_INTENT_DEFAULT_MOD_MASK,
   ^
gnucash/gnome-utils/CMakeFiles/gncmod-gnome-utils.dir/build.make:77: recipe
for target
'gnucash/gnome-utils/CMakeFiles/gncmod-gnome-utils.dir/account-quickfill.c.o'
failed
make[2]: ***
[gnucash/gnome-utils/CMakeFiles/gncmod-gnome-utils.dir/account-quickfill.c.o]
Error 1
CMakeFiles/Makefile2:8265: recipe for target
'gnucash/gnome-utils/CMakeFiles/gncmod-gnome-utils.dir/all' failed
make[1]: *** [gnucash/gnome-utils/CMakeFiles/gncmod-gnome-utils.dir/all]
Error 2
Makefile:160: recipe for target 'all' failed
make: *** [all] Error 2

I am guessing I need to fix:

-- Performing Test have_mod_mask - Failed

but have no idea how.

I have checked that all the following are installed, note I am not sure it
is important but I have swig3.0:

sudo apt-get install intltool
sudo apt-get install autoconf automake autotools-dev libsigsegv2 m4
sudo apt-get install libtool libltdl-dev
sudo apt-get install libglib2.0-dev
sudo apt-get install icu-devtools libicu-dev
sudo apt-get install libboost-all-dev
sudo apt-get install guile-2.0 guile-2.0-dev
sudo apt-get install swig2.0 *** here I have swig3.0 ***
sudo apt-get install libxml++2.6-dev
sudo apt-get install libxslt1-dev
sudo apt-get install xsltproc
sudo apt-get install libgtest-dev
sudo apt-get install google-mock
sudo apt-get install gtk+3.0
sudo apt-get install libgtk-3-dev
sudo apt-get install libwebkit2gtk-4.0-37
sudo apt-get install libwebkit2gtk-4.0-dev


Again, I would appreciate your support,

Regards,
  Roger

On Sat, Mar 3, 2018 at 12:22 AM, John Ralls <jra...@ceridwen.us> wrote:

>
>
> > On Mar 2, 2018, at 2:48 PM, Roger Miskowicz <rmisk...@gmail.com> wrote:
> >
> > I am having difficulty building gnucash 2.7.5 from the latest git clone.
> >
> > I have modified  by:
> >
> > adding:
> > cmake_minimum_required(VERSION 3.5)
> >
> > changed:
> > #include 
> > to:
> > #include 
>
> >
> > I am using:
> >
> > cmake -D CMAKE_INSTALL_PREFIX=/~/gnucash/gnucash-devel -D
> > CMAKE_PREFIX_PATH=~/gnucash ../gnucash
>
> >
> > which gives me the following errors:
> >
> > CMake Error at CMakeLists.txt:5 (file):
> >  file problem creating directory: /glib-2.0/schemas
> >
> >
> > -- Performing Test have_mod_mask
> > -- Performing Test have_mod_mask - Failed
> > CMake Error at gnome/CMakeLists.txt:59 (gnc_add_swig_guile_command):
> >  Unknown CMake command "gnc_add_swig_guile_command”.
> >
> > My OS is: Ubuntu 16.04.4 LTS
> >
> > I would appreciate any help in addressing these errors as well as any
> > related guidance for building 2.7.5.
>
> First, remove your customizations. They’re wrong.
>
> Second, use $HOME instead of ~. The shell understands ~ but cmake does
> not. BTW, even the shell doesn’t understand /~/. That’s why you got the
> “file problem creating directory” error.
>
> Third, don’t use CMAKE_PREFIX_PATH unless you have custom-built
> dependencies that you want to build against instead of the system-provided
> ones. Even if you do, build, test, and run GnuCash with the system-provided
> ones first so that you have a good baseline to build on.
>
> Finally, you don’t say what is the path to your build directory, but the
> “unknown cmake command” error suggests that it’s a subdirectory of the
> source directory. If that’s the case the last argument to cmake should be
> “..” rather than “../gnucash”. There is a CMakeLists.txt in gnucash, but
> that bypasses all of the configu

Re: [GNC] No Maximise button on 3.3 in Ubuntu 18.10

2018-10-12 Thread Roger Miskowicz
I tried what I think you said in 18.04 and 3.35 can not shrink to where
there is a horizontal scroll bar.  The Maximize '+' button is there
regardless whether the tabs are at the top or right side.

Just to ensure we're talking about the same button.  In Xubuntu 18.04 I
don't have the Maximize button as displayed by Alt-Touch instead at the top
right I just have '-+x' which seems to be what I have in all my
applications.  The '+' toggles maximize or not maximize.

On Fri, Oct 12, 2018 at 10:38 AM Colin Law  wrote:

> Sorry, I should have said that all other apps I have tried operate as
> expected.
>
> Alt-Space does not show Maximise.  It does show Unmaximise but it is
> greyed out.
>
> However I have had a Eureka moment.  There seems to be a change with
> 3.3 to do with window width. On 2.9 the window (when not maximised)
> could be shrunk down so that the right hand fields of the register
> were not visible, and a scroll bar then appeared at the bottom of the
> register.  With 3.3 it appears this is not possible, the window can
> not be shrunk to the point where a scroll bar appears.  I have my tabs
> shown down the right hand side and the result is that the smallest
> window size is slightly larger than the size of my screen.  In that
> state it is not possible to maximise the window.  If I place the tabs
> at the top then it is possible to maximise.  I can then place them at
> the side again and it stays maximised but if I close and re-open
> gnucash then it unmaximises again.
>
> This may also have been an issue happened when I built 3.3 from source
> on Ubuntu 18.04 to test it, I don't know. I may just not have noticed
> it then.
>
> Colin
> On Fri, 12 Oct 2018 at 14:59, Robert Heller  wrote:
> >
> > At Fri, 12 Oct 2018 14:39:11 +0100 Colin Law  wrote:
> >
> > >
> > > Running Gnucash 3.3 in Ubuntu 18.10 Beta from the Ubuntu repository
> > > there is no maximise button, and the window will not maximise by the
> > > usual shortcut methods.  Has anyone else seen anything similar?
> > > Should I file a bug under the Ubuntu system or gnucash?
> >
> > Window [size] management (maximize,minimize,resize, etc.) is a function
> of the
> > window manager (duh). Can you maximise any other application windows
> under
> > Ubuntu 18.10 Beta?
> >
> > It *might* be an issue with the GUI toolkit gnucash is using or
> *possibly* a
> > gnucash bug in how gnucash is using that GUI toolkit.
> >
> >
> > >
> > > 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.
> > >
> > >
> >
> > --
> > Robert Heller -- 978-544-6933
> > Deepwoods Software-- Custom Software Services
> > http://www.deepsoft.com/  -- Linux Administration Services
> > hel...@deepsoft.com   -- Webhosting Services
> >
> ___
> 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] No Maximise button on 3.3 in Ubuntu 18.10

2018-10-12 Thread Roger Miskowicz
Seems ok in Build ID: git 3.3-5-g820cd842f+ (2018-10-06) on Ubuntu 18.04
which you may have already tried.  I have not installed 18.10 yet.  Is it
there for other applications or with Alt-Space?

On Fri, Oct 12, 2018 at 9:40 AM Colin Law  wrote:

> Running Gnucash 3.3 in Ubuntu 18.10 Beta from the Ubuntu repository
> there is no maximise button, and the window will not maximise by the
> usual shortcut methods.  Has anyone else seen anything similar?
> Should I file a bug under the Ubuntu system or gnucash?
>
> 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.
>
___
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] Build of GitHub Clone Fails

2018-10-07 Thread Roger Miskowicz
Thanks Jim, from your post I found that going back to previous versions
before compiling worked for me:

sudo apt-get install libwebkit2gtk-4.0-dev=2.20.1-1
libwebkit2gtk-4.0-37=2.20.1-1 gir1.2-webkit2-4.0=2.20.1-1
libjavascriptcoregtk-4.0-dev=2.20.1-1 gir1.2-javascriptcoregtk-4.0=2.20.1-1
libjavascriptcoregtk-4.0-18=2.20.1-1

On Sun, Oct 7, 2018 at 8:49 AM Jim Passmore  wrote:

> Tried building 3.3, and found same thing.  Known bug from upstream.  Don't
> know status of fix.
>
> https://bugs.launchpad.net/ubuntu/+source/webkit2gtk/+bug/1795901
>
>
> --
>
> *Jim Passmore*j...@passmore4.com
>
>
>
>
> On Sun, Oct 7, 2018 at 8:01 AM Roger Miskowicz  wrote:
>
>> This worked for initial build of v3.3 but today when trying to build from
>> lates clone the build fails at:
>>
>> [ 60%] Building C object
>> gnucash/html/CMakeFiles/gncmod-html.dir/gnc-html-webkit2.c.o
>> In file included from /usr/include/webkitgtk-4.0/webkit2/webkit2.h:54:0,
>>  from
>> /media/Projects/Gnucash/gnucash/gnucash/html/gnc-html-webkit2.c:49:
>> /usr/include/webkitgtk-4.0/webkit2/WebKitJavascriptResult.h:28:10: fatal
>> error: jsc/jsc.h: No such file or directory
>>  #include 
>>
>> I tried reinstalling webkitgtk-4.0 but still no luck.  Although this may
>> not be a gnucash problem specifically I am wondering if anyone can suggest
>> a solution so that I can complete the latest build?
>> ___
>> 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] Can't export transactions to CSV

2018-10-07 Thread Roger Miskowicz
When I try to export transactions in Build ID: git 3.3-5-g820cd842f+
(2018-10-06) I get stuck on choosing a filename.  As you can see below the
'NEXT' is grayed out.

[image: image.png]
___
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] Build of GitHub Clone Fails

2018-10-07 Thread Roger Miskowicz
This worked for initial build of v3.3 but today when trying to build from
lates clone the build fails at:

[ 60%] Building C object
gnucash/html/CMakeFiles/gncmod-html.dir/gnc-html-webkit2.c.o
In file included from /usr/include/webkitgtk-4.0/webkit2/webkit2.h:54:0,
 from
/media/Projects/Gnucash/gnucash/gnucash/html/gnc-html-webkit2.c:49:
/usr/include/webkitgtk-4.0/webkit2/WebKitJavascriptResult.h:28:10: fatal
error: jsc/jsc.h: No such file or directory
 #include 

I tried reinstalling webkitgtk-4.0 but still no luck.  Although this may
not be a gnucash problem specifically I am wondering if anyone can suggest
a solution so that I can complete the latest build?
___
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] Fwd: Can't export transactions to CSV

2018-10-07 Thread Roger Miskowicz
I eventually noticed the 'OK' button!  Now everything is good.


When I try to export transactions in Build ID: git 3.3-5-g820cd842f+
(2018-10-06) I get stuck on choosing a filename.  As you can see below the
'NEXT' is grayed out.

[image: image.png]
___
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] Formatting reply posts (Re: Copy a month's budget)

2019-01-13 Thread Roger Miskowicz
Quote from someone in the group: "Almost 40 years
later doing a Masters I learnt that things had changed in the meantime,
and what was unchangeable was now fluid, but my peer professionals are
often stuck back in the disproven teachings of last century."  

On Sun, Jan 13, 2019 at 8:50 AM Fred Smith 
wrote:

> On Sun, Jan 13, 2019 at 12:59:54PM +1100, Liz wrote:
> > On Sat, 12 Jan 2019 21:11:35 + (UTC)
> > aeg via gnucash-user  wrote:
> >
> > > It's good to see that the formatting issue is being addressed and my
> > > suggestion is as follows...
> > >- Italicise all quoted text from previous contributors.
> > >- Delete any previously posted text that is irrelevant or
> > > duplicated.
> > >- Compose all fresh comments with normal text.
> > >- Start with an introductory comment at the top (if required).
> >
> > Some of us do not use html editors for email, so your suggestion that I
> > italicise all quoted text is a non-starter.
> >
> > Liz
>
> Besides, when God invented email, He intended it to be plain text! :)
> (III Hezekiah, 9:32)
>
> --
>  Fred Smith -- fre...@fcshome.stoneham.ma.us
> -
>But God demonstrates his own love for us in this:
>  While we were still sinners,
>   Christ died for us.
> --- Romans 5:8 (niv)
> --
> ___
> 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] *.deb package for GnuCash 3.4 Released

2018-12-30 Thread Roger Miskowicz
Thank you very much, worked perfectly.

On Sun, Dec 30, 2018 at 3:34 PM Stephen M. Butler  wrote:

> For those interested in a deb file but not willing to compile yourself:
> https://drive.google.com/open?id=172BMIvLgD7twcGEWkR5GcddoZ_A4QWfY -->
> gnucash_3.4-0-1_amd64.deb
>
> The zero after 3.4 is the commit number after the tag (there are
> currently none) and the one after that is the first attempt to build
> that on my box.
>
> I have removed the interim 3.3 versions from Google drive and now only
> have the base 3.3 version also available:
> https://drive.google.com/open?id=1PUEq8qE4yzq_HrBfJZQ376QbdTmJdYsP -->
> gnucash_3.3-0-1_amd64.deb
>
> These were built on Ubuntu 18.04 based on a git pull of the maint branch.
>
> --Steve
>
>
> On 12/30/18 12:01 PM, John Ralls wrote:
> > The GnuCash development team announces GnuCash 3.4, the fifth release of
> the 3.x stable release series.
> >
> > Changes
> >
> > Between 3.3 and 3.4, the following bugfixes were accomplished:
> >
> >   • Bug 498072 - GnuCash show taxes on invoice when individual taxes
> is not checked
> >   • Bug 760825 - On duplicating a bill, the entry dates should be
> set to the bill date, not to the current date - followup:
> > Use neutral time on entry post dates instead of canonical time
> >   • Bug 767772 - Associated file with transaction is lost when
> moving entry between accounts
> >   • Bug 775580 - Inaccurate information provided for "Common
> Accounts" when using "New Account Hierarchy Setup"
> >   • Bug 779565 - Treeview header combos do not work at first load
> >   • Bug 788332 - Last Reconcile Date column sorts by day of month
> not date
> >   • Bug 789674 - Close Book tool regression
> >   • Bug 793156 - Incorrect date sort order in Generic import matcher
> window
> >   • Bug 795080 - Some dates reset to 01/01/1970
> >   • Bug 795237 - Update of "wohnungsw" template
> >   • Bug 795425 - Version 2018 of german account template SKR49
> >   • Bug 796772 - Receivable Ageing Report invalid URL for Totals
> column
> >   • Bug 796806 - Crash after OFX import if line item dragged
> >   • Bug 796842 - Add new employee window may not fit on screen
> >   • Bug 796849 - Load another QIF file causes "that file already
> loaded" dialog
> >   • Bug 796875 - Unable to use arrow keys to advance past pre-filled
> text in register
> >   • Bug 796878 - test-qofsession fails on x86_32.
> >   • Bug 796883 - Register text oddities
> > HOME and END need to be treated like right and left arrow keys.
> >   • Bug 796886 - OFX Import does not show source account in the
> transaction matching window
> >   • Bug 796887 - Remove account slot key color if there is no valid
> color
> >   • Bug 796893 - invoice.GetDatePosted() and other date related
> functions returns strange values for uninitalised dates.
> >   • Bug 796896 - Button to complete an export not intuitively placed
> or discoverable
> >   • Bug 796903 - Crash when searching invoice by Invoice Owner
> >   • Bug 796914 - Customer Summary is giving error
> >   • Bug 796915 - Update Account colour background
> >   • Bug 796940 - Invalid transaction date-posted KVP causes
> date-posted to not be saved.
> >   • Bug 796944 - Tab navigation From Company Address field in New
> Book Options
> >   • Bug 796945 - Search Search Criteria window does not scroll when
> added criteria exceed a certain amount
> >   • Bug 796948 - Scheduled Transactions Entered Since Last Run Are
> not Visible
> >   • Bug 796949 - Incorrect conversion of 0,01 USD to EUR
> >   • Bug 796960 - Incorrect amount sort order in Generic import
> matcher window
> >   • Bug 796961 - Can't overwrite existing MYSQL database, V3.3.
> >   • Bug 796967 - gnclock table not removed when using PostgreSQL.
> >   • Bug 796978 - Deleting a split of same account as register
> cancels the transaction without warning
> >   • Bug 796981 - Gnucash crashes with critical error when selecting
> another file
> >   • Bug 796982 - Import Bills & Invoices: change in un_escape()
> routine causes description and notes fields to be mangled.
> >   • Bug 796988 - Untranslated string in CSV transaction importer
> >   • Bug 796989 - some date/time does not honor user locale
> >   • Bug 796994 - Unable to generate Tax Report because of pricedb
> error
> > The following fixes and improvements were not associated with bug
> reports:
> >
> >   • Set up filepath utils to determine the GNC_CONFIG_HOME in the
> same way as GNC_DATA_HOME.
> > Until now GNC_CONFIG_HOME was more or less hard-coded. Now it can be set
> via environment variable GNC_CONFIG_HOME. In addition it will automatically
> be created to avoid potential user confusion.
> >   • Redesign gnc-uri-utils
> >   • gnc_uri_get_components will now return NULL as protocol
> if the input is a normal file system path instead of a uri (it used to
>