Changelog


A fun and fresh way to display changes I’ve been making on my blog.

New Images and background stuff.

Announcement Mar 12, 2017

I cleaned up a bunch of the internals to the site, mostly matching themes and fixing layouts.I also fixed an editing bug that would cause comments to get get un-nested. Having changed my username a few times over the years, when I edit an article it will now set it to the current one.

As a final change, I replaced the primary pots image with a new moon one. It’s kind of a pain to change, so I’ve noted a future idea to make it editable.


Changelog fixes — buttons and bugs.

Announcement Mar 09, 2017

Was fixing some of the editor buttons in my changelog and discovered a but. I’d forgotten to unescape the text.

While fixing buttons, I made some actions into buttons to match styles. Most were admin features, so won’t be visible. What is visible, though, is I renamed the pager buttons. I didn’t like the ‘Older’ and ‘Newer’ text, reverting it to ‘Previous’ and ‘Next.’


Image fix for small screens.

Announcement Mar 06, 2017

Minor change to force smaller images in articles to screen width on displays less than 768px. Code below:

@media only screen and (max-width: 768px) {
  /* Force small images to screen width */
  article img {
  width: 100%;
  height: auto;
  }
}

I was getting annoyed with small words showing to the right of images on mobile. This fixes that, but it is a bit of a hack. Not 100% perfect. Some tiny images, not meant to scale, will get expanded. For example, the old image emoji’s will be huge. But, it’s good enough.


Change date on modify fix.

Bug Fix Mar 05, 2017

In my haste to get my changelog out the door, I accidentally used a variable wrong. The result of my mistake was that modifying a log would reset the date. Not quite my intent. All fixed now!


Added a changelog.

Announcement Mar 05, 2017

I’d been playing around with a changelog on my test site, but just getting around to porting it here to my primary site.