gosora/public
Azareal 74e09efb63 Fixed a bug where it would use the wrong templates for Tempra Simple, Tempra Cursive, and Shadow
Likes are now done over AJAX.
Posts you have liked are now visually differentiated from those which you have not.
Added support for OR to the where parser.
|| and && now get translated to OR and AND in the where parser.
Added support for ( and ) in the where parser.
Added an adapter and builder method for getting the database version.
Multiple wheres can now be chained with the micro and accumulator builders.
Added the In method to the accumulator select builder.
Added the GetConn method to the builder.
/uploads/ files should now get cached properly.
Added more tooltips for topic titles and usernames.

Fixed a bug in the runners where old stale templates would be served.
Fixed a bug where liking topics didn't work.
Began moving the database initialisation logic out of {adapter}.go and into querygen.
Tweaked the alert direction to show the newest alerts rather than the oldest.
Tweaked the WS JS to have it handle messages more efficiently.
Partially fixed an issue where inline edited posts would lack newlines until the page is refreshed.
Used arrow functions in a few places in global.js to save a few characters.

Schema:
Added the liked, oldestItemLikedCreatedAt and lastLiked columns to the users table.
Added the createdAt column to the likes table.

MySQL Update Queries:
ALTER TABLE `users` ADD COLUMN `liked` INT NOT NULL DEFAULT '0' AFTER `topics`;
ALTER TABLE `users` ADD COLUMN `oldestItemLikedCreatedAt` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP AFTER `liked`;
ALTER TABLE `users` ADD COLUMN `lastLiked` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP AFTER `oldestItemLikedCreatedAt`;
ALTER TABLE `likes` ADD COLUMN `createdAt` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP AFTER `sentBy`;
delete from `likes`;
delete from `activity_stream` where `event` = 'like';
delete from `activity_stream_matches` where `asid` not in(select `asid` from `activity_stream`);
update `topics` set `likeCount` = 0;
update `replies` set `likeCount` = 0;
2018-03-31 06:25:27 +01:00
..
chartist Added Chartist as a dependency. 2017-12-30 05:47:46 +00:00
font-awesome-4.7.0 Removed the images for Cosmo from /images/, it's very saddening to see it go :( 2017-09-22 03:21:17 +01:00
jquery-emojiarea Added emojis. The emoji picker is coming soon, as is the font file. More emojis coming soon ^_^ 2016-12-08 14:11:18 +00:00
trumbowyg More work on Cosora, we have a screenshot of it up now, although it's super experimental at the moment. 2017-10-30 09:57:08 +00:00
EQCSS.js More work on Cosora, we have a screenshot of it up now, although it's super experimental at the moment. 2017-10-30 09:57:08 +00:00
EQCSS.min.js Began work on the new theme, Cosora. 2017-10-12 04:24:14 +01:00
analytics.js Added per-forum analytics. 2018-02-22 02:27:17 +00:00
fabric-base-simple-alpha.png Added the theme system. 2017-01-01 15:45:43 +00:00
global.js Fixed a bug where it would use the wrong templates for Tempra Simple, Tempra Cursive, and Shadow 2018-03-31 06:25:27 +01:00
jquery-3.1.1.min.js Static images now work again after they were accidentally broken when I added Gzip Compression. 2017-02-16 06:47:55 +00:00
rgb_71_71_71.jpg More work on the Shadow theme. 2017-07-29 11:36:39 +01:00
rgb_95_95_95.jpg More work on the Shadow theme. 2017-07-29 11:36:39 +01:00
rgb_105_105_105.jpg More work on the Shadow theme. 2017-07-29 11:36:39 +01:00
white-dot.jpg Static files are now served from memory. This feature's a little experimental, so it will need a lot of testing i.i 2016-12-05 07:21:17 +00:00