Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change trending thresholds #30

Closed
wants to merge 25 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
7ec013e
Update README.md
DismalShadowX Jun 2, 2024
4084c68
Merge branch 'mastodon:main' into main
DismalShadowX Jun 11, 2024
971a005
Merge branch 'mastodon:main' into main
DismalShadowX Jun 14, 2024
a577b04
Merge branch 'mastodon:main' into main
DismalShadowX Jun 15, 2024
4c195de
Merge branch 'mastodon:main' into main
DismalShadowX Jun 19, 2024
65911e9
Merge branch 'mastodon:main' into main
DismalShadowX Jun 22, 2024
db898c9
Merge branch 'mastodon:main' into main
DismalShadowX Jun 25, 2024
6dbbea1
Merge branch 'mastodon:main' into main
DismalShadowX Jun 26, 2024
8426b8d
Merge branch 'mastodon:main' into main
DismalShadowX Jun 27, 2024
f103976
Merge branch 'mastodon:main' into main
DismalShadowX Jun 28, 2024
d1935bb
Merge branch 'mastodon:main' into main
DismalShadowX Jun 28, 2024
9350b5e
Merge branch 'mastodon:main' into main
DismalShadowX Jun 30, 2024
9316db0
Merge branch 'mastodon:main' into main
DismalShadowX Jul 1, 2024
20b4f9f
Merge branch 'mastodon:main' into main
DismalShadowX Jul 2, 2024
4e3d87a
Merge branch 'mastodon:main' into main
DismalShadowX Jul 3, 2024
ba43757
Merge branch 'mastodon:main' into main
DismalShadowX Jul 4, 2024
1457f2f
Merge branch 'mastodon:main' into main
DismalShadowX Jul 4, 2024
f90144c
Merge branch 'mastodon:main' into main
DismalShadowX Jul 10, 2024
bbb3f59
Merge branch 'mastodon:main' into main
DismalShadowX Jul 12, 2024
20db1f2
Merge branch 'mastodon:main' into main
DismalShadowX Jul 19, 2024
4e0228d
Merge branch 'mastodon:main' into main
DismalShadowX Jul 19, 2024
fc73aa0
Merge branch 'mastodon:main' into main
DismalShadowX Jul 24, 2024
f0e1f67
Merge branch 'mastodon:main' into main
DismalShadowX Jul 27, 2024
d5fa637
Change trending thresholds
DismalShadowX Jul 28, 2024
0d99b40
Update statuses.rb
DismalShadowX Jul 28, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
# Everything Bagel instance

[![Ruby Testing](https://github.com/DismalShadowX/Masto-Cherry/actions/workflows/test-ruby.yml/badge.svg)](https://github.com/DismalShadowX/Masto-Cherry/actions/workflows/test-ruby.yml)
[![Crowdin](https://badges.crowdin.net/mastodon/localized.svg)][crowdin]

[crowdin]: https://crowdin.com/project/mastodon

I don't intend to stray very far from mainline Mastodon with this fork.

Everything Bagel is a fork of [Mastodon](https://github.com/mastodon/mastodon). Upstream's README file is reproduced below.

---

<h1><picture>
<source media="(prefers-color-scheme: dark)" srcset="./lib/assets/wordmark.dark.png?raw=true">
<source media="(prefers-color-scheme: light)" srcset="./lib/assets/wordmark.light.png?raw=true">
Expand Down
4 changes: 2 additions & 2 deletions app/models/trends/statuses.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ class Trends::Statuses < Trends::Base
BATCH_SIZE = 100

self.default_options = {
threshold: 5,
threshold: 1,
review_threshold: 3,
score_halflife: 1.hour.freeze,
score_halflife: 12.hours.freeze,
decay_threshold: 0.3,
}

Expand Down
Loading