Commit Graph
40 Commits
Author SHA1 Message Date
Darius Kazemi 2b0b2f7d41 Merge pull request #26 from emmawinston/fix-resize-display-name-bug
Fix resizable display names CSS bug in Safari and Firefox
2019-10-10 08:55:00 -07:00
Darius Kazemi 3a154c3920 Change default server name 2019-10-09 07:41:15 -07:00
Darius Kazemi 247d2787fe Fixing stray typo 2019-10-08 13:35:26 -07:00
Darius Kazemi 228e0f0f6e Merge tag 'v3.0.0' into hometown-dev 2019-10-08 13:24:20 -07:00
Darius Kazemi bfd29a34eb Merge pull request #19 from emmawinston/unbranding
Ongoing unbranding of Hometown [WIP]
2019-10-07 23:18:35 -07:00
Darius Kazemi 47a19a64e7 Merge pull request #22 from emmawinston/small-screens-bugfix
CSS changes for single-column view on smaller screens
2019-09-23 21:53:57 -07:00
Darius Kazemi 38e1afa724 Merge branch 'hometown-dev' into unbranding 2019-09-23 20:56:21 -07:00
Darius Kazemi 7bb2dbe395 Merge pull request #20 from emmawinston/remove-local-only-share-button
Remove share intent button for local-only posts - closes #12
2019-09-23 20:42:01 -07:00
Darius Kazemi f0b1c82d22 Namespace the rich text CSS 2019-09-16 15:41:33 -07:00
Darius Kazemi df3a42c4f2 Merge branch 'hometown-dev' of github.com:hometown-fork/hometown into hometown-dev 2019-09-13 20:28:09 -07:00
Darius Kazemi 7d7712e1ba Fixing header CSS for rich text statuses
Making the headers larger in font size, and differentiating the h1 and
h2 headers.
2019-09-13 20:27:32 -07:00
Darius Kazemi 44486bdada Merge pull request #17 from emmawinston/spoiler-tag-syntax-fix
Corrects syntax for spoiler tags to valid HTML (fixes #10)
2019-09-12 10:48:37 -07:00
Darius Kazemi 4ba1695ae3 Indicate version number in link footer. 2019-09-10 14:10:42 -07:00
Darius Kazemi d1c5063cd4 Merge pull request #15 from emmawinston/local-indicator-spacing-fix
Correct local-only indicator spacing
2019-09-10 14:01:01 -07:00
Darius Kazemi 3a9f0a0e1a Merge pull request #14 from emmawinston/underlining-bugfix
Fix inconsistent link underlining
2019-09-10 14:00:50 -07:00
Darius Kazemi a0a541dade Merge pull request #13 from emmawinston/macaron-border-bugfix
Correct border colour of account header fields from green to purple
2019-09-10 14:00:36 -07:00
Darius Kazemi 32b4537e32 Update README.md 2019-08-31 17:10:41 -07:00
Darius Kazemi 1befe817c2 Fixing stray merge cruft 2019-08-31 16:51:47 -07:00
Darius Kazemi 168d0b304f Merge branch 'macaron-theme-tweaks' of github.com:emmawinston/hometown into hometown-dev 2019-08-31 15:43:28 -07:00
Darius Kazemi 3ff5b31cbc Merge branch 'fairy-floss-theme' of github.com:emmawinston/hometown into hometown-dev 2019-08-31 15:38:45 -07:00
Darius Kazemi 8d20caee44 Add contribution info to readme 2019-08-21 08:28:20 -07:00
Darius Kazemi a38871cb94 Updating README with new versioning scheme 2019-08-21 08:21:56 -07:00
Darius Kazemi b508af3e2c Update readme 2019-08-19 15:08:20 -07:00
Darius Kazemi bc7b3eaba8 Fix incorrect footer link 2019-08-19 14:36:08 -07:00
Darius Kazemi 6c2e2969ca Merge tag 'v2.9.3' into hometown-2.9.3 2019-08-19 14:28:19 -07:00
Darius Kazemi f66e192c2e Adding name for Macaron theme 2019-08-19 13:48:37 -07:00
Darius Kazemi f96f45ef12 Add option to exclude suspended domains/subdomains from tootctl domains crawl (#11454)
* Add "--exclude-suspended" to tootctl domains crawl

This new option ignores any instances suspended server-wide as
well as their associated subdomains. This queries all domain
blocks up front, then runs a regexp on each domain. This improves
performance over what may be the obvious implementation, which is
to ask `DomainBlocks.blocked?(domain)` for each domain -- this
hits the DB many times, slowing things down considerably.

* cleaning up code style

* Compiling regex

* Removing ternary operator
2019-08-03 19:11:09 +02:00
Darius Kazemi bfc0fbab2c Adding exclusive lists feature
Major new feature, currently testing in a branch right now. Fixes #1
2019-07-26 01:53:21 -07:00
Darius Kazemi dc15521b3a Appropriate DB migrations now in place 2019-07-12 16:53:03 -07:00
Darius Kazemi 0b8267927b Update readme 2019-07-10 21:51:01 -07:00
Darius Kazemi 895e546fe4 Merge branch 'hometown-2.9.2' of github.com:hometown-fork/mastodon into hometown-2.9.2 2019-07-10 21:11:46 -07:00
Darius Kazemi 5585c244da Add link to Hometown source in footer 2019-07-10 21:10:58 -07:00
Darius Kazemi 927a79e315 Update README 2019-07-10 21:10:47 -07:00
Darius Kazemi 704e2cdd6a Update README.md 2019-07-01 14:10:25 -07:00
Darius Kazemi 42e62896f7 Update README.md 2019-07-01 14:07:59 -07:00
Darius Kazemi 1b87a79ec7 Updating README 2019-06-30 17:33:47 -07:00
Darius Kazemi f82b572102 Underlining hyperlinks by default 2019-06-30 15:23:53 -07:00
Darius Kazemi 0436aa9984 Adding full Article support
This creates a new column in the `statuses` table which keeps track of
activity_pub_type, so in the case of a Note it will be blank (the
default) and it will be a string "Article" if the received remote object
is an AP Article. There is now a bunch of special case code in the
formatters and sanitizers to handle Articles differently, as well as on
the clientside.
2019-06-30 15:16:11 -07:00
Darius Kazemi b3e65978b4 Support locally cached inline images in Articles 2019-06-30 15:14:23 -07:00
Darius Kazemi 4431ce52a6 Specify gzip required in tootctl emoji help (#11000) 2019-06-08 12:43:11 -04:00