aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix export of category title and slug.HEADmasterHarald Eilertsen2021-06-061-1/+1
| | | | For some reason these are not exported by the default implementation.
* Refactor export script, and produce nicer yaml.Harald Eilertsen2021-06-061-15/+31
| | | | | | | | Don't use serialized ruby object format for users and categories, just list the attributes as separate keys under the object identified by it's slug. Also properly export yaml frontmatter for posts.
* Export users + categories in addition to postsHarald Eilertsen2021-06-041-2/+14
|
* Styling updates to make merch link look nicer.Harald Eilertsen2021-06-033-5/+12
| | | | Also made page logo and the header section a tad larger.
* Update merch linkHarald Eilertsen2021-06-031-2/+2
|
* Change merch store in page header.Harald Eilertsen2021-06-032-2/+2
|
* Revert "Change merch store in page header."Harald Eilertsen2021-06-024-61/+2
| | | | | This reverts commit 091602c490db2adf22c1c34d91bfd601b6bd7d77. and later...
* Forgot one FixnumHarald Eilertsen2021-06-021-1/+1
|
* Monkeypatch will_paginate to work with ruby 2.5.5.Harald Eilertsen2021-06-021-0/+27
|
* Override refinery base-presenter to avoid warning.Harald Eilertsen2021-06-021-0/+32
|
* Remember the D2 shop logo...Harald Eilertsen2021-06-021-0/+0
|
* Change merch store in page header.Harald Eilertsen2021-06-021-2/+2
|
* Update links to forked deps.Harald Eilertsen2021-06-022-7/+7
|
* Downgrade puma to version 4.3.6.Harald Eilertsen2020-11-082-3/+3
| | | | | | Version 5.x may be better, but has ditched daemonization, which means we need to handle that ourselves in the rc scripts. Probably a better way to begin with, but not something I'm about to spend time on now.
* Monkeypatch psql adapter for postgres 12 compatibility.Your Name2020-11-081-0/+19
|
* Set more meaningful names for postgres db config.Your Name2020-11-081-3/+3
|
* Update deps and add activerecord-postgresql-adapter.Your Name2020-11-082-26/+32
|
* Banners: Don't try to resize gifs.deploy-20200508Harald Eilertsen2020-05-081-1/+5
| | | | | | | | | | | | | | | | | | | ImageMagick does not handle resizing of animated gifs wery well. Optimized gifs will usually have individual sizes for each frame, only containing the actually changed image data. Each frame also have an offset from the origin. When ImageMagick tries to resize such an image, the offsets gets messed up and the result looks rather terrible. There's ways to handle this in ImageMagick, by first making all frames the same size (`convert -coalesce ...`) then resize (`convert -resize ...`) and finally optimize the gif again (`convert -layers Optimize ...`). However, this is a bit too much to handle when trying to download the animation, so it should be done on or before upload. For now, I think doing it offline before upload should be good enough. This _requires_ though, that the animation has the correct dimensions before upload!
* Add script to export blog posts as html with frontmatter.Harald Eilertsen2020-05-071-0/+37
|
* Update vagrantfile to use FreeBSD 12.1Harald Eilertsen2020-05-071-2/+10
|
* Drop inquiries plugin. Not using it.Harald Eilertsen2020-05-073-10/+0
|
* Commit Gemfile.lock too.Harald Eilertsen2019-09-021-14/+14
|
* Update dep on refinerycms-blog.Harald Eilertsen2019-09-021-1/+3
| | | | | Use custom version which does not allow navigating to unpublished posts in the nav at the bottom of the posts.
* Extra deps for ssh ed25519 support in deployment.Harald Eilertsen2019-08-062-0/+8
|
* Emergency fixes to make hmno run on freebsd 12.Harald Eilertsen2019-08-067-49/+74
| | | | | | | Upgrade to use Ruby 2.5.5. Use patched version of rails/activerecord/postgres-adapter that should fix compatibility with Ruby 2.5. Patch Arel inline to be compatible with Ruby 2.5.
* Update assets.devHarald Eilertsen2019-05-26145-9/+37
|
* Add search powered by Qwant.comHarald Eilertsen2019-05-263-0/+46
| | | | | | | | | | | Why? Implementing our own search is quite involved if we want it to be any good. So outsourcing makes sense. Qwant is hosted in Europe (France,) and takes privacy seriously and doesn't track you. See https://help.qwant.com/help/overview/our-philosophy/ And https://help.qwant.com/help/overview/how-does-qwant-make-money/ For more information.
* Drop ref to banners javascripts from app js file.Harald Eilertsen2019-05-261-2/+0
|
* Update dependency to banner extension.Harald Eilertsen2019-05-251-6/+6
|
* Fetch published banners for pages.Harald Eilertsen2019-05-251-0/+5
|
* Update assets.Harald Eilertsen2019-05-12149-22/+210
|
* Merge branch 'fix-banners' into devHarald Eilertsen2019-05-125-17/+19
|\
| * Update deploy script lock.fix-bannersHarald Eilertsen2019-05-111-1/+1
| |
| * Update banners and other deps.Harald Eilertsen2018-11-302-16/+16
| |
| * Don't fall back to compiling assets in staging.Harald Eilertsen2018-11-301-1/+1
| | | | | | | | | | This makes staging behave like production, so that we discover issues with missing precompiled assets before prod.
| * Include banners/*.js in application.js.Harald Eilertsen2018-11-301-0/+2
| | | | | | | | Attempt to fix issue with the js files not being precompiled in production.
| * Upgrade Vagrant env to FreeBSD 11.2Harald Eilertsen2018-11-301-1/+1
| |
* | Add a proper favicon.deploy-20190512Harald Eilertsen2019-05-121-0/+0
| |
* | Updated assetsHarald Eilertsen2019-05-12143-3/+4
| |
* | Make sure images don't overflow sidebars.Harald Eilertsen2019-05-111-0/+4
| |
* | Use git version of bcrypt until a gem with FreeBSD 12.x support is released.Harald Eilertsen2019-05-112-3/+10
| |
* | Upgrade/replace bcrypt-ruby with bcrypt gem, be less anal about capistrano ↵Harald Eilertsen2019-05-113-5/+7
| | | | | | | | version.
* | Vagrantfile: Don't sync config/database.yml.Harald Eilertsen2019-05-011-1/+1
| |
* | Move towards flexbox layout.Harald Eilertsen2019-05-017-29/+31
| | | | | | | | | | | | | | | | | | Main page and header now use flexbox instead of not quite working floats and position relative/absolute. This really simplifies things. Perhaps we'll even be able to make a mobile friendly site some day. Various other cosmetic tweaks have snuch in too. The page now has a max size of about 25cm, and some other minor tweaks.
* | Use file tasks for database and refinery core configs.Harald Eilertsen2019-05-011-5/+10
| |
* | Update schema with latest migrations.Harald Eilertsen2019-05-011-7/+9
|/
* Gallery links issue #83: Open galleries in new window/tab.deploy-20180909Harald Eilertsen2018-09-091-2/+2
|
* Gallery links issue #84: Drop 'created' field from index.Harald Eilertsen2018-09-093-12/+2
|
* Gallery links: Reindent view.Harald Eilertsen2018-09-091-43/+43
|
* Precompile assets and check them into vc.deploy-20180902Harald Eilertsen2018-09-021165-65/+2845
| | | | | | Since we disabled asset compilation in production, we need to precompile them on the development machine. We check the precompiled assets into version control so the will be deployed with the updated code.