Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Messages - Arantor
3001
Archived fixes / Re: Admin search issues
« on July 23rd, 2012, 02:56 AM »
So, aside from the internal mess of the admin search (and, sadly, I don't see a better way to deal with it!), is there anything about it that doesn't work as expected?

From my perspective, there's a few minor areas that could be cleaned up and made sure to be added to it - but I'm thinking that's almost into overkill territory at this point. (E.g. we could make all the possible custom field templates into searchable items.)
3002
Bug reports / Re: Reply post showing as 'New'
« on July 23rd, 2012, 02:55 AM »
I'm still not sure how best to deal with this particular little quagmire. I'm sure SMF's solution is not the best, but at the same time I'm not sure how best to fix it, since I'm not sure I'd want it to flag a given board as read if I've only replied to something very new.

Perhaps we should just do that, if your post is the newest in a given board, mark the board as read.
3003
Archived fixes / Re: Time offset (auto detect)
« on July 23rd, 2012, 02:53 AM »
Hmm, I can't remember what else I need to do with this >_>
3004
The Pub / Re: Some admin options required
« on July 23rd, 2012, 02:36 AM »
Quote
3. Feeds
There's no way to have feeds active but disable the feed block in the sidebar. Do we need an option for that somewhere?
r1644 implements this. I'm looking at some of the other stuff.
3005
Archived fixes / Re: Logging password errors
« on July 23rd, 2012, 02:35 AM »
r1644 adds in an option for this. I couldn't think of a more reliable method that would actually stand up to scrutiny and in the mean time this'll do.
3006
Features / New revs
« on July 23rd, 2012, 02:34 AM »
(8 files, 3KB)

Revision: 1644
Author: arantor
Date: 23 July 2012 01:32:49
Message:
! Couple of miscellaneous grammar fixes. One of them even seems to have been mine. (ManageSettings.english.php)

! Add a checkbox, on by default, to show the feed block in the sidebar. Of course it won't show if feeds are disabled, but at least now it's optional. (index.php, install.sql, ManageNews.php, ManageSettings language file)

! Make password error logging be optional. (install.sql, Login2.php, ManageSettings.php, ManageSettings language file)

! Don't log certain user account errors as errors. So what if users are trying to register with reserved names? They get stopped at the door, but there's really no need to log that fact too. (Subs-Members.php)

! Sync BB implementation to BB 2.2.7. (Security.php)
----
Modified : /trunk/Sources/Login2.php
Modified : /trunk/Sources/ManageNews.php
Modified : /trunk/Sources/ManageSettings.php
Modified : /trunk/Sources/Security.php
Modified : /trunk/Sources/Subs-Members.php
Modified : /trunk/Themes/default/languages/ManageSettings.english.php
Modified : /trunk/index.php
Modified : /trunk/other/install.sql
3007
Features / Re: Github & stuff
« on July 19th, 2012, 05:28 PM »
@Norodo: That's the level of bad-ass I seek to attain, I'm still learning.
3008
Considering that I've only just got back off holiday (not that you'd know it)...?
3009
Off-topic / Re: Smf out of the game?
« on July 17th, 2012, 01:01 PM »
It has been sluggish lately.
3010
Features / Re: Github & stuff
« on July 16th, 2012, 06:42 PM »
Quote
And I guess you're wary of going back to a similar system...
I'm wary of dragging us into that particular quagmire. I'm hoping that there will be a higher quality of submission of plugins.
Quote
So, even though the development process is now public, it's pretty much as if SMF had given commit access to all of their teamies. No need to go public indeed.
Wow, they actually made the repo public, as opposed to the playpen repo. But yes, it is as I suspected.
Quote
I could suggest that we open a private git or mercurial or svn repo somewhere with a bug tracker (with a good one I mean... I don't know if RH's is any good?), and then we give commit access to anyone who requests it (basically people in our Friends and Consultants groups).
RH's bug tracker is pretty good, IMO, you should be able to try it out?
Quote
I'm not sure about this anymore..? I remember SMF 2.1 was at one point hidden away at Spuds' repo, but now it's at SimpleMachines..?
Yup it's now the main public repo, didn't realise it had actually been moved (see, I told you I don't check their repo!)
3011
You cannot wait for me to have a full breakdown?
3012
Plugins / Re: Wand
« on July 16th, 2012, 05:39 PM »
Quote
I can't see it in action, so I have no idea what it looks like. But it reminds me of Dragooon's bars because they're skewed by 45°.
There are screenshots taken there, and that's exactly what I had in mind.
3013
Quote from Inter on July 16th, 2012, 04:35 PM
This year will be a public version?
I am truly amazed at how many people seem unable to grasp the very simple concept of 'it will be done when it's done'.

Given that only a couple of weeks ago I was practically having a breakdown, let's just say I'm not motivated to run back into development from morning until night because I don't want to relapse, burn out again and disappear into the night.
3014
Plugins / Re: Wand
« on July 16th, 2012, 02:46 PM »
Quote
@Pete> What style by Nas? The thing I'm talking about was cooked up by Dragooon for AeMe...
I can't seem to find it anywhere but basically Nas redesigned the progress bar on the installer, I don't know if it was pushed to the main repo, but it was submitted IIRC. But it basically looks like the progress bars in this plugin - not the same as the stats page.
Quote
And... did you bother to report that...? I don't remember hearing about that.
I think it was mentioned in passing once, but given the above it's possible that it's not being used properly.
3015
Plugins / Re: Wand
« on July 16th, 2012, 12:16 AM »
Nope. There's quite a bit to it really.

Firstly you have to declare the animation.

Code: [Select]
@keyframes myanim
{
  from: { top: 0px}
  to: { top: 100px }
}

(or @-moz-keyframes or @-webkit-keyframes for now)

Then tell the relevant item to use it:
Code: [Select]
#mydiv
{
  animation: myanim 5s infinite
}

I can't imagine anything that would specifically upset WeCSS in this, and honestly if it were reformatted to use normal WeCSS layout it should work just fine.