bgame-hunter / mdcsvimporter

Automatically exported from code.google.com/p/mdcsvimporter
GNU Lesser General Public License v3.0
0 stars 0 forks source link

Build number #23

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Open Moneydance > Menu bar > Extensions > Manage Extensions
2. Install the listed v.16 CSV Importer
3.

What is the expected output? What do you see instead?
The expected behavior would be for the title bar of the importer to 
state that the installed version is v.16

Instead the title bar states that the installed version is Beta 15.7.7

What version of the product are you using? On what operating system?

Starting Moneydance 2011r2+ (808)
Settings Folder: C:\Users\Kevin\.moneydance
OS: Windows 7 6.1 x86
Java: 1.6.0_21 (Sun Microsystems Inc.)
name and version =CSV Importer Beta 15.7.7=

Please provide any additional information below.

Original issue reported on code.google.com by kmnugent...@gmail.com on 27 Jan 2013 at 3:31

GoogleCodeExporter commented 8 years ago
Hi. This is because MD does not let us use .x in version numbers which is a 
pain.
They have make you use an int which is a whole number.
private static final int VERSION = 15;
I created a string so I could do what I want.
   protected static final String VERSION_STRING = "Beta 15.7.7";
maybe next time I build (not soon), I can change the MD version to 15 so that 
is closer to 15.7.7. I want to show small and big changes not just single 
numbers all the time.

Original comment by stashu....@gmail.com on 27 Jan 2013 at 7:50

GoogleCodeExporter commented 8 years ago
Hi Stan,
Understood and thank you for your reply.
-Kevin N.

Original comment by kmnugent...@gmail.com on 27 Jan 2013 at 8:09