Pages:
Author

Topic: Beta 4 Released! BitMiner - Advanced Mining GUI - page 3. (Read 50249 times)

hero member
Activity: 700
Merit: 500
/offtopic Fail Quote

/ontopic.

I don't see how that would work, as I would need the new link hardcoded into the program. I -might- be able to work something out with dropbox and my no-ip. I'll have to see.

Eta for v3 - 1 hour (hopefully)
Xer
member
Activity: 99
Merit: 10
Cant you do something realy cheesy like using a free dns redirect using no-ip.org or simmilar to a filehost link and some basic html parsing to get the version number from the file name on the page. that would allow you to skip having a server for it for now.

Edit. removed quotes as they bugged out.


hero member
Activity: 700
Merit: 500
will there be an ubuntu version?

If somebody donates a reasonable amount to me, it shouldn't take that long, but it will still take a bit of work to get it working with Mono.
hero member
Activity: 484
Merit: 500
will there be an ubuntu version?
hero member
Activity: 700
Merit: 500
could you please move away from the windows aero dependancy? i hate having it on. other then that, great software.

Just download the XP version. All that's different in that is I've disabled Aero for it Smiley


Cant see a download link for xp V2.1   Huh

Ah, dammit. Sorry I didn't update the post for it. Im gunna release Beta 3 in about an hour. Hang tight.

Haha no problem. What about integrating a small auto update, or atleast semi update that would notify the user about a update + link for it?


Not sure how i'd implement that, as I need a server for it for a static version file. If anyone reading this has one I can use, PM me.
Xer
member
Activity: 99
Merit: 10
could you please move away from the windows aero dependancy? i hate having it on. other then that, great software.

Just download the XP version. All that's different in that is I've disabled Aero for it Smiley


Cant see a download link for xp V2.1   Huh

Ah, dammit. Sorry I didn't update the post for it. Im gunna release Beta 3 in about an hour. Hang tight.

Haha no problem. What about integrating a small auto update, or atleast semi update that would notify the user about a update + link for it?
hero member
Activity: 700
Merit: 500
could you please move away from the windows aero dependancy? i hate having it on. other then that, great software.

Just download the XP version. All that's different in that is I've disabled Aero for it Smiley


Cant see a download link for xp V2.1   Huh

Ah, dammit. Sorry I didn't update the post for it. Im gunna release Beta 3 in about an hour. Hang tight.
Xer
member
Activity: 99
Merit: 10
could you please move away from the windows aero dependancy? i hate having it on. other then that, great software.

Just download the XP version. All that's different in that is I've disabled Aero for it Smiley


Cant see a download link for xp V2.1   Huh
hero member
Activity: 700
Merit: 500
could you please move away from the windows aero dependancy? i hate having it on. other then that, great software.

Just download the XP version. All that's different in that is I've disabled Aero for it Smiley
Xer
member
Activity: 99
Merit: 10
could you please move away from the windows aero dependancy? i hate having it on. other then that, great software.
hero member
Activity: 700
Merit: 500
Any other suggestions for Beta 3? Pretty much finished the stats page.
hero member
Activity: 700
Merit: 500
on a side note, to avoid tons of "whatever" + str1 + "something else" +str2, use string.format, it makes the code much neater Smiley

I am haha, as I said it's the reflection on the code that looks bad
legendary
Activity: 2058
Merit: 1452
on a side note, to avoid tons of "whatever" + str1 + "something else" +str2, use string.format, it makes the code much neater Smiley
hero member
Activity: 700
Merit: 500
suggestions:

ENCRYPT the file that has all the user data. not doing so is EXTREMELY dangerous.
------------
Code:
private void Form1_FormClosing(object sender, FormClosingEventArgs e)
    ProcessStartInfo info = new ProcessStartInfo("taskkill.exe", "/IM poclbm.exe /F");
a better way would be to use process.start to start the miner, and use process.kill or something to end it.
------------
Code:
private void p_OutputDataReceived(object sender, DataReceivedEventArgs e)
                StreamReader reader = new StreamReader(client.OpenRead("http://blockexplorer.com/q/getblockcount"));
it's better to cache the results. loading a new page every time the console outputs something (at least once per second) is just wasteful.
------------
Code:
public Miner(int Device, int framerate, bool vectors, int work, string Nickname, Pool p, MinerProgram mp, string PoolUser, string PoolPass, string host)
        string str2 = (((((("-d" + this.DeviceID) + " --host=" + this.pURI) + " --port=" + this.pPort.ToString()) + " --user=" + this.pUser) + " --pass=" + this.pPass) + " -f " + framerate.ToString()) + " -w " + work.ToString();
why so many brackets? also, you're missing some spaces in between the args.
 


1) I suppose I could do that, but then the person could just reflect the program and get the encryption key. May as well do it for v3.
2) Yeah I know it's a bit sloppy, I havn't been able to add the processes to an array, but when I figure out whats wrong there I can just go through the entire array calling kill().
3) It doesn't call it everytime it recieves output, it calls it when a new block has been started, I'll change it though.
4) The actual codes not like that, thats a result of reflecting it, I was like wtf when I saw that too haha.
legendary
Activity: 1022
Merit: 1001
Sorry if i missed something, but can you please just give me an overview of why i should use this instead of GUIMiner please?

Thanks!

Well at the moment, it allows you to configure and save multiple accounts, it has failover/fallover support (whatever you wanna call it), v2.2 with have a statistics page showing you your overall mh/s, your expected btc income and the amount of btc you have in pools (if you enable it). Eventually it's going to be an all in one miner.

Yea including a graph and/or stats in the GUI panel would be awesome. Anything like that that saves time having to go to other sites/links to check stats would be great. Perhaps you could include a real-time hi-lo buy/sell panel for bitcoin too?
legendary
Activity: 2058
Merit: 1452
suggestions:

ENCRYPT the file that has all the user data. not doing so is EXTREMELY dangerous.
------------
Code:
private void Form1_FormClosing(object sender, FormClosingEventArgs e)
    ProcessStartInfo info = new ProcessStartInfo("taskkill.exe", "/IM poclbm.exe /F");
a better way would be to use process.start to start the miner, and use process.kill or something to end it.
------------
Code:
private void p_OutputDataReceived(object sender, DataReceivedEventArgs e)
                StreamReader reader = new StreamReader(client.OpenRead("http://blockexplorer.com/q/getblockcount"));
it's better to cache the results. loading a new page every time the console outputs something (at least once per second) is just wasteful.
------------
Code:
public Miner(int Device, int framerate, bool vectors, int work, string Nickname, Pool p, MinerProgram mp, string PoolUser, string PoolPass, string host)
        string str2 = (((((("-d" + this.DeviceID) + " --host=" + this.pURI) + " --port=" + this.pPort.ToString()) + " --user=" + this.pUser) + " --pass=" + this.pPass) + " -f " + framerate.ToString()) + " -w " + work.ToString();
why so many brackets? also, you're missing some spaces in between the args.
 
hero member
Activity: 700
Merit: 500
Sorry if i missed something, but can you please just give me an overview of why i should use this instead of GUIMiner please?

Thanks!

Well at the moment, it allows you to configure and save multiple accounts, it has failover/fallover support (whatever you wanna call it), v2.2 with have a statistics page showing you your overall mh/s, your expected btc income and the amount of btc you have in pools (if you enable it). Eventually it's going to be an all in one miner.
newbie
Activity: 11
Merit: 0
Sorry if i missed something, but can you please just give me an overview of why i should use this instead of GUIMiner please?

Thanks!
hero member
Activity: 700
Merit: 500
bump >< 2.1 released. Lots of bugfixes.
hero member
Activity: 700
Merit: 500
Check PM Smiley

Everyone reading this, managed to get it fixed, remember, you need to copy the ENTIRE poclbm directory into the same directory as BitMiner.exe

In the in the BitMiner folder, there are 3 items.

BitMiner.exe < file
Simple7.dll < file
poclbm < folder with rest of poclbm program in it.
Pages:
Jump to: