[kmymoney] [Bug 418493] Sauvegarde sur disque local ou reseau impossible

2020-03-21 Thread Gilles LEFEBVRE
https://bugs.kde.org/show_bug.cgi?id=418493

--- Comment #6 from Gilles LEFEBVRE  ---
Morning,
This morning, I have tried the last 5.0.8 version, picked up on « Windows MSVC
64 bit » repertory, file :
kmymoney-master-707-windows-msvc2017_64-cl.exe 
The bug is still present.
If I check the box « monter le disque avant… » (ie the English translation in
5.0.8…), the system Windows crashes (no respons, user and windows in waiting
state…).
I’m using the 5.0.6 version again, due to lack on french translation for 5.0.8.
It ‘s more easy for my family, not so fluent in English…
Thank you for your interest in this case. Best regards. 
G. Lefebvre

Provenance : Courrier pour Windows 10

De : Thomas Baumgart
Envoyé le :samedi 21 mars 2020 06:36
À : gilles.lefebvre5...@yahoo.com
Objet :[kmymoney] [Bug 418493] Sauvegarde sur disque local ou reseauimpossible

https://bugs.kde.org/show_bug.cgi?id=418493

Thomas Baumgart  changed:

   What|Removed |Added

 Resolution|--- |WAITINGFORINFO
 Status|REPORTED|NEEDSINFO

--- Comment #5 from Thomas Baumgart  ---
Did you try to use a newer version? You can get one from
https://binary-factory.kde.org/job/KMyMoney_Release_win64/ which represents the
head of the 5.0 stable branch currently at 5.0.8 plus fixes. Does the problem
persist when you use that version?

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Patch] Docker image for remote development

2020-03-21 Thread Dawid Wrobel
Hi,

I created a Dockerfile and docker-compose that lets me do all my
development remotely. I use it with CLion on my Mac and it works
flawlessly, sparing myself all the dependency handling headaches.

https://github.com/wrobelda/kmymoney/tree/docker_dev_env

Let me know if you want me to document how to set it up under CLion. I am
quite sure VSCode can be configured to do the same.

Regards,
Dawid


Problems after bring two recipients together

2020-03-21 Thread wilken-janssen
Hi there,

 

I use KmyMoney version 5.0.6 for Windows. I have found a problem that is
causing me considerable trouble.

 

I wanted to bring two recipients together. It was the same person, once
first name last name and once last name, first name. I received a message
after performing this action that this is not possible. Well. However, all
entries with this person had disappeared afterwards! Namely in the version
first name last name as well as in the version last name, first name. Due to
the lack of all payments to this person, my account book is of course
completely incorrect.

 

Since I have done this action many times in previous versions without
problems, I had not made a backup. In the interest of other users, I ask for
a troubleshooting.

 

I would also appreciate a way to fix this problem.

 

Greetings from Northern Germany

Herwig Janssen

 

_

Hallo,

 

ich nutze KmyMoney Version 5.0.6 für Windows. Ich habe ein Problem
festgestellt, welches mir nun doch erheblichen Ärger macht.

 

Ich wollte zwei Empfänger zusammen führen. Es handelte sich um die gleiche
Person, einmal Vorname Nachname und einmal Nachname, Vorname. Ich erhielt
nach Ausführung dieser Aktion die Meldung, dass dies nicht möglich sei. Nun
gut. Allerdings waren danach sämtliche Einträge mit dieser Person
verschwunden! Und zwar sowohl in der Version Vorname Nachname als auch in
der Version Nachname, Vorname. Durch das Fehlen sämtlicher Auszahlungen an
diese Person ist mein Kontobuch nun natürlich völlig unzutreffend. 

 

Da ich diese Aktion in früheren Versionen schon häufiger ohne Probleme
vorgenommen habe, hatte ich keine Sicherung vorgenommen. Im Interesse
anderer Nutzer bitte ich um eine Fehlerbehebung.

 

Freuen würde ich mich auch über eine Möglichkeit, dass Problem zu beheben.

Schöne Grüße aus Norddeutschland

Herwig Janssen

 



[Patch] Add a reversing transaction to the one(s) currently selected

2020-03-21 Thread Dawid Wrobel
I added an option to duplicate selected transaction(s) *and* reverse it
(them). Similar functionality exists in GnuCash.

The use case is that for some of the transactions you want to easily add a
reversing transaction and assign it to an Income/Expense category. With
that in mind, the reversed transaction has the same date as the original.

Checked-in to my branch:
https://github.com/wrobelda/kmymoney/tree/add_reversing_transaction

P.S. Are you planning on moving to GitLab and using Pull Requests there to
maintain contributions like these? I am developing on mac and using
Phabricator to submit patches is quite a pain.


Re: [Patch] Add a reversing transaction to the one(s) currently selected

2020-03-21 Thread Thomas Baumgart
Dawid,

On Samstag, 21. März 2020 16:16:43 CET Dawid Wrobel wrote:

> I added an option to duplicate selected transaction(s) *and* reverse it
> (them). Similar functionality exists in GnuCash.
> 
> The use case is that for some of the transactions you want to easily add a
> reversing transaction and assign it to an Income/Expense category. With
> that in mind, the reversed transaction has the same date as the original.
> 
> Checked-in to my branch:
> https://github.com/wrobelda/kmymoney/tree/add_reversing_transaction
> 
> P.S. Are you planning on moving to GitLab and using Pull Requests there to
> maintain contributions like these? I am developing on mac and using
> Phabricator to submit patches is quite a pain.

Eventually we will do that. Guess I have to learn how to work with those pull 
requests then.

I had a quick look at 
https://github.com/wrobelda/kmymoney/commit/170be2e2672ef082943119ccdbc172c424e9f926
 and noticed the following things:

Why do you use

d->m_value = d->m_value * MyMoneyMoney::MINUS_ONE;

instead of

d->m_value = -d->m_value;


Also, make sure to invert the sign of the MyMoneySplit::m_shares member as 
well. Otherwise, your book-keeping is off ;)


-- 

Regards

Thomas Baumgart

https://www.signal.org/   Signal, the better WhatsApp
-
If a train station is where a train stops,
then what stops at a workstation?
-


signature.asc
Description: This is a digitally signed message part.


Re: [Patch] Docker image for remote development

2020-03-21 Thread Thomas Baumgart
Dawid,

On Samstag, 21. März 2020 16:06:07 CET Dawid Wrobel wrote:

> Hi,
> 
> I created a Dockerfile and docker-compose that lets me do all my
> development remotely. I use it with CLion on my Mac and it works
> flawlessly, sparing myself all the dependency handling headaches.
> 
> https://github.com/wrobelda/kmymoney/tree/docker_dev_env
> 
> Let me know if you want me to document how to set it up under CLion. I am
> quite sure VSCode can be configured to do the same.

I don't know either one, but it could certainly be of help for others.

We are still looking for someone with MacOS knowhow to take care of the 'broken'
CI build on 
https://binary-factory.kde.org/view/MacOS/job/KMyMoney_Release_macos/

If you have some ideas what needs to be done that would be great.

-- 

Regards

Thomas Baumgart

https://www.signal.org/   Signal, the better WhatsApp
-
Having trouble with Windows? Reboot!
Having trouble with Linux? Be root!
-


signature.asc
Description: This is a digitally signed message part.


Re: Problems after bring two recipients together

2020-03-21 Thread Thomas Baumgart
Moin Herwig,

On Samstag, 21. März 2020 15:57:12 CET wilken-janssen wrote:

> Hi there,
> 
> I use KmyMoney version 5.0.6 for Windows. I have found a problem that is
> causing me considerable trouble.

That is strange, as I use this feature every now and then myself to get
rid of duplicates, though on newer versions.

> I wanted to bring two recipients together. It was the same person, once
> first name last name and once last name, first name. I received a message
> after performing this action that this is not possible. Well. However, all
> entries with this person had disappeared afterwards! Namely in the version
> first name last name as well as in the version last name, first name. Due to
> the lack of all payments to this person, my account book is of course
> completely incorrect.

That is very, very strange. Can you see if the problem persists in a newer
version of KMyMoney? I have a gut feeling that this 5.0.6 Windows version has
a bunch of problems. Where did you get it from?

The lastest 5.0.8 can be found here: 
https://binary-factory.kde.org/job/KMyMoney_Release_win64/

> Since I have done this action many times in previous versions without
> problems, I had not made a backup. In the interest of other users, I ask for
> a troubleshooting.

Do you know that KMyMoney usually keeps a number of backups by itself? Or is
this feature turned off on your system?

> I would also appreciate a way to fix this problem.

To fix your 'broken' book-keeping is probably only possible with manual labor.

In order to fix the software we would need a way to duplicate the problem first.

> Greetings from Northern Germany

Greeting from Central Germany

Thomas
 

[German translation removed]

-- 

Regards

Thomas Baumgart

https://www.signal.org/   Signal, the better WhatsApp
-
Unix is the most user friendly system I know, the point is
that it is really selective about who is indeed its friend.
-


signature.asc
Description: This is a digitally signed message part.


[kmymoney] [Bug 419082] New: Backup

2020-03-21 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=419082

Bug ID: 419082
   Summary: Backup
   Product: kmymoney
   Version: 5.0.6
  Platform: Windows CE
OS: MS Windows
Status: REPORTED
  Severity: critical
  Priority: NOR
 Component: general
  Assignee: kmymoney-devel@kde.org
  Reporter: richardwc...@gmail.com
  Target Milestone: ---

SUMMARY
Use file-backup but fails to backup

STEPS TO REPRODUCE
1. file/backup
2. Enter Mount point e.g. E:/users/...etc
3. tick box 'mount this directory before backup

OBSERVED RESULT
KMyMoney indicates progess bar 'Mounting E:/User/...etc' but the task freezes
and I have to abort program using windows task manager

EXPECTED RESULT
Backup of file to windows director specified

SOFTWARE/OS VERSIONS
Windows: 10

ADDITIONAL INFORMATION
Re-downloaded KMyMoney 5.0.6 again and re-installed but same bug is present

-- 
You are receiving this mail because:
You are the assignee for the bug.

[kmymoney] [Bug 419082] Backup

2020-03-21 Thread Jack
https://bugs.kde.org/show_bug.cgi?id=419082

Jack  changed:

   What|Removed |Added

 Status|REPORTED|NEEDSINFO
 Resolution|--- |WAITINGFORINFO
 CC||ostroffjh@users.sourceforge
   ||.net

--- Comment #1 from Jack  ---
Is E: already mounted?  If so, no need to tick the "mount" checkbox.  If it is
NOT already mounted, then what is it?  Samba, NFS, USB stick, ...?

-- 
You are receiving this mail because:
You are the assignee for the bug.

[kmymoney] [Bug 419082] Backup

2020-03-21 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=419082

--- Comment #2 from richardwc...@gmail.com ---
Hi
I've tried both ticked and unticked.

KMyMoney installed on C:
I'm trying to backup to already mounted drive E: which is installed and mounted
in PC

Either ticked or unticked, the backup freezes.

Thanks

-- 
You are receiving this mail because:
You are the assignee for the bug.

[kmymoney] [Bug 419082] Backup

2020-03-21 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=419082

--- Comment #3 from richardwc...@gmail.com ---
Sorry forgot to say E: is a NTFS local disk installed on PC

-- 
You are receiving this mail because:
You are the assignee for the bug.

[kmymoney] [Bug 419082] Backup

2020-03-21 Thread Jack
https://bugs.kde.org/show_bug.cgi?id=419082

--- Comment #4 from Jack  ---
So E: is just a normal local hard disk?  Can you run KMyMoney from a command
line to see if it gives any hints what it's waiting for?  Are the permissions
OK on the folder to which you are trying to back up?

-- 
You are receiving this mail because:
You are the assignee for the bug.

[kmymoney] [Bug 418479] Historical Investment Transactions causes crash

2020-03-21 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=418479

--- Comment #5 from Bug Janitor Service  ---
Dear Bug Submitter,

This bug has been in NEEDSINFO status with no change for at least
15 days. Please provide the requested information as soon as
possible and set the bug status as REPORTED. Due to regular bug
tracker maintenance, if the bug is still in NEEDSINFO status with
no change in 30 days the bug will be closed as RESOLVED > WORKSFORME
due to lack of needed information.

For more information about our bug triaging procedures please read the
wiki located here:
https://community.kde.org/Guidelines_and_HOWTOs/Bug_triaging

If you have already provided the requested information, please
mark the bug as REPORTED so that the KDE team knows that the bug is
ready to be confirmed.

Thank you for helping us make KDE software even better for everyone!

-- 
You are receiving this mail because:
You are the assignee for the bug.

[kmymoney] [Bug 418479] Historical Investment Transactions causes crash

2020-03-21 Thread Thomas Baumgart
https://bugs.kde.org/show_bug.cgi?id=418479

--- Comment #6 from Thomas Baumgart  ---
Sorry, I must have missed your last reply. Of course we are interested to take
a look at the details what is causing this problem. Your anonymized data will
be very helpful in this respect. Thanks for your support.

-- 
You are receiving this mail because:
You are the assignee for the bug.