Matt Baer
c71d020e86
Merge pull request #261 from techknowlogick/update-cli
...
Refactor CLI
5 years ago
Matti R
2550804d93
return clear error
5 years ago
Matti R
b6044120ef
go fmt & update per feedback
5 years ago
Matt Baer
6aa8de3a4b
Add Gopher support
...
This adds gopher support to WriteFreely -- both single- and multi-user
instances. It is off by default, but can be enabled with the new
`gopher_port` config value in the `[server]` section.
When enabled, multi-user instances will show all public blogs at
gopher://[host]:[gopher_port]/ -- otherwise, blogs are accessible at
gopher://[host]:[gopher_port]/[blog]/
This is just a proof of concept for now. We still need to handle some
edge cases and different configurations, like private instances.
Ref T559
5 years ago
Matt Baer
fca864c94a
Merge pull request #266 from writeas/fix-social-images
...
Fix image extraction for social metadata
5 years ago
Matt Baer
7283b17400
Merge pull request #267 from writeas/update-contributing-guide
...
Update Contributing guide
5 years ago
Matt Baer
4595d480ae
Merge pull request #264 from writeas/admin-dashboard-redesign
...
Admin dashboard redesign
Closes T694
5 years ago
Matt Baer
cd2e725746
Merge pull request #270 from nkoehring/js-html-aliases
...
add js, jsx and html aliases for highlightjs
5 years ago
CJ Eller
e140fe139f
Add {{end}} on line 97
5 years ago
CJ Eller
6027f7cfdc
Fixed pagination for Novel
5 years ago
koehr
b42760abab
add js, jsx and html aliases for highlightjs
5 years ago
Matt Baer
f903388a28
Fix admin nav rendering on user viewing
5 years ago
Matt Baer
9fe528bf47
Fix admin nav rendering on page editing
5 years ago
Matt Baer
303144fd24
Fix 500 when update checks disabled
...
Ref T572
5 years ago
Matt Baer
46dbb10433
Make Admin Settings page more user-friendly
...
- Add a description to each config item
- Change item names to make more sense
Ref T694
5 years ago
Matt Baer
d17e82d34c
Prevent update check from slowing app init
...
Previously, we'd wait for a response before finishing app
initialization, meaning an overall slower startup. This fixes that.
Ref T572
5 years ago
Matt Baer
05aad04b21
Limit Reader posts by count, not publish date
...
This changes the Reader to show the 250 most recent posts, with the
5-post-per-author limit still, instead of only posts from the last 3
months.
5 years ago
Matt Baer
8933076296
Add invite button to admin Users page header
...
Ref T694
5 years ago
Matt Baer
6f3b502e65
Add 'X-Robots-Tag: noindex' header to invite URLs
...
This instructs search engines to not index invite links.
5 years ago
Matt Baer
e6e8cb5944
Add details and update CONTRIBUTING guide
...
This updates the guide to explain our current practices and processes.
It now focuses primarily on contributing code, instead of other types of
contributions.
5 years ago
Matt Baer
563ea5b25b
Fix image extraction for URLs with query strings
...
Previously, image extraction wouldn't catch images with a query string
(or anything else) appended. This fixes that by parsing extracted URLs
and only checking the path for what looks like an image file.
5 years ago
Matt Baer
34d196376e
Include extracted images in draft social metadata
...
Previously, we didn't extract images for draft posts. This fixes that.
5 years ago
Matt Baer
8e8eb3c563
Merge pull request #260 from writeas/fix-deletion-pleroma
...
Fix post deletion on Pleroma
5 years ago
Matt Baer
987c74c93a
Add logging around automated update checks
...
Logs requests when --debug enabled, and always logs errors from the
check.
Ref T572
5 years ago
Matt Baer
37b7755c08
Tell admin that automated check failed when necessary
...
This keeps track when automated update check fails, and displays a
relevant message to the admin on /admin/updates
Ref T572
5 years ago
Matt Baer
c2ece926e0
Show update notification in admin nav bar
...
When a WriteFreely update is available, indicate this on the "Updates"
navigation item
Ref T572
5 years ago
Matt Baer
389dc8b9db
Show functional Updates page when checks are disabled
...
Ref T572
5 years ago
Matt Baer
a06bb457de
Change copy and design on WF Updates page
...
- Tweak the copy
- Include link to download latest release
- Change the version status design a bit
- Restyle some text
5 years ago
Matt Baer
48ca695c46
Show last update check time in local timezone
5 years ago
Matt Baer
68e992a55e
Fix bad #status anchor in view-user.tmpl
5 years ago
Matt Baer
8e2eab5b73
Merge pull request #265 from shleeable/patch-1
...
Update Dockerfile - Go / Alpine base images
5 years ago
Shlee
7d15b799f0
Update Dockerfile
5 years ago
Matt Baer
04a76c4120
Merge pull request #262 from writeas/consistent-backend-pages
...
Consistent backend page design
5 years ago
Matt Baer
602cd80020
Fix mismatched span in user/admin/users.tmpl
5 years ago
Matt Baer
0d79057bae
Rename ReleaseURL() to ReleaseNotesURL()
5 years ago
Matt Baer
84ab41697b
Merge branch 'develop' into admin-dashboard-redesign
5 years ago
Matt Baer
f79926031f
Merge pull request #175 from writeas/T572-check-updates
...
add update checks
Closes T572
5 years ago
Matt Baer
8364dce398
Merge branch 'develop' into T572-check-updates
5 years ago
Matt Baer
b58464addb
Optionally hide Monitor page in Admin nav
...
This adds a new config option that signifies the admin doesn't need to
see deeply technical things, like application resource usage. In the
[app] section, set forest = true to enable this.
Ref T694
5 years ago
Matt Baer
92da069ce4
Move admin dashboard sections into subpages
...
This moves app config to a "Settings" page and the application monitor
to a "Monitor" page. It also reworks the admin navigation bar a bit and
adds some instance stats on the dashboard.
Ref T694
5 years ago
Matt Baer
71224d68a2
Change line-height to 1.5
5 years ago
Matt Baer
8ce7d4c9fc
Add isIgnorableError to database-lib.go
5 years ago
Rob Loranger
33474cb1f1
change to simpler style
5 years ago
Matt Baer
7fe281df69
Use NULL for new attach_user_id column
...
Ref T713
5 years ago
Matt Baer
b1d006fcf2
Make Reader width consistent with other pages
5 years ago
Matt Baer
5d754176e0
Use h1 consistently on user pages
...
instead of h2s. This also removes odd one-time class usages on Account
Settings page.
5 years ago
Matti R
b0f0de3dde
go mod tidy
5 years ago
Matti R
6173405794
switch to use urfave/cli for cli, which allows for auto-manpage generation and bash complete
5 years ago
Matt Baer
f846cada4b
Merge branch 'develop' into T713-oauth-account-management
5 years ago
Matt Baer
9fb12eea74
Merge pull request #240 from techknowlogick/acme-v2
...
update golang.org/x/crypto vendor to use acme v2
5 years ago