Pages:
Author

Topic: BitcoinTalk++ script - v0.2.96 - page 34. (Read 114219 times)

copper member
Activity: 3948
Merit: 2201
Verified awesomeness ✔
October 28, 2013, 12:17:29 PM
You must have missed my edit
I can add it soon I guess
Ah, yeah I missed that. I think it's quite useful and you can use my code if you want to, but if nobody needs it, then don't worry about it.
legendary
Activity: 1176
Merit: 1260
May Bitcoin be touched by his Noodly Appendage
October 28, 2013, 12:11:53 PM
You must have missed my edit
I can add it soon I guess
copper member
Activity: 3948
Merit: 2201
Verified awesomeness ✔
October 28, 2013, 10:39:31 AM
2. Show number of reports next to "Report scammer": not yet
3. Auto-update unread replies: not yet
Done in 0.2.15
Awesome update! Just one little thing, the page updates even when I move my mouse. That will cause the page to reload when I am opening topics, which could be annoying. Could you add an option to check for mouse movements?
legendary
Activity: 1176
Merit: 1260
May Bitcoin be touched by his Noodly Appendage
October 28, 2013, 10:32:51 AM
2. Show number of reports next to "Report scammer": not yet
3. Auto-update unread replies: not yet
Done in 0.2.15: https://bitcointalksearch.org/topic/hey-268435

I didn't implement the bitcoininformation's "don't refresh if the mouse recently moved" because I didn't want to steal his code and I don't think it's absolutely necessary
Tell me if you think the contrary
legendary
Activity: 1176
Merit: 1260
May Bitcoin be touched by his Noodly Appendage
October 28, 2013, 05:28:47 AM
I still have access to it so I am saving everything if something bad happens
It seems their HTTP servers are down

I deleted some log files and looks like it's ok now
Their admin panel is kinda slow though so it could crash again later
copper member
Activity: 3948
Merit: 2201
Verified awesomeness ✔
October 27, 2013, 02:14:15 PM
The script doesn't seem to be hiding sigs any more on Firefox.

I guess the server is down. no ratings / sig hidings
+1.

@Jackjack, I know it can break the Auto-Update function, but it seems to work fine at the moment. I have to same problems as everyone else Tongue
legendary
Activity: 1764
Merit: 1000
October 27, 2013, 01:07:58 PM
The script doesn't seem to be hiding sigs any more on Firefox.

I guess the server is down. no ratings / sig hidings
legendary
Activity: 966
Merit: 1004
Keep it real
October 27, 2013, 12:30:34 PM
The script doesn't seem to be hiding sigs any more on Firefox.
legendary
Activity: 1764
Merit: 1000
October 27, 2013, 12:29:19 PM
BT++ SETTINGS* says update available, but the userscript checker says there's nothing to update D:
hero member
Activity: 658
Merit: 502
Doesn't use these forums that often.
October 27, 2013, 09:55:47 AM
Any chance we will see the adds disappear?
Or its still a few clicks in Adblock?

or become a hero member and the forum blocks it for me Wink LOL but seriously ads shouldn't be blocked.
The forum has enough money already...
legendary
Activity: 1316
Merit: 1003
October 26, 2013, 11:56:11 PM
Any chance we will see the adds disappear?
Or its still a few clicks in Adblock?
newbie
Activity: 8
Merit: 500
legendary
Activity: 1176
Merit: 1260
May Bitcoin be touched by his Noodly Appendage
October 26, 2013, 07:16:53 AM
Why is it that all ratings are publicly listed? I don't like the idea that if i negatively rate someone, they can find out about it. Thats just likely to start some bs over nothing. It should be anonymous...?

Does nobody agree?
Did you look at the list?
Good luck finding the people one voted against/for
hero member
Activity: 882
Merit: 501
Ching-Chang;Ding-Dong
October 26, 2013, 02:52:16 AM
Why is it that all ratings are publicly listed? I don't like the idea that if i negatively rate someone, they can find out about it. Thats just likely to start some bs over nothing. It should be anonymous...?

Does nobody agree?
legendary
Activity: 1176
Merit: 1260
May Bitcoin be touched by his Noodly Appendage
October 25, 2013, 03:14:25 PM
First of all: if you edit the script yourself you'll likely break the auto-update

1. List of ignored sigs: https://jackjack.alwaysdata.net/btpp/ignoredsigs.php
2. Show number of reports next to "Report scammer": not yet
3. Auto-update unread replies: not yet

(I don't have access to my dev computer, which is needed to update the script)
copper member
Activity: 3948
Merit: 2201
Verified awesomeness ✔
October 21, 2013, 05:28:54 PM
Another nice function would be auto-updating the "Show new replies to your posts" page after a while. I can code it, but to lazy atm. Roll Eyes

EDIT: Added it for myself. It now refreshes every 5 seconds if I don't move the mouse (to open stuff you know). I wanted to create a option for it, but I have no idea how you buildup the settings page. I see a lot of things, but I don't know to change it Tongue

If someone wants it, add the following at the end of the file:
Code:
if(document.location.href.split('/index.php?action=unreadreplie').length>1){
    document.onmousemove = (function() {
        var onmousestop = function() {
            location.reload(true);
        }, thread;
       
        return function() {
            clearTimeout(thread);
            thread = setTimeout(onmousestop, 5000);
        };
    })();
}
copper member
Activity: 3948
Merit: 2201
Verified awesomeness ✔
October 21, 2013, 07:53:06 AM
I'm glad you like it
We are currently 4 to hide at least one signature
I will make a page of blocked signatures when there are enough of us

how's the current status? already enough ppl using it to show a list like 'top 10 most anoying/ignored signatures'?

the list of reported potential scammers would be nice if sorted by amount of reports

if someone already earned reports, the report button could show in brakets the amount of reports, maybe bold and colored red
eg: Report scammer (1)
I agree with those two ideas! That would make it a lot easier to see how many people think someone is a scammer.
sr. member
Activity: 376
Merit: 312
Can you say... nighty-night?
October 21, 2013, 07:50:34 AM
I'm glad you like it
We are currently 4 to hide at least one signature
I will make a page of blocked signatures when there are enough of us

how's the current status? already enough ppl using it to show a list like 'top 10 most anoying/ignored signatures'?

the list of reported potential scammers would be nice if sorted by amount of reports

if someone already earned reports, the report button could show in brakets the amount of reports, maybe bold and colored red
eg: Report scammer (1)
legendary
Activity: 1176
Merit: 1260
May Bitcoin be touched by his Noodly Appendage
October 19, 2013, 03:49:48 PM
also, with BT enabled, you can't edit your profile properly. try to change your avatar
Are you sure it's because of BT++?
Doesn't seem to make the site crash for me
legendary
Activity: 1134
Merit: 1118
October 19, 2013, 04:48:50 AM

forum looks really broken.

also, with BT enabled, you can't edit your profile properly. try to change your avatar

Forum is slightly broken because it still needs to have code edited . Some bugs are MyBB-related and will hit you with certain browsers, and may flick in and out of existence.

Other than a couple missing images I see nothing wrong with it that's directly my fault, though.

You can PM me to have an avatar assigned, if you're having problems. The forum is mostly in beta now, you don't have to use it.
Pages:
Jump to: