Re: [GNC-dev] [Bug 113772] Add categories for more reporting flexibility

2020-05-14 Thread Matthew Forbis via gnucash-devel
I did get VSCode to work as a development environment with developing on windows.  I hadn't worked out all the kinks out of it, but it was showing great promise.  I could build pretty well on it and then run gdb under it to do debugging.  There is a bit of info I added to the wiki for that

Re: [GNC-dev] gnucash maint: Restrict gnucash.pot comment collection to ones beginning with Translators.

2020-01-04 Thread Matthew Forbis via gnucash-devel
John, It looks like the new comment for translators you added in  gnucash/import-export/log-replay/gnc-log-replay.c  is misspelled, so it might not have the effect you are looking for. Thanks,Matt Sent from Yahoo Mail on Android On Sat, Jan 4, 2020 at 6:00 PM, John Ralls wrote: Updated   

Re: [GNC-dev] Bug 330930

2019-12-02 Thread Matthew Forbis via gnucash-devel
for improvement here. Regards, Geert Op zondag 24 november 2019 20:45:55 CET schreef Matthew Forbis via gnucash- devel: > Hi developers, > > As a foray into fixing bugs, this one looked simple to tackle. Here is the > link for easy access:  https://bugs.gnucash.org/show_bug.cgi?id=330930 >

[GNC-dev] Bug 330930

2019-11-24 Thread Matthew Forbis via gnucash-devel
Hi developers, As a foray into fixing bugs, this one looked simple to tackle. Here is the link for easy access:  https://bugs.gnucash.org/show_bug.cgi?id=330930 As a summary, when having auto decimal point enabled, certain fields are treated as still having the auto decimal point enabled, such

Re: [GNC-dev] Windows Build problem

2019-09-13 Thread Matthew Forbis via gnucash-devel
lse (WIN32 OR APPLE) If (NOT CMAKE_VERSION VERSION_LESS 3.6)    pkg_check_modules (WEBKIT IMPORTED_TARGET webkit2gtk-4.0) Thanks, Matt On Friday, September 13, 2019, 12:26:22 PM CDT, Matthew Forbis via gnucash-devel wrote: Hi, I'm attempting to build on windows to try to still solve

[GNC-dev] Windows Build problem

2019-09-13 Thread Matthew Forbis via gnucash-devel
Hi, I'm attempting to build on windows to try to still solve the report bug I'm interested in and it seems that the patch below might have broken the windows build (or I don't know what I'm doing is also a possibilty). With the commit John pushed yesterday, I get the following error message

Re: [GNC-dev] Building on Windows

2019-08-24 Thread Matthew Forbis via gnucash-devel
p vrijdag 23 augustus 2019 22:49:12 CEST schreef Matthew Forbis via gnucash- > devel: >> I have finally had time to sit down and try again.  When libxml development >> was installed via pacman, it installed icu64 in addition to the icu61 that >> was already installed by the gnuc

Re: [GNC-dev] Building on Windows

2019-08-23 Thread Matthew Forbis via gnucash-devel
t > > > > On Thursday, August 15, 2019, 07:59:56 PM CDT, Matthew Forbis via > gnucash-devel wrote: > > > Hi All, > I have recently worked on building GNUCash on windows to try to debug a > problem I've been having with my reports.  I found a few things that loo

Re: [GNC-dev] Building on Windows

2019-08-16 Thread Matthew Forbis via gnucash-devel
/gnucash/commit/24d4576617995980c147bb49cacafe6f16978573 to fix it. Did your build have that commit? Regards, John Ralls > On Aug 15, 2019, at 7:21 PM, Matthew Forbis via gnucash-devel > wrote: > > Hi responding to myself: > > First, forgot plain text in the first

Re: [GNC-dev] Building on Windows

2019-08-15 Thread Matthew Forbis via gnucash-devel
library.  When I do a pkg-config, it finds the version 61 one.  I suspect this might be related to my problem, but I'm not experienced enough as a programmer to figure out how to solve it. Thanks, Matt On Thursday, August 15, 2019, 07:59:56 PM CDT, Matthew Forbis via gnucash-devel wrote: Hi

[GNC-dev] Building on Windows

2019-08-15 Thread Matthew Forbis via gnucash-devel
Hi All, I have recently worked on building GNUCash on windows to try to debug a problem I've been having with my reports.  I found a few things that look like the script might need to be updated for (or I had something wrong in my procedure). 1.  I had to install some packages through pacman

Segfault when loading file on master

2017-02-25 Thread Matthew Forbis via gnucash-devel
I have compiled master and came across a segfault when loading my normal file that works fine on 2.6.15. It happens during the loading of the file. It looks like possibly the code no longer handles a / in certain places in the file. I traced it to this section in my gnucash file (I cut it

Re: gnc-numeric

2017-02-21 Thread Matthew Forbis via gnucash-devel
On a similiar but slightly unrelated note, on commit https://github.com/Gnucash/gnucash/commit/e322457e , under functioninline GncRational operator+(GncInt128 a, GncRational b), I think it possibly should be | - return b + GncRational(a, 1); | | + return GncRational(a, 1) + b; instead of

Commit 10b006fdc1fe67c6caff7efca163406c89e78187

2016-11-17 Thread Matthew Forbis via gnucash-devel
Hi, I've been lurking on the list for a while and looking at all the code changes to try to better understand c++ programming, but I saw this one that was merged today and it didn't look right, but I might be missing something.  In src/backend/sql/gnc-transaction-sql.cpp, at line 964, I think