Development WG's famous to do list

Concerns? Let us know by posting here.

Moderators: Fons, avij, Phaseolus, dserrano5

User avatar
Mr Euro
Euro-Master
Euro-Master
Posts: 2396
Joined: Fri Apr 12, 2002 10:59 am
Location: Hasselt - Belgium

Re: Avij's and Nerzhul's famous to do list

Post by Mr Euro »

Seems that a majority is against the new look. So back to the old one?
User avatar
kettenseger
Euro-Master
Euro-Master
Posts: 1122
Joined: Sat Mar 01, 2003 1:49 pm
Location: 41334 Nettetal, Germany
Contact:

Re: Avij's and Nerzhul's famous to do list

Post by kettenseger »

There are >8000 active user the last 30 days on ebt and >5000 users in the forum(not all of them were active).
Only a handful of users have posted that they don't like the new design.
I think the design shouldn't be changed back, because a small group didn't like it.

I guess many of you use google for your daily search.
Google had changed the logo and some other things in their layout.
Do you use bing or yahoo now?
Or have you written to google webmasters to rechange their layout?

Wikipedia have got a new design a few weeks ago, but i guess you use it anyway.
MDeen
Euro-Master
Euro-Master
Posts: 2179
Joined: Mon Jul 15, 2002 11:52 am
Location: Helden, The Netherlands
Contact:

Re: Avij's and Nerzhul's famous to do list

Post by MDeen »

kettenseger wrote:There are >8000 active user the last 30 days on ebt and >5000 users in the forum(not all of them were active).
Only a handful of users have posted that they don't like the new design.
I think the design shouldn't be changed back, because a small group didn't like it.

I guess many of you use google for your daily search.
Google had changed the logo and some other things in their layout.
Do you use bing or yahoo now?
Or have you written to google webmasters to rechange their layout?

Wikipedia have got a new design a few weeks ago, but i guess you use it anyway.
Yes, and especially with wikipedia I have the impression that a small group of users call the shots and do not care about the rest.

I still do not like the new colors. The saturation and the contrast are both too high. The colorscheme just does not work.
User avatar
dippu
Euro-Expert
Euro-Expert
Posts: 601
Joined: Wed Dec 15, 2004 10:53 pm
Location: Berlin, Germany
Contact:

Re: Avij's and Nerzhul's famous to do list

Post by dippu »

I don't understand why asking about the new color scheme AFTER applying it to the website? :roll:
내가 제일 잘나가
User avatar
eddydevries
Forum Moderator
Forum Moderator
Posts: 20030
Joined: Sat Feb 18, 2006 5:49 am
Location: Rotterdam (NL)
Contact:

Re: Avij's and Nerzhul's famous to do list

Post by eddydevries »

dippu wrote:I don't understand why asking about the new color scheme AFTER applying it to the website? :roll:
I think, it's because you can hardly ask: "Do you want to change the colors of the website?".
If people don't know how it would look after the change they'll say : "I like it the way it's now. So don't change it." (most people want changes only if they know (proven) it's an improvement).

Now the colors have changed, people can comment it with reason. Than the management can act on that.

Personally, I think the change is "okay" (for me, it wasn't neccesary, but I'm not against it either).
But there might be more contrast between the backgrounds of the lists (I mean the changing of color after each two notes). At this time there's so little difference, I missed some notes while counting them.
Eddy - Rotterdam - NL
weblog - EBT-stats 24-05-2013 - hits: 1742 +59 triples +1 quadruple = 1802.

Facebook-profile + Geocaching + postcrossing
User avatar
CarlosManta
Euro-Master
Euro-Master
Posts: 3026
Joined: Mon Jan 07, 2008 6:11 pm
Location: Porto, Portugal
Contact:

Re: Avij's and Nerzhul's famous to do list

Post by CarlosManta »

eddydevries wrote:Personally, I think the change is "okay" (for me, it wasn't neccesary, but I'm not against it either).
But there might be more contrast between the backgrounds of the lists (I mean the changing of color after each two notes). At this time there's so little difference, I missed some notes while counting them.
I agree 100%
User avatar
dserrano5
Euro-Master
Euro-Master
Posts: 3773
Joined: Sun Jan 31, 2010 11:59 am
Location: Madrid, ES

Re: Avij's and Nerzhul's famous to do list

Post by dserrano5 »

-flop- wrote:
maarsy wrote:when u enter a serial number in the expert field u can always change the numbers seperatly in the fields below

would it not be possible to do the same with the comment ( like if u see one has a dot or a stamp on it and change it in the comment field )

That's something I would appreciate too! 8)
Nerzhul wrote:Sorry, this won't be implemented, at least not by me. But feel free to build something suitable in GreaseMonkey or similar and see if you can come up with an easy, consistent UI concept. If it's good I'll migrate it to the main site :-)
I don't think a consistent UI can be achieved without giving up many features of the form. That very features are what make it inconsistent! I'm talking about the different behaviour that the form entries "Value", "Short code", "Serial" and "Comment" have. It's nice to have a drop-down for the values, but it's inconsistent with the rest. It's nice to have short code validation before making it the default value, but it's inconsistent with the rest, and so on. Please note that this is not a criticism, just my own personal thoughts.

This said, I've made a quick GreaseMonkey script that allows users to modify individual comments and values after having set their default values. It does it by overriding the javascript functions that provide the "default value" functionality with modified versions that don't disable the 25 form fields below.

An obvious drawback of this, is that as soon as the original functions have some new features, they won't be available in these modified versions until locally modified to mimic them.

This is the code:

Edit: I haven't actually submitted any form using this modified javascript. Use at your own risk!

Code: Select all

function setDefaultDenom(a){ 
    var b=a.selectedIndex; 
    var d=a.options[b].value; 
    if(d!="-"){ 
        switch(d){ 
            case"5":d=1;break;
            case"10":d=2;break;
            case"20":d=3;break;
            case"50":d=4;break; 
            case"100":d=5;break; 
            case"200":d=6;break; 
            case"500":d=7;break;
        } 
        for(var c=0;c<numRows;c++){ 
            document.notes.elements["my_denomination"+c].selectedIndex=d; 
            //document.notes.elements["my_denomination"+c].disabled=true;
            //document.notes.elements["my_denomination"+c].className="disabled"
        } 
    }else{ 
        for(var c=0;c<numRows;c++){ 
            document.notes.elements["my_denomination"+c].selectedIndex=0; 
            //document.notes.elements["my_denomination"+c].disabled=false;
            //document.notes.elements["my_denomination"+c].className=""
        } 
    } 
} 

function setDefaultComment(b){ 
    if(b!=""){ 
        for(var a=0;a<numRows;a++){ 
            document.notes.elements["my_comment"+a].value=b; 
            //document.notes.elements["my_comment"+a].disabled=true;
            //document.notes.elements["my_comment"+a].className="disabled"
        }    
    }else{ 
        for(var a=0;a<numRows;a++){ 
            document.notes.elements["my_comment"+a].value=""; 
            //document.notes.elements["my_comment"+a].disabled=false;
            //document.notes.elements["my_comment"+a].className=""
        }    
    }    
} 

function js_override() {
    document.body.appendChild(document.createElement('script')).innerHTML=setDefaultDenom.toString();
    document.body.appendChild(document.createElement('script')).innerHTML=setDefaultComment.toString();
}

window.addEventListener ('load', js_override, false);
User avatar
Nerzhul
Euro-Master
Euro-Master
Posts: 1417
Joined: Tue Apr 27, 2004 12:33 am
Location: Berlin

Re: Avij's and Nerzhul's famous to do list

Post by Nerzhul »

Don't worry, the color scheme and design aren't set in stone. I'm open for all suggestions and comments, but please be a little more constructive than "just doesn't work".

As for democracy, there's really no practical way to ask everyone about everything before doing anything. If you asked 10 users you'd get 11 opinions and nothing would ever move forward.

So IMO the better way is to implement new and improve existing features as I see fit and then finetune them with a greater audience. This has worked quite well in the past, and unless a significant number of users suddenly steps in and helps working on the website nothing will change about this modus. (So if you want to participate in the development process and be heard BEFORE changes go live I suggest joining the Web Development working group. :-) )

As for the design itself, let's discuss this openly. The main motivation behind the recent changes was that the old color scheme wasn't working either:
  • low contrast (grey text on grey background)
  • dark, dirty and depressing color scheme (dark, blueish greyish theme, little color, little accents)
  • tiring to look at, especially in darker environments
In addition I see issues with the main layout itself (tables, boxes, little accents, no semantic structure) and the structure and menu (overloaded, unintuitive). There will be changes in the future addressing these issues.

If you want to help, feel free to post suggestions, samples, templates or ideas...
EBT Webmaster | Author of the EBT-Tool | Dothunter! | EBT News on Twitter
User avatar
bren_nmgn
Forum Moderator
Forum Moderator
Posts: 1686
Joined: Thu Feb 19, 2009 8:16 pm
Location: nijmegen HOLLAND

Re: Avij's and Nerzhul's famous to do list

Post by bren_nmgn »

i would just LOVE some more colors in the lay-out!
but that might be a typical woman's opinion..... :oops:
what doesn't kill you makes you stronger.....

Join the EBT team on What Pulse

My stats: https://dserrano5.es/ebt/ebtst/stats/bren_nmgn/" onclick="window.open(this.href);return false;




feel free to add: facebook

MY PROFILE
User avatar
eddydevries
Forum Moderator
Forum Moderator
Posts: 20030
Joined: Sat Feb 18, 2006 5:49 am
Location: Rotterdam (NL)
Contact:

Re: Avij's and Nerzhul's famous to do list

Post by eddydevries »

I would like to ask another thing.

I don't know if you can change something at the forum (or maybe this only can be done by phpBB), but I would like to ask something about the search function at the forum.

With this function you can search for messages containing some words.

Now I wonder if it's possible to enlarge this search function to the "Personal messages".
Now I can't search for messages I wrote (or got) about (for example) "Meeting Malta".
Eddy - Rotterdam - NL
weblog - EBT-stats 24-05-2013 - hits: 1742 +59 triples +1 quadruple = 1802.

Facebook-profile + Geocaching + postcrossing
User avatar
Jes
Euro-Master
Euro-Master
Posts: 4933
Joined: Thu May 24, 2007 9:38 pm
Location: Away from home (once again)
Contact:

Re: Avij's and Nerzhul's famous to do list

Post by Jes »

I like -and preffer- the new version. Brighter makes me feel happy(er) :D

Anyway, whatever is chosen at the end, both of them are ok for me.
Jes Speaks English, French, Spanish, Tokpisin and Esperanto. (Currently learning Swahili).
Don't fear perfection, you'll never reach it! (by Salvador Dali)
my EBT: http://es.eurobilltracker.com/profile/?user=121292" coins and banknote collector. :)
User avatar
eddydevries
Forum Moderator
Forum Moderator
Posts: 20030
Joined: Sat Feb 18, 2006 5:49 am
Location: Rotterdam (NL)
Contact:

Re: Avij's and Nerzhul's famous to do list

Post by eddydevries »

Another new question:

I previously saw something about the translation of the website (some words / sentences were forgotten to translate or to translate them differently). Then I sent a PM to all the Dutch translaters mentioned on this site.
But because there are many Dutch translaters (13), a lot of them reads my PM after the changes has been done. So they're reading this without reason.
For languages with 1 or 2 translators I think it's a good way to reach them, but if there are so many translators it's a bit "overkill".

I wonder, if it's possible to reach the translators at another way (maybe with this page?)?

(and no, I'm not soliciting for translator, because there are already much of them :wink: )
Eddy - Rotterdam - NL
weblog - EBT-stats 24-05-2013 - hits: 1742 +59 triples +1 quadruple = 1802.

Facebook-profile + Geocaching + postcrossing
User avatar
Nerzhul
Euro-Master
Euro-Master
Posts: 1417
Joined: Tue Apr 27, 2004 12:33 am
Location: Berlin

Re: Avij's and Nerzhul's famous to do list

Post by Nerzhul »

Today's update contains a set of small improvements:
  • news items are only shown while they're young and fresh
  • exit warning in all note entry forms (you must confirm navigation if there's valid note data, which makes it harder to accidently lose entered note data by accidently clicking a link or closing the browser)
  • beginner form now contains some of the Javascript magic of the other forms (autotab, flags, input colors showing valid note data)
EBT Webmaster | Author of the EBT-Tool | Dothunter! | EBT News on Twitter
User avatar
yli
Euro-Master
Euro-Master
Posts: 5870
Joined: Mon Dec 20, 2004 4:34 am
Location: TILBURG
Contact:

Re: Avij's and Nerzhul's famous to do list

Post by yli »

Nerzhul wrote:[*]exit warning in all note entry forms (you must confirm navigation if there's valid note data, which makes it harder to accidently lose entered note data by accidently clicking a link or closing the browser)
I also get this warning when I press OK to enter notes.
Jelle zonder internet. Het was een leuke hobby, maar niet mijn hobby. Een leven zonder internet is mijn ding. Een leven van geld uitgeven in plaats van tracken zeg maar.... hahaha. Ja, er mag gelachen worden.
Inloggen op site lukt niet meer, maakt niet uit. Ik snap toch niets van nieuwe biljetten :lol:
MDeen
Euro-Master
Euro-Master
Posts: 2179
Joined: Mon Jul 15, 2002 11:52 am
Location: Helden, The Netherlands
Contact:

Re: Avij's and Nerzhul's famous to do list

Post by MDeen »

Nerzhul wrote:Don't worry, the color scheme and design aren't set in stone. I'm open for all suggestions and comments, but please be a little more constructive than "just doesn't work".
What more than "bland, to bright, tiring, please let us have the old scheme back" do you need?
As for democracy, there's really no practical way to ask everyone about everything before doing anything. If you asked 10 users you'd get 11 opinions and nothing would ever move forward.

So IMO the better way is to implement new and improve existing features as I see fit and then finetune them with a greater audience. This has worked quite well in the past, and unless a significant number of users suddenly steps in and helps working on the website nothing will change about this modus. (So if you want to participate in the development process and be heard BEFORE changes go live I suggest joining the Web Development working group. :-) )

As for the design itself, let's discuss this openly. The main motivation behind the recent changes was that the old color scheme wasn't working either:
  • low contrast (grey text on grey background)
  • dark, dirty and depressing color scheme (dark, blueish greyish theme, little color, little accents)
  • tiring to look at, especially in darker environments
Personally, I do not recognize any of these objections. As I said before, I think the new scheme has to little contrast, is too bright (to "solarized") and is tiring to look at, and especially in darker environments.
I don't know how you think that a light scheme will be easier to look at in a dark environment. It usually is not. The eye adapts to the dark, and having to look at something bright is less pleasant than looking at something dark.

I know why no opinions were asked beforehand. Most people do not care and will not say anything. So a question "do you want the colorscheme changed" will most likely result in a "no". Only if the scheme is really horrible and illegible, people will complain.
I have not seen any complaints about the old scheme.

But really, my feeling is that objecting is of no use. Although you say that we can discuss openly, the only answer we get is "the majority does not complain, therefor it is better". To me this is the same as saying "we don't really want to listen to what it is you have to say.".
If that is the case, please tell us. I at least feel that nobody cares about the uservoice and that the opinion is "it's my website, it's my desicision".
I'm not going to dispute that, but please tell us if it is, so I know I don't have to complain anymore.
Post Reply

Return to “Feedback and Development”