Pages: 1 2 3 4 :: [one page] |
|
Author |
Thread Statistics | Show CCP posts - 0 post(s) |

Grimdahl
Mystic Lion Hearts Sev3rance
8
|
Posted - 2013.01.07 22:07:00 -
[1] - Quote
Well, it took some time, but thanks to the sqlite conversion of he latest staticDB done by Steve Ronuken evemeep now is also up to date.
current version is Evemeep V3.1.1.11 The offical place to download installer is here: https://sourceforge.net/projects/evemeep/
Help me fixing bugs - report bugs, suggestions,... via mail to [email protected] or use the ingame maillist "evemeep"
changes for release 3.1.1.11:
- Retribution 1.0.7 463858 DB
- Journal/Transactions list view update, search and filter functionality
showing in/out value of filtered items (and yes -- you could export the data to excel and do the same there :-)
|

Vaerah Vahrokha
Vahrokh Consulting
3641
|
Posted - 2013.01.09 00:50:00 -
[2] - Quote
Grimdahl wrote:Well, it took some time, but thanks to the sqlite conversion of he latest staticDB done by Steve Ronukenevemeep now is also up to date. current version is Evemeep V3.1.1.11 The offical place to download installer is here: https://sourceforge.net/projects/evemeep/Help me fixing bugs - report bugs, suggestions,... via mail to [email protected]or use the ingame maillist "evemeep" changes for release 3.1.1.11:
- Retribution 1.0.7 463858 DB
- Journal/Transactions list view update, search and filter functionality
showing in/out value of filtered items (and yes -- you could export the data to excel and do the same there :-)
I am really, really pleased to see you are still supporting that awesome program! Auditing | Collateral holding and insurance | Consulting | PLEX for Good Charity
Twitter channel |

Aphelion Thunderclap
Capsuleer's Legion
15
|
Posted - 2013.01.10 12:12:00 -
[3] - Quote
same here great program glad to have a update |

Grimdahl
Mystic Lion Hearts Sev3rance
10
|
Posted - 2013.01.24 18:09:00 -
[4] - Quote
Updated Core component to avoid the server error on Eve-Central when fetching prices. Use Core 1.1.1.8 |

Grimdahl
Mystic Lion Hearts Sev3rance
10
|
Posted - 2013.02.22 14:04:00 -
[5] - Quote
Evmeep updated -- latest retribution DB |

Aphelion Thunderclap
Digital Machines Digital Dominion
16
|
Posted - 2013.02.22 22:42:00 -
[6] - Quote
yay |

T3abag
Cutting Edge Incorporated RAZOR Alliance
9
|
Posted - 2013.03.03 20:04:00 -
[7] - Quote
Grimdahl, did you change the way the updater works now? There's no "button" for "Check Updates" on the menu any longer... |

Grimdahl
Mystic Lion Hearts Sev3rance
10
|
Posted - 2013.03.08 11:48:00 -
[8] - Quote
T3abag wrote:Grimdahl, did you change the way the updater works now? There's no "button" for "Check Updates" on the menu any longer...
Yes I did. Now it checks on each startup if there is an update available. If there is something a new menu item will appear ("start updater").
-> No need to manually check for updates anymore.
Also changed; You cannot select single items for update (usually an update affected multiple components anyway and mixing them caused errors).
I am still not happy with the updater (lots of update issues- most of them are related to Vista/W7 access control) so you may expect changes/corrections --- and if you have any issues -- let me know -- so I can find a way to get it working |

T3abag
Cutting Edge Incorporated RAZOR Alliance
9
|
Posted - 2013.03.10 22:46:00 -
[9] - Quote
Grimdahl wrote:T3abag wrote:Grimdahl, did you change the way the updater works now? There's no "button" for "Check Updates" on the menu any longer... Yes I did. Now it checks on each startup if there is an update available. If there is something a new menu item will appear ("start updater"). -> No need to manually check for updates anymore. Also changed; You cannot select single items for update (usually an update affected multiple components anyway and mixing them caused errors). I am still not happy with the updater (lots of update issues- most of them are related to Vista/W7 access control) so you may expect changes/corrections --- and if you have any issues -- let me know -- so I can find a way to get it working Here's how I would do it (I architect/code software for a living).
A "check update" process can run without being elevated, so do that on startup or via a button or whatever. You can easily just do that from inside EveMeep. If you find an update, then prompt the user that you need to close EveMeep, and then close it for them and run the updater. Tons of ways to do this of course, but the easiest is to simply launch the process that actually does your updates and then shut down your app. Let the updater wait until the main program has shut down (it's easy to code it to look for EveMeep in the open window list by title). Then run the update elevated, have it pop up a UI showing progress, etc. Once the update's complete, re-launch EveMeep. Pretty sure this is the technique EveHQ uses (and same with EveMon, and tbh, most apps that update themselves).
One of the things you have issues with is that you're writing stuff into C:\Program Files (x86). Don't ever do that. Always write to AppData or My Documents. C:\Program Files (x86) must be read only on Vista/7/2008. For you, this means things like your profiles. Any static stuff (like the Eve database) can live in program files, but user data should not. |

Grimdahl
Mystic Lion Hearts Sev3rance
10
|
Posted - 2013.03.11 17:51:00 -
[10] - Quote
T3abag wrote: Here's how I would do it (I architect/code software for a living).
A "check update" process can run without being elevated, so do that on startup or via a button or whatever. You can easily just do that from inside EveMeep. If you find an update, then prompt the user that you need to close EveMeep, and then close it for them and run the updater. Tons of ways to do this of course, but the easiest is to simply launch the process that actually does your updates and then shut down your app. Let the updater wait until the main program has shut down (it's easy to code it to look for EveMeep in the open window list by title). Then run the update elevated, have it pop up a UI showing progress, etc. Once the update's complete, re-launch EveMeep. Pretty sure this is the technique EveHQ uses (and same with EveMon, and tbh, most apps that update themselves).
One of the things you have issues with is that you're writing stuff into C:\Program Files (x86). Don't ever do that. Always write to AppData or My Documents. C:\Program Files (x86) must be read only on Vista/7/2008. For you, this means things like your profiles. Any static stuff (like the Eve database) can live in program files, but user data should not.
Thanks for the info -- you describe exactly the current behaviour and how I wanted to make the old XP code working (there is still Salvis inside :-) The reason for being unhappy with the current state is because there is still lots of old code/unneeded functionality (eg. Evmeep can simply be xcopy-installed --- no need to use the crappy Windows installer) - so expect changes (right after I finished my basic PI calc plugin) |
|

Grimdahl
Mystic Lion Hearts Sev3rance
10
|
Posted - 2013.04.26 17:24:00 -
[11] - Quote
Evemeep V3.1.1.14 is out
check first post for details |

Horman Sheridan
The Companionship Test Alliance Please Ignore
0
|
Posted - 2013.04.30 20:07:00 -
[12] - Quote
Hi Grimdahl, I have problems with the PI-Tool! When trying to use select a PI-Product using the pulldown in the top left corner, nothing happens. No window opens!
 |

Grimdahl
Mystic Lion Hearts Sev3rance
10
|
Posted - 2013.05.03 06:37:00 -
[13] - Quote
Horman Sheridan wrote:Hi Grimdahl, I have problems with the PI-Tool! When trying to use select a PI-Product using the pulldown in the top left corner, nothing happens. No window opens! 
Thanks -- I guess I found and corrected the issue (if loading DB was too slow --- PI data were not available at plugin loading time).
Please update (PI 0.0.0.2).
|

Grimdahl
Mystic Lion Hearts Sev3rance
10
|
Posted - 2013.05.03 07:07:00 -
[14] - Quote
updated to V3.1.1.15 - as popup might lock Evemeep startup |

Dash'nar
Solarise Flares Get Off My Lawn
0
|
Posted - 2013.05.23 17:27:00 -
[15] - Quote
Hello thank you so much for keeping eve meep going I love the industry tab to track when things are ending for jobs. I see you have pos state!! I'm excited to use this but when I open it using a CEO api that shows fuel levels and stuff in assets the pos state comes up blank? Nothing in it and I don't see way to add my pos's. Is there something I'm doing wrong?
Thanks! |

Grimdahl
Mystic Lion Hearts Sev3rance
10
|
Posted - 2013.05.29 13:39:00 -
[16] - Quote
Dash'nar wrote:Hello thank you so much for keeping eve meep going I love the industry tab to track when things are ending for jobs. I see you have pos state!! I'm excited to use this but when I open it using a CEO api that shows fuel levels and stuff in assets the pos state comes up blank? Nothing in it and I don't see way to add my pos's. Is there something I'm doing wrong?
Thanks!
The POSs are fetched via API . Please re-check the API key you are using. You also may check the meep-xxxxx.log for any issues (and let me know via mail) |

Grimdahl
Mystic Lion Hearts Sev3rance
10
|
Posted - 2013.06.04 08:43:00 -
[17] - Quote
Odyssey 1.0.0.89097 database available
|

Sharon Tate
Cutting Edge Incorporated RAZOR Alliance
19
|
Posted - 2013.06.07 04:39:00 -
[18] - Quote
Grimdahl wrote:Odyssey 1.0.0.89097 database available
Good stuff. The decryptors on the invention screen need to be updated with the new names and the new decryptors, however. |

Kor'el Izia
63
|
Posted - 2013.06.12 15:53:00 -
[19] - Quote
Great tool, loving that it's still supported.
It seems however that my wallet might have gotten too cluttered over the two and a half years that I've been using it, because now it hangs when trying to open the wallet(double clicking the wallet on the overview). When opening it are you summarizing it all from the start to current date or have optimized to process from the latest processed date to current? Is it some value that got outofbounds? Using the transactions tab works just fine.
I like looking back and seeing how my wealth has grown  |

Malkys en Daire
Malkys INC.
0
|
Posted - 2013.06.20 11:28:00 -
[20] - Quote
Just wanted to say: Big thanks for this awesome tool! It's by far the best I saw in the industrial/corporation direction!
|
|

Kor'el Izia
69
|
Posted - 2013.07.20 08:19:00 -
[21] - Quote
Grimdahl it solved itself after 15-20 minutes of the program working on all threads(4) but not at 100% more like 30-40% load |

Grimdahl
Mystic Lion Hearts Sev3rance
12
|
Posted - 2013.10.10 19:30:00 -
[22] - Quote
Changed Evemeep Updater/Evmeep3.exe to a Launcher + Dll.
Update from current Version to new one may be a bit tricky. I suggest to download Evemeep3.exe , put it into EveMeep folder and start it. If you use old Updater you also can find the new Exe in the 'Update' folder.
Also format of Transactions.XML is changed -- you need to setup your stored transaction filters again. |

Grimdahl
Mystic Lion Hearts Sev3rance
12
|
Posted - 2013.10.10 21:32:00 -
[23] - Quote
Due to issues with x64 machines reverted to previous version |

Grimdahl
Mystic Lion Hearts Sev3rance
12
|
Posted - 2013.10.11 09:22:00 -
[24] - Quote
Well -- done some more testing with different machines, fixed some issues -- and activated new downloads again.
Note: after update - the new launcher will be started which will ask for install again. You may continue with 'Start Evemeep' here.
|

Sharon Tate
Cutting Edge Incorporated RAZOR Alliance
21
|
Posted - 2013.11.21 21:36:00 -
[25] - Quote
Any update on a rubicon database update? |

Grimdahl
Mystic Lion Hearts Sev3rance
12
|
Posted - 2013.11.22 17:39:00 -
[26] - Quote
Rubicon DB is on server. Sqlite conversion done by Steve Ronuken
|

Sharon Tate
Cutting Edge Incorporated RAZOR Alliance
21
|
Posted - 2013.11.22 19:21:00 -
[27] - Quote
Outstanding, installed and working fine! |

Thunder Fenix
Imperial Academy Amarr Empire
14
|
Posted - 2013.12.25 15:32:00 -
[28] - Quote
Hello everyone,
i've a little problem with this awesome tool: after set it up with apis etc i've discovered that ME and PE lvls of my corp ship BPOs are imported exactly but same doesn't happen for components BPOs that are still seen as ME 0 PE 0 (instead even those are all researched).
Could anyone explain why this and how to fix it?
Other little thing: any plan to make price import from a selected system?
ty everyone o7 |

Grimdahl
Mystic Lion Hearts Sev3rance
13
|
Posted - 2013.12.30 21:34:00 -
[29] - Quote
Thunder Fenix wrote: i've a little problem with this awesome tool: after set it up with apis etc i've discovered that ME and PE lvls of my corp ship BPOs are imported exactly but same doesn't happen for components BPOs that are still seen as ME 0 PE 0 (instead even those are all researched).
Thsi is because the BP stats cannot be read via API (afaik) directly. You get BP stats if the BP is used within an industry job. Doing any job on the component BPOs (eg. copy) should fix the numbers.
Thunder Fenix wrote: Other little thing: any plan to make price import from a selected system?
It would make sense for the trade systems (Jita,Amarr,...) -> I will check it
Thunder Fenix wrote: P.S.: even if i try to manually set the ME/PE lvls i get this error message: " there is something wrong - no BP row found for displayed item " and that bpo is showed in my assets :S
Tried and it works for me. Maybe there is a handling issue. I will contact you ingame |

Thunder Fenix
Imperial Academy Amarr Empire
14
|
Posted - 2013.12.31 16:30:00 -
[30] - Quote
Grimdahl wrote: Thsi is because the BP stats cannot be read via API (afaik) directly. You get BP stats if the BP is used within an industry job. Doing any job on the component BPOs (eg. copy) should fix the numbers.
Didn't know this !!
Thunder Fenix wrote: Other little thing: any plan to make price import from a selected system?
It would make sense for the trade systems (Jita,Amarr,...) -> I will check it
Would be awesome!!
Thunder Fenix wrote: P.S.: even if i try to manually set the ME/PE lvls i get this error message: " there is something wrong - no BP row found for displayed item " and that bpo is showed in my assets :S
Grimdahl wrote:Tried and it works for me. Maybe there is a handling issue. I will contact you ingame
If i change ME/PE lvls from the production window it works fine even for me, the other time i tried to change lvls from the assets window (thinking that way maybe it would "save" em) but maybe it's not supposed to work tha way :P
Ty a lot for the help and for the tool that is fantastic!!!
|
|

Raylan Scott
Molon Labe. Public Disorder.
9
|
Posted - 2014.01.02 23:19:00 -
[31] - Quote
I just downloaded today, but it doesn't seem to be downloading my information from the API.
Anything I should do to get it going? |

Grimdahl
Mystic Lion Hearts Sev3rance
13
|
Posted - 2014.01.03 08:07:00 -
[32] - Quote
Raylan Scott wrote:I just downloaded today, but it doesn't seem to be downloading my information from the API.
Anything I should do to get it going?
I assume you entered valid API keys. It usually take some minutes before first download starts (you can see it working in 'Notification' window).
Of course there might be some issues depending on your network setup,... -- If you want me to verify -- please send the logs (LauncherLog.log and meep-....log usually to be found in .../Evemeep/Log directory) to me. |

Grimdahl
Mystic Lion Hearts Sev3rance
13
|
Posted - 2014.01.03 13:29:00 -
[33] - Quote
Version 3.1.2.3 released - system specific (Jita :-) prices available
Let me know if you find some bug (may have missed to update some references to regions,etc). |

Hamar Khiba
Xe Services LLC
0
|
Posted - 2014.01.08 21:03:00 -
[34] - Quote
The program looks awesome, but also quite complicated. Are there any instructions to get hold off? I've been trying to find stuff out on my own, but there is just soooo much!
Like in the Invention screen. There are all sorts of windows and I can't figure out how to use everything to max effect.
Thanks for the help! |

Amely Miles
Lone Star Warriors Yulai Federation
6
|
Posted - 2014.01.09 00:53:00 -
[35] - Quote
^^ i'm with this guy ....ive been trying to find out the total cost of a thanatos if i was to build each and every part by its self and i can only get it to do one part at a time |

Grimdahl
Mystic Lion Hearts Sev3rance
14
|
Posted - 2014.01.11 14:01:00 -
[36] - Quote
Hamar Khiba wrote:The program looks awesome, but also quite complicated. Are there any instructions to get hold off? I've been trying to find stuff out on my own, but there is just soooo much!
Like in the Invention screen. There are all sorts of windows and I can't figure out how to use everything to max effect.
Thanks for the help!
I have to agree -- it is complicated. But the good thing is - you do not need to use every setting,... The creator of Evemeep (Salvis Tallan) wanted to have every possible setting that is why you usually can configure everything (with the older plugins).
You always can contact me ingame directly -- or via maillist 'Evemeep' and I will try to help.
Regarding invention: (Basic info) select the T2 BP you want to invent select the character you invent with (or just set the skills ) select 'use Maximum Runs' under Blueprint Copy Attributes
tool displays the needed datacors -- the prices for it -- and calculates the costs/per result run deopnding on the success chance (green marked value within 'invention summary') You can choose between 4 different success values:
- calculated (CCP formula)
- your selected character success rates (how many runs/success did you have already)
- profile success rates (how many runs/success did you/ other characters/corp have already)
- manually selected success rates (just enter how many runs/success you want)
Beside that you may select one of the possible decryptors -> affects cost/successful run and number of runs and of course you can enter a meta item for increased success rate
|

Grimdahl
Mystic Lion Hearts Sev3rance
14
|
Posted - 2014.01.11 14:10:00 -
[37] - Quote
Amely Miles wrote:^^ i'm with this guy ....ive been trying to find out the total cost of a thanatos if i was to build each and every part by its self and i can only get it to do one part at a time
well this should be easy: (Basic usage)
select "Thanatos Blueprint' -> press 'Add Blueprint' now setup the ME of your Thanatos BP (if Evemeep does not find one in your assets) Important: select producing character/skills Assuming you build the parts also yourself -> press Button 'resolve BPs' now it should display the needed Basic materials (trit,...) depending on the MEs of your component BPs (window above)
it calcs the actual build price (on rtight side)
By using the 'edit colums' you can configure prices, check if you have all needed mins on you build location, and ....
Regarding Production Time: This is the maximum needed time --- means if you do some parallel builds you are faster of course.
|

Grimdahl
Mystic Lion Hearts Sev3rance
14
|
Posted - 2014.01.28 22:13:00 -
[38] - Quote
Rubicon 1.1 database 1.1.94321 is available. |

Ripher
ANCIENT EMPIRE
0
|
Posted - 2014.02.08 22:19:00 -
[39] - Quote
Ive used eve meep for years and have always liked it i did a format a few weeks ago and downloaded eve meep but now i cant get it to install i keep getting this message " install/update Evemmep in a non writeable folder is currently NOT supported " thats word for word even the misspelling and i downloaded from the link on this forum also have try to run it in admin too
|

Wafou Ka'Djo
Yellow Box Ltd. Gentlemen's Agreement
15
|
Posted - 2014.02.08 23:54:00 -
[40] - Quote
Ripher wrote:Ive used eve meep for years and have always liked it i did a format a few weeks ago and downloaded eve meep but now i cant get it to install i keep getting this message " install/update Evemmep in a non writeable folder is currently NOT supported " thats word for word even the misspelling and i downloaded from the link on this forum also have try to run it in admin too
Same here, I tried it right now.
|
|

Grimdahl
Mystic Lion Hearts Sev3rance
15
|
Posted - 2014.02.14 16:12:00 -
[41] - Quote
Well, there are some issues with this. I tried on a different PC --- after I managed to settup the right folder -- it worked.
try this: * startup evemeep exe * select a writeable folder on your hardisk (within settings) * press OK and ignore error message * restart evemeep * again selet same folder in settings (now dther should be plugins listes as well) -> OK
-> 'install Evemeep' button |

Wafou Ka'Djo
Yellow Box Ltd. Gentlemen's Agreement
15
|
Posted - 2014.02.14 17:10:00 -
[42] - Quote
Fixed! ;)
I just created a new sub-directory under an already writable directory. The installation then went smooth. |

Grimdahl
Mystic Lion Hearts Sev3rance
15
|
Posted - 2014.02.15 11:26:00 -
[43] - Quote
new launcher 1.1.0.4 available -- should solve some issues. Also tells you the directory you try to install to with the 'non writeable folder' message.
|

Ripher
ANCIENT EMPIRE
0
|
Posted - 2014.02.15 15:46:00 -
[44] - Quote
yep that worked thank you there is no program out there that can come close to eve meep i hope ya never stop working on it thank you
|

Fenix Inferni
Dark Fenix Rising The Volition Cult
0
|
Posted - 2014.02.16 16:04:00 -
[45] - Quote
Grimdahl wrote:new launcher 1.1.0.4 changes for release 3.1.2.3:
- trade hubs can be selected as price reference region (Amarr, Jita, Rens, Dodixie, Oursulaert)
[/list]
I've last version of evemeep but i can't find any option to select specific system price.... What am i missing? |

Grimdahl
Mystic Lion Hearts Sev3rance
15
|
Posted - 2014.02.24 18:18:00 -
[46] - Quote
Fenix Inferni wrote:
I've last version of evemeep but i can't find any option to select specific system price.... What am i missing?
Go to any item : eg. 'Assets' -> Shuttles -> Caldari Caldari Shuttle select 'Price information tab'
near center you will see 'Configure Default Region' Button (this selects default region and stores the selection item specific - you may have a different default region for another item
in the lower section you choose which price you usually use to calculate selling/buying/building items..... (the values here you can also set within the profile settings)
|

Fenix Inferni
Dark Fenix Rising The Volition Cult
0
|
Posted - 2014.03.09 08:13:00 -
[47] - Quote
Ok ty a lot!
This way i can set regional default prices for single items and that's still good, but i was seeking for smth more specific: what about if i want to set system specific (example Jita) for whole items prices? |

Grimdahl
Mystic Lion Hearts Sev3rance
15
|
Posted - 2014.03.09 20:49:00 -
[48] - Quote
Fenix Inferni wrote:Ok ty a lot!
This way i can set regional and system specific default prices for single items and that's still good, but i was seeking for smth more fast: what about if i want to set system specific (example Jita) for WHOLE items prices? Actually i must set it manually for any single item, am i wrong?
You got me there -- I had to dig through the code just to find out --- that is missing. Currently it is coded to use 'The Forge' prices if you did not set anything yourself. What is missing here is a simple 'set default region' and probably a 'reset to default' switch.
Will add this. |

Fenix Inferni
Dark Fenix Rising The Volition Cult
0
|
Posted - 2014.03.11 08:24:00 -
[49] - Quote
U're gonna be my Hero!!!  |

Grimdahl
Mystic Lion Hearts Sev3rance
15
|
Posted - 2014.03.12 10:12:00 -
[50] - Quote
Guess I mixed something up
when I started to add the 'Default Region' stuff I found that I need to correct my previous comments.
As said --- the coded 'Default Region is 'The Forge' until you set a new default. It does not matter at which item you do it -- the ''Default Region' is valid for all items (the change button is just located at each item for easy access). Same is true for 'Selected Regions' setting (similar like 'Default region' but just keeps several regions).
-> The 'Default Region' is NOT stored per item (what i mixed up is the type defaults -- this ones are stored per item)
|
|

Grimdahl
Mystic Lion Hearts Sev3rance
15
|
Posted - 2014.03.12 13:03:00 -
[51] - Quote
database updated to rubicon 1.3.95173
as usual sqlite db conversion provided by Steve Ronuken |

Grimdahl
Mystic Lion Hearts Sev3rance
15
|
Posted - 2014.03.15 16:43:00 -
[52] - Quote
Important note:!!!! Today I recognized that Evemeep cannot contact API server anymore. somehow the address changed from api.eve-online.com to api.eveonline.com Until next update of Evemeep you need to update the address manually - see "Profile" -> "Current Profile Details" -> "Eve-API Information"
with 'edit' change 'https://]api.eve-online.com" to "https://api.eveonline.com"
|

Slow Deterioration
Facultas Magnus
1
|
Posted - 2014.03.15 17:16:00 -
[53] - Quote
Cheers, I was afraid the updater broke something :D |

Regnar Avastum
Perkone Caldari State
0
|
Posted - 2014.03.17 16:32:00 -
[54] - Quote
Hi there,
The program still doesn't connect to the server even after I changed the url in the settings to "https://api.eveonline.com". Any solutions?
Thank you. |

Grimdahl
Mystic Lion Hearts Sev3rance
15
|
Posted - 2014.03.17 17:33:00 -
[55] - Quote
Regnar Avastum wrote:Hi there,
The program still doesn't connect to the server even after I changed the url in the settings to "https://api.eveonline.com". Any solutions?
Thank you.
Did you doublecheck -- if it is there? (close Evemeep -- start again) Is there any error message? -- if yes -- send it to me (mail, message,...) |

Grimdahl
Mystic Lion Hearts Sev3rance
15
|
Posted - 2014.03.22 12:41:00 -
[56] - Quote
Regnar Avastum wrote:Hi there,
The program still doesn't connect to the server even after I changed the url in the settings to "https://api.eveonline.com". Any solutions?
Thank you.
Hi again,
thanks to 'Zita Devon' -- he found another reason:
He had to update the firewall settings for 'Evemeep'
and some additional hint: the correct entry in Evemeep is: https://api.eveonline.com/ <- see the last '/' after the address
|

Regnar Avastum
Perkone Caldari State
2
|
Posted - 2014.03.29 13:31:00 -
[57] - Quote
Hi,
Sorry it took ages to get back to you, I thought I subscribed to the thread. Your additional hint saved the day, I forgot the "/" everything is in order now thank you :) Providing-áTrade/Manufacture Spreadsheets |

Maya Bewell
MorningStar Technology
0
|
Posted - 2014.05.04 09:56:00 -
[58] - Quote
Still one of best Industrial tools out there. Thank you. |

Amely Miles
Exiled Tech
10
|
Posted - 2014.05.04 15:22:00 -
[59] - Quote
is this program going to be changed to keep up with this expansion? |

Grimdahl
Mystic Lion Hearts Sev3rance
17
|
Posted - 2014.05.07 17:06:00 -
[60] - Quote
Amely Miles wrote:is this program going to be changed to keep up with this expansion? Well,
I will try to do so. As lots of changes are not available in details yet (database, new APIs,..) I cannot really determine how big the changes will be.
But from what we know up to date -- lots of stuff need to be changed. Therfore I suggest that you post your preferences (most used utility) to make a priority list on which to start with.
|
|

Grimdahl
Mystic Lion Hearts Sev3rance
17
|
Posted - 2014.06.03 21:15:00 -
[61] - Quote
Kronos database 1.0.98534 available.
|

JP Boirelle
Shinn Enterprises
4
|
Posted - 2014.06.08 13:06:00 -
[62] - Quote
I'm getting an API-Server Down error message and nothing is updating API side |

Grimdahl
Mystic Lion Hearts Sev3rance
17
|
Posted - 2014.06.21 21:00:00 -
[63] - Quote
JP Boirelle wrote:I'm getting an API-Server Down error message and nothing is updating API side Did you set the new API serber address as can be found within this thread? Are you behind some Proxy? |

Wuronz
La Courneuve - Sciences and Industry
0
|
Posted - 2014.07.15 02:13:00 -
[64] - Quote
Can't get my API key working too,
tried
Quote:Until next update of Evemeep you need to update the address manually - see "Profile" -> "Current Profile Details" -> "Eve-API Information"
and nothing works :/
EDIT : IT works perfectly i just had to wait about 2 minutes and my informations appeared !
Thanks for your work, its my favorite tool |

JP Boirelle
Shinn Enterprises
4
|
Posted - 2014.07.15 05:18:00 -
[65] - Quote
Grimdahl wrote:JP Boirelle wrote:I'm getting an API-Server Down error message and nothing is updating API side Did you set the new API serber address as can be found within this thread? Are you behind some Proxy?
I have changed it as instructed and no change. I am not behind a proxy |

Hadryel Brazuka
Imperium .H.E.M.P. Chained Reactions
0
|
Posted - 2014.07.20 16:09:00 -
[66] - Quote
Same here....
The API server a down, it says. |

Isaac Lobo
Tec-IV
0
|
Posted - 2014.07.21 06:10:00 -
[67] - Quote
Everyone having trouble with API SERVER DOWN do it:
Go on profile -> Current Profile Details -> Internet Preferences -> Click in EDIT and change the base url to " https://api.eveonline.com/ " without the commas. Do not forget the / .
Wait for 2~3 minutes, it'll update and work as well. |

JP Boirelle
Shinn Enterprises
4
|
Posted - 2014.07.21 07:18:00 -
[68] - Quote
Isaac Lobo wrote:Everyone having trouble with API SERVER DOWN do it: Go on profile -> Current Profile Details -> Internet Preferences -> Click in EDIT and change the base url to " https://api.eveonline.com/ " without the commas. Do not forget the / . Wait for 2~3 minutes, it'll update and work as well.
That works. Thanks |

Grimdahl
Mystic Lion Hearts Sev3rance
17
|
Posted - 2014.07.22 08:54:00 -
[69] - Quote
Crius updaste notification!
Good and bad news here: The good is --- Evemeep will continue The bad is ---- it will take some time until I change everything.
First step will be ---- update Evemeep for changed API interface -- so it should at least not crash.
Due to the changed ScienceIndustry API the industry jobs and Blueprints will not be displayed/calculated correctly anymore (CCP removed the ME/PE information so Evemeep cannot update BP stats) Also job status handling needs to be reviewed.
Second step: update productions calc I already did basic steps here (CREST) but everything needs to put together and verified.
I will update the status if I have news.
Grimdahl |

Grimdahl
Mystic Lion Hearts Sev3rance
18
|
Posted - 2014.07.26 12:59:00 -
[70] - Quote
First Crius update is available!
Let's see how many updates it needs :-) ( Hey , even CCP seems to need daily updates on this :-)
More to come ....
|
|

Isaac Lobo
Tec-IV Did he say Jump
2
|
Posted - 2014.07.28 05:32:00 -
[71] - Quote
i'm geting "Finished processing 3 components with following erros: EveMeep3 - loading error - Unable to download file" when i try to download update |

Grimdahl
Mystic Lion Hearts Sev3rance
19
|
Posted - 2014.07.28 17:01:00 -
[72] - Quote
Isaac Lobo wrote:i'm geting "Finished processing 3 components with following erros: EveMeep3 - loading error - Unable to download file" when i try to download update
edit: tried a fresh install and it worked
additional hint: retry downloading
I have very often temporary failures and one more note: 'EveMeep3 - loading error - Unable to download file' message can be ignored -> this seems to be an old outdated component whic is not used anymore --- but somewhere stuck in the database
|

Grimdahl
Mystic Lion Hearts Sev3rance
19
|
Posted - 2014.07.28 17:03:00 -
[73] - Quote
already known issue: industry jobs are displayed multiple times (within lists)
|

Isaac Lobo
Tec-IV Did he say Jump
2
|
Posted - 2014.07.28 17:21:00 -
[74] - Quote
issue: production time is not beeing calculated in production plugin |

Isaac Lobo
Tec-IV Did he say Jump
2
|
Posted - 2014.07.28 18:31:00 -
[75] - Quote
issue: L/M/S Ship Assembly Array 2% reduction in required materials is not geting into calculation |

Ilan Bashar
The Fields of Trenzalore
0
|
Posted - 2014.08.05 15:31:00 -
[76] - Quote
Hi, I used evemeep in the past to great success. Now I want to install it again, but i need a little hint.. where can i find an installer? On Sourceforge there seem to be all sorts of files and versions.. Is there some working package?
cheeers! |

Grimdahl
Mystic Lion Hearts Sev3rance
21
|
Posted - 2014.08.06 09:57:00 -
[77] - Quote
Ilan Bashar wrote:Hi, I used evemeep in the past to great success. Now I want to install it again, but i need a little hint.. where can i find an installer? On Sourceforge there seem to be all sorts of files and versions.. Is there some working package?
cheeers!
In the first posting of this thread you find: current version is Evemeep V3 1.1.0.5 (3.1.3.0) - Note: thats a new Evemeep.exe 1.1.0.5 and EveMeep3Main.dll 3.1.3.0 The offical place to download installer is here: https://sourceforge.net/projects/evemeep/
There is a single Evemeep.exe which is the downloader/installer.
|

Grimdahl
Mystic Lion Hearts Sev3rance
21
|
Posted - 2014.08.06 09:58:00 -
[78] - Quote
Minor update published: it contains latest Crius DB and fix for the neverending updating.
|

Ilan Bashar
The Fields of Trenzalore
0
|
Posted - 2014.08.06 15:51:00 -
[79] - Quote
OK,
here is what happened: I downloaded the file doubleclicked and.. nothing..
So after some copy and pasting of files I found out:
How to install evemeep: Download the file evemeep3.exe from the above mentioned location. Create a folder where you want evemeep to be Put the file in there Run the exe Make sure the installer is using the right directory (the one the exe file is in) Make sure your virus scanner does not prevent the installer from downloading files install! You will then find out that the exe file you downloaded is the main executable.. not some installer or sth..
Cheers Grimdahl for the tool!
|

Grimdahl
Mystic Lion Hearts Sev3rance
21
|
Posted - 2014.08.06 16:17:00 -
[80] - Quote
Ilan Bashar wrote:OK,
here is what happened: I downloaded the file doubleclicked and.. nothing..
Well -- this is not as expected -- can you send me the 'UpdaterLog.log' file which should be near the place you downloaded Evemeep3.exe and doubleclicked it
Probably also some additional info : OS? (admin/user),.... |
|

JP Boirelle
Shinn Enterprises
4
|
Posted - 2014.08.10 03:37:00 -
[81] - Quote
I'm trying invention and the Capital Trimarks aren't in the invention tab to select under the dropdown "Blueprint Information" |

Grimdahl
Mystic Lion Hearts Sev3rance
21
|
Posted - 2014.08.13 14:57:00 -
[82] - Quote
JP Boirelle wrote:I'm trying invention and the Capital Trimarks aren't in the invention tab to select under the dropdown "Blueprint Information"
fixed in 3.1.3.2 |

Grimdahl
Mystic Lion Hearts Sev3rance
21
|
Posted - 2014.08.13 15:00:00 -
[83] - Quote
Grimdahl wrote:already known issue: industry jobs are displayed multiple times (within lists)
Isaac Lobo wrote:issue: production time is not beeing calculated in production plugin
Isaac Lobo wrote:issue: L/M/S Ship Assembly Array 2% reduction in required materials is not geting into calculation
fixed in 3.1.3.2
|

Grimdahl
Mystic Lion Hearts Sev3rance
21
|
Posted - 2014.08.13 15:02:00 -
[84] - Quote
JP Boirelle wrote:I'm trying invention and the Capital Trimarks aren't in the invention tab to select under the dropdown "Blueprint Information"
Another note: I did not verify Invention and Reprocessing plugin outcome yet . -> both plugins are not updated yet |

Grimdahl
Mystic Lion Hearts Sev3rance
21
|
Posted - 2014.08.14 07:14:00 -
[85] - Quote
Bugfix update. It contains:
- T2 production material numbers fixed
- 'show BP asset' link from production works again
- industryJobs filtering corrected
- removed API trace output of industry download
|

Hilkus Charante
Silent Watchers
0
|
Posted - 2014.08.18 22:54:00 -
[86] - Quote
Even with the latest version, clean install, i still get the error message at installation:
Finished processing 17 components with following errors: EveMeepLauncher - loading error - Unable to download file
Then i hit OK and it will start.
Awesome tool, thanks man! |

JP Boirelle
Shinn Enterprises
4
|
Posted - 2014.08.19 07:41:00 -
[87] - Quote
I have 1 component that refuses to download/install also
Error message is " Finished processing 1 components with the following errors: EveMeepLauncher - loading error - Unable to download file" |

Dumaj Dumaj
Far East Tigers
0
|
Posted - 2014.08.20 01:17:00 -
[88] - Quote
Ilan Bashar wrote:OK, here is what happened: I downloaded the file doubleclicked and.. nothing.. So after some copy and pasting of files I found out: How to install evemeep: Download the file evemeep3.exe from the above mentioned location. Create a folder where you want evemeep to be Put the file in there Run the exe Make sure the installer is using the right directory (the one the exe file is in) Make sure your virus scanner does not prevent the installer from downloading files install! You will then find out that the exe file you downloaded is the main executable.. not some installer or sth..
Yes, that it. The same method.
|

Dumaj Dumaj
Far East Tigers
0
|
Posted - 2014.08.20 01:29:00 -
[89] - Quote
And still dont work ;( Last message in log: 20.08.2014 12:28:08Update Market OrdersMessageOrders finished updating for Dumaj Dumaj And then evemeep crashes.
|

JP Boirelle
Shinn Enterprises
4
|
Posted - 2014.08.20 03:03:00 -
[90] - Quote
Dumaj Dumaj wrote:And still dont work ;( Last message in log: 20.08.2014 12:28:08Update Market OrdersMessageOrders finished updating for Dumaj Dumaj And then evemeep crashes.
Read the OP. There is a new release I needed to download |
|

Dumaj Dumaj
Far East Tigers
0
|
Posted - 2014.08.20 08:36:00 -
[91] - Quote
JP Boirelle wrote:Dumaj Dumaj wrote:And still dont work ;( Last message in log: 20.08.2014 12:28:08Update Market OrdersMessageOrders finished updating for Dumaj Dumaj And then evemeep crashes.
Read the OP. There is a new release I needed to download. Bug: The download is hanging on the last component. Any suggestions? Edit: fixed it by deleting everything in the folder and reinstalling from scratch. Had to put my apis back in too
I did it. Deleted all directories and reinstalled evemeep in new, clean directory. Dont work. |

Hilkus Charante
Silent Watchers
0
|
Posted - 2014.08.21 11:11:00 -
[92] - Quote
Checked the log file.
Error 404 for uri:http://downloads.sourceforge.net/project/evemeep/Latest_Files/EveMEEPLauncher/EveMeep3_1_1_0_6.exe?use_mirror=master |

JP Boirelle
Shinn Enterprises
4
|
Posted - 2014.08.22 11:24:00 -
[93] - Quote
My launcher was working perfectly yesterday, but today it's hanging on the splash screen.
Error log to follow when someone tells this computer illiterate where to find it! |

Grimdahl
Mystic Lion Hearts Sev3rance
22
|
Posted - 2014.08.22 11:54:00 -
[94] - Quote
Sorry to all -- probably my mistake.
Somehow the missing file vanished from DownloadServer. Either I missed to upload it, it got lost during upload -- or it was deleted.
I uploaded the file now --- my usual check -- download it to an installed version and also install a new version succeeded without errors. |

Grimdahl
Mystic Lion Hearts Sev3rance
22
|
Posted - 2014.08.22 11:57:00 -
[95] - Quote
JP Boirelle wrote:My launcher was working perfectly yesterday, but today it's hanging on the splash screen.
Error log to follow when someone tells this computer illiterate where to find it!
There is a 'Log' directory in the folder where you installed Evemeep -- inside there should be one/more meep-****.log files and a 'LauncherLog.log' --- please send both to me |

JP Boirelle
Shinn Enterprises
4
|
Posted - 2014.08.23 02:45:00 -
[96] - Quote
Grimdahl wrote:JP Boirelle wrote:My launcher was working perfectly yesterday, but today it's hanging on the splash screen.
Error log to follow when someone tells this computer illiterate where to find it! There is a 'Log' directory in the folder where you installed Evemeep -- inside there should be one/more meep-****.log files and a 'LauncherLog.log' --- please send both to me
Thanks for your help. I have emailed the 2 log files to the address on the OP. |

Otman Vos
Kruxwaffe
3
|
Posted - 2014.08.23 13:22:00 -
[97] - Quote
Wonderful tool! One small request though, in the "transactions" window, can we have a column sorting method by Date and Time, so I won't have to scroll all the way to the bottom to see most recent transactions? Not a big thing but really helpful!
Thank you again for offering this tool! |

Grimdahl
Mystic Lion Hearts Sev3rance
22
|
Posted - 2014.08.28 19:52:00 -
[98] - Quote
Hyperion db available - as usually sqlite conversion provided by Steve Ronuken. |

Grimdahl
Mystic Lion Hearts Sev3rance
22
|
Posted - 2014.08.28 19:55:00 -
[99] - Quote
Otman Vos wrote:Wonderful tool! One small request though, in the "transactions" window, can we have a column sorting method by Date and Time, so I won't have to scroll all the way to the bottom to see most recent transactions? Not a big thing but really helpful!
Thank you again for offering this tool!
Will be done. |

Grimdahl
Mystic Lion Hearts Sev3rance
22
|
Posted - 2014.09.01 17:58:00 -
[100] - Quote
bugfix/small addons update 3.1.3.4 contains:
- material count for multiple production runs of base material with count 1 corrected - transaction plugin: sorting added - issue with phantom blueprints due to wrong id handling from jobs fixed (probably needs some further update) - added manual reset possibility of API caching time (to force an API update) - added '???' as POS state in case of asset updates caused loss of POS data |
|

Grimdahl
Mystic Lion Hearts Sev3rance
22
|
Posted - 2014.09.21 16:36:00 -
[101] - Quote
3.1.3.5 update
contains:
- blueprint API added - all blueprint numbers (runs/ME/PE) are downloaded once a day
- production plugin shows isk/hour ratio
|

Grimdahl
Mystic Lion Hearts Sev3rance
22
|
Posted - 2014.09.21 16:36:23 -
[102] - Quote
3.1.3.5 update
contains:
- blueprint API added - all blueprint numbers (runs/ME/PE) are downloaded once a day
- production plugin shows isk/hour ratio
|

Grimdahl
Mystic Lion Hearts Sev3rance
22
|
Posted - 2014.10.01 08:23:00 -
[103] - Quote
Oceanus DB and needful things
contains:
- Oceanus DB 1.0.105658
- displays 'finished by' entry in industry view
- renamed 'Unknown' to 'job install costs' in journal
- added BP name within copy job costs in journal
|

Grimdahl
Mystic Lion Hearts Sev3rance
22
|
Posted - 2014.10.01 08:23:08 -
[104] - Quote
Oceanus DB and needful things
contains:
- Oceanus DB 1.0.105658
- displays 'finished by' entry in industry view
- renamed 'Unknown' to 'job install costs' in journal
- added BP name within copy job costs in journal
|

Alicia Stormbringer
xLegion of the dammedx. Moose Alliance
10
|
Posted - 2014.10.15 09:41:00 -
[105] - Quote
Any idea when trying to install this I get the message "install/update Evemeep in a non writable folder... is currently not supported |

Alicia Stormbringer
xLegion of the dammedx. Moose Alliance
10
|
Posted - 2014.10.15 09:41:50 -
[106] - Quote
nevermind |

Grimdahl
Mystic Lion Hearts Sev3rance
22
|
Posted - 2014.11.04 20:57:42 -
[107] - Quote
Phoebe DB 1.0.107269 available
|

Grimdahl
Mystic Lion Hearts Sev3rance
22
|
Posted - 2014.12.13 17:54:27 -
[108] - Quote
Rhea DB and reprocessing plugin,...
contains:
- Rhea DB 1.0.109013
- reprocessing plugin -- first release after Crius changes
- journal data -> XML file replaced by sqlite db
|

Korendil
Black Gryphon Enterprises
0
|
Posted - 2014.12.28 06:56:26 -
[109] - Quote
Greetings.
I've tried to download this but Norton automatically deletes it due to WS.Reputation.1 or something. any ideas whats up? |

Grimdahl
Mystic Lion Hearts Sev3rance
22
|
Posted - 2015.01.15 20:44:06 -
[110] - Quote
Korendil wrote:Greetings.
I've tried to download this but Norton automatically deletes it due to WS.Reputation.1 or something. any ideas whats up?
Well, seems the Norton way to detect Virus software does not work so well :-(
I tried multiple Anti-Virus software --- only Norton thinks Evemeep.exe is a Virus/Trojan. What I found via Google is that many applications have the same issue (false report by Norton) -- and you should contact Norton to check the application.
|
|

Adira Alee
School of Applied Knowledge Caldari State
0
|
Posted - 2015.02.13 01:18:25 -
[111] - Quote
Running version 3.1.3.7 EveDatabase 1.1.0.109013
I run the updater to update to the newest DB as this one is now outdated. The updater starts downloading and finishes after about 3-4 seconds and then starts the program. The DB under ABOUT/version info stays the same, and the database does not update. I have tried updating several times with no difference.
I uninstalled and reinstalled and have the same error. There are no error messages coming up of any type, the program just comes up normally. The database is now outdated so I still have modules that are no longer in the game.
Any thoughts as to what I have done wrong, or how to fix this? |

Grimdahl
Mystic Lion Hearts Sev3rance
22
|
Posted - 2015.02.14 17:17:28 -
[112] - Quote
Adira Alee wrote:Running version 3.1.3.7 EveDatabase 1.1.0.109013
I run the updater to update to the newest DB as this one is now outdated. The updater starts downloading and finishes after about 3-4 seconds and then starts the program. The DB under ABOUT/version info stays the same, and the database does not update. I have tried updating several times with no difference.
I uninstalled and reinstalled and have the same error. There are no error messages coming up of any type, the program just comes up normally. The database is now outdated so I still have modules that are no longer in the game.
Any thoughts as to what I have done wrong, or how to fix this?
Sorry -- seems I was drunk when I created this new DB --- took old Db and partly changed the name.
New DB is uploaded (and I'm not drunk -- I guess :-) |

Grimdahl
Mystic Lion Hearts Sev3rance
22
|
Posted - 2015.02.17 19:46:27 -
[113] - Quote
Tiamat DB available |

Jimmy Kordin
Lone Wolf State
0
|
Posted - 2015.03.13 02:07:23 -
[114] - Quote
Evemeep keeps crashing, even after a clean install, full new API keys for my single character and corp. Log mentions this error:
13-3-2015 3:03:17EndUpdateJournalErrorJimmy Kordin Abort due to constraint violation WalletJournal.ReferenceText may not be NULL bij System.Data.Common.DbDataAdapter.UpdatedRowStatusErrors(RowUpdatedEventArgs rowUpdatedEvent, BatchCommandInfo[] batchCommands, Int32 commandCount) bij System.Data.Common.DbDataAdapter.UpdatedRowStatus(RowUpdatedEventArgs rowUpdatedEvent, BatchCommandInfo[] batchCommands, Int32 commandCount) bij System.Data.Common.DbDataAdapter.Update(DataRow[] dataRows, DataTableMapping tableMapping) bij System.Data.Common.DbDataAdapter.UpdateFromDataTable(DataTable dataTable, DataTableMapping tableMapping) bij System.Data.Common.DbDataAdapter.Update(DataTable dataTable) bij EveAPI.API.EntityDatasetTableAdapters.WalletJournalDBTableAdapter.Update(WalletJournalDBDataTable dataTable) bij EveAPI.Journal.EndUpdateJournal(IAsyncResult iar) 10880480577 - Qa2nwREJ8LgZYmHVXa9veA== - Abort due to constraint violation WalletJournal.ReferenceText may not be NULL
Any idea what might cause this? |

Grimdahl
Mystic Lion Hearts Sev3rance
22
|
Posted - 2015.03.15 17:14:05 -
[115] - Quote
Jimmy Kordin wrote:Evemeep keeps crashing, even after a clean install, full new API keys for my single character and corp. Log mentions this error:
13-3-2015 3:03:17EndUpdateJournalErrorJimmy Kordin Abort due to constraint violation WalletJournal.ReferenceText may not be NULL bij System.Data.Common.DbDataAdapter.UpdatedRowStatusErrors(RowUpdatedEventArgs rowUpdatedEvent, BatchCommandInfo[] batchCommands, Int32 commandCount) bij System.Data.Common.DbDataAdapter.UpdatedRowStatus(RowUpdatedEventArgs rowUpdatedEvent, BatchCommandInfo[] batchCommands, Int32 commandCount) bij System.Data.Common.DbDataAdapter.Update(DataRow[] dataRows, DataTableMapping tableMapping) bij System.Data.Common.DbDataAdapter.UpdateFromDataTable(DataTable dataTable, DataTableMapping tableMapping) bij System.Data.Common.DbDataAdapter.Update(DataTable dataTable) bij EveAPI.API.EntityDatasetTableAdapters.WalletJournalDBTableAdapter.Update(WalletJournalDBDataTable dataTable) bij EveAPI.Journal.EndUpdateJournal(IAsyncResult iar) 10880480577 - Qa2nwREJ8LgZYmHVXa9veA== - Abort due to constraint violation WalletJournal.ReferenceText may not be NULL
Any idea what might cause this?
Might be some bad data coming from DB (DB corrupt) or API . Look for *.db files within your Evemeep resources directory (resources/Profiles) and remove them (or send them to me for repair/test )
|

Grinte Loco
Astronomy Domine Inc.
0
|
Posted - 2015.03.29 14:07:07 -
[116] - Quote
I have V 3.1.3.7 installed, and it seems like I can't set my default region for pricing. Is there some instructions how to properly do that anywhere?
Thanks. |

Grimdahl
Mystic Lion Hearts Sev3rance
22
|
Posted - 2015.03.30 16:02:14 -
[117] - Quote
Grinte Loco wrote:I have V 3.1.3.7 installed, and it seems like I can't set my default region for pricing. Is there some instructions how to properly do that anywhere?
Thanks.
If you setup the 'default region' for an item --- also the 'overall default' is changed. But please note: Evemeep uses 'default region' per item. This means if you setup the 'default region ' it is stored individually too. Drawback here is -- you can change the 'default region' with another item, but the previous set 'default' is stored with the item - unless you change it individually for this item (or delete the 'prices.xml') database
|

Grimdahl
Mystic Lion Hearts Sev3rance
22
|
Posted - 2015.05.01 16:40:41 -
[118] - Quote
Mosaic DB uploaded |
|
|
|
Pages: 1 2 3 4 :: [one page] |