Skip to content

Commit 5a1e072

Browse files
Change references to tootsuite/mastodon to mastodon/mastodon (#16491)
* Change references to tootsuite/mastodon to mastodon/mastodon * Remove obsolete test fixture * Replace occurrences of tootsuite/mastodon with mastodon/mastodon in CHANGELOG And a few other places
1 parent d3791cc commit 5a1e072

16 files changed

+1349
-1610
lines changed

.github/CODEOWNERS

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# CODEOWNERS for tootsuite/mastodon
1+
# CODEOWNERS for mastodon/mastodon
22

33
# Translators
44
# To add translator, copy these lines, replace `fr` with appropriate language code and replace `@żelipapą` with user's GitHub nickname preceded by `@` sign or e-mail address.

AUTHORS.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Authors
22
=======
33

4-
Mastodon is available on [GitHub](https://github.com/tootsuite/mastodon)
4+
Mastodon is available on [GitHub](https://github.com/mastodon/mastodon)
55
and provided thanks to the work of the following contributors:
66

77
* [Gargron](https://github.com/Gargron)
@@ -719,7 +719,7 @@ and provided thanks to the work of the following contributors:
719719
* [西小倉宏信](mailto:[email protected])
720720
* [雨宮美羽](mailto:[email protected])
721721

722-
This document is provided for informational purposes only. Since it is only updated once per release, the version you are looking at may be currently out of date. To see the full list of contributors, consider looking at the [git history](https://github.com/tootsuite/mastodon/graphs/contributors) instead.
722+
This document is provided for informational purposes only. Since it is only updated once per release, the version you are looking at may be currently out of date. To see the full list of contributors, consider looking at the [git history](https://github.com/mastodon/mastodon/graphs/contributors) instead.
723723

724724
## Translators
725725

CHANGELOG.md

+1,325-1,325
Large diffs are not rendered by default.

CONTRIBUTING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ If your contributions are accepted into Mastodon, you can request to be paid thr
1414

1515
## Bug reports
1616

17-
Bug reports and feature suggestions must use descriptive and concise titles and be submitted to [GitHub Issues](https://github.com/tootsuite/mastodon/issues). Please use the search function to make sure that you are not submitting duplicates, and that a similar report or request has not already been resolved or rejected.
17+
Bug reports and feature suggestions must use descriptive and concise titles and be submitted to [GitHub Issues](https://github.com/mastodon/mastodon/issues). Please use the search function to make sure that you are not submitting duplicates, and that a similar report or request has not already been resolved or rejected.
1818

1919
## Translations
2020

@@ -44,4 +44,4 @@ It is not always possible to phrase every change in such a manner, but it is des
4444

4545
## Documentation
4646

47-
The [Mastodon documentation](https://docs.joinmastodon.org) is a statically generated site. You can [submit merge requests to tootsuite/documentation](https://github.com/tootsuite/documentation).
47+
The [Mastodon documentation](https://docs.joinmastodon.org) is a statically generated site. You can [submit merge requests to mastodon/documentation](https://github.com/mastodon/documentation).

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
![Mastodon](https://i.imgur.com/NhZc40l.png)
22
========
33

4-
[![GitHub release](https://img.shields.io/github/release/tootsuite/mastodon.svg)][releases]
5-
[![Build Status](https://img.shields.io/circleci/project/github/tootsuite/mastodon.svg)][circleci]
4+
[![GitHub release](https://img.shields.io/github/release/mastodon/mastodon.svg)][releases]
5+
[![Build Status](https://img.shields.io/circleci/project/github/mastodon/mastodon.svg)][circleci]
66
[![Code Climate](https://img.shields.io/codeclimate/maintainability/tootsuite/mastodon.svg)][code_climate]
77
[![Crowdin](https://d322cqt584bo4o.cloudfront.net/mastodon/localized.svg)][crowdin]
88
[![Docker Pulls](https://img.shields.io/docker/pulls/tootsuite/mastodon.svg)][docker]
99

10-
[releases]: https://github.com/tootsuite/mastodon/releases
11-
[circleci]: https://circleci.com/gh/tootsuite/mastodon
10+
[releases]: https://github.com/mastodon/mastodon/releases
11+
[circleci]: https://circleci.com/gh/mastodon/mastodon
1212
[code_climate]: https://codeclimate.com/github/tootsuite/mastodon
1313
[crowdin]: https://crowdin.com/project/mastodon
1414
[docker]: https://hub.docker.com/r/tootsuite/mastodon/

app.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "Mastodon",
33
"description": "A GNU Social-compatible microblogging server",
4-
"repository": "https://github.com/tootsuite/mastodon",
5-
"logo": "https://github.com/tootsuite.png",
4+
"repository": "https://github.com/mastodon/mastodon",
5+
"logo": "https://github.com/mastodon.png",
66
"env": {
77
"HEROKU": {
88
"description": "Leave this as true",

app/javascript/mastodon/components/intersection_observer_article.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ export default class IntersectionObserverArticle extends React.Component {
9393
// When the browser gets a chance, test if we're still not intersecting,
9494
// and if so, set our isHidden to true to trigger an unrender. The point of
9595
// this is to save DOM nodes and avoid using up too much memory.
96-
// See: https://github.com/tootsuite/mastodon/issues/2900
96+
// See: https://github.com/mastodon/mastodon/issues/2900
9797
this.setState((prevState) => ({ isHidden: !prevState.isIntersecting }));
9898
}
9999

config/deploy.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
lock '3.16.0'
44

5-
set :repo_url, ENV.fetch('REPO', 'https://github.com/tootsuite/mastodon.git')
5+
set :repo_url, ENV.fetch('REPO', 'https://github.com/mastodon/mastodon.git')
66
set :branch, ENV.fetch('BRANCH', 'master')
77

88
set :application, 'mastodon'

db/migrate/20200508212852_reset_unique_jobs_locks.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ class ResetUniqueJobsLocks < ActiveRecord::Migration[5.2]
33

44
def up
55
# We do this to clean up unique job digests that were not properly
6-
# disposed of prior to https://github.com/tootsuite/mastodon/pull/13361
6+
# disposed of prior to https://github.com/mastodon/mastodon/pull/13361
77

88
until SidekiqUniqueJobs::Digests.new.delete_by_pattern('*').nil?; end
99
end

lib/mastodon/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def to_s
3333
end
3434

3535
def repository
36-
ENV.fetch('GITHUB_REPOSITORY', 'tootsuite/mastodon')
36+
ENV.fetch('GITHUB_REPOSITORY', 'mastodon/mastodon')
3737
end
3838

3939
def source_base_url

lib/tasks/repo.rake

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# frozen_string_literal: true
22

3-
REPOSITORY_NAME = 'tootsuite/mastodon'
3+
REPOSITORY_NAME = 'mastodon/mastodon'
44

55
namespace :repo do
66
desc 'Generate the AUTHORS.md file'
@@ -34,7 +34,7 @@ namespace :repo do
3434

3535
file << <<~FOOTER
3636
37-
This document is provided for informational purposes only. Since it is only updated once per release, the version you are looking at may be currently out of date. To see the full list of contributors, consider looking at the [git history](https://github.com/tootsuite/mastodon/graphs/contributors) instead.
37+
This document is provided for informational purposes only. Since it is only updated once per release, the version you are looking at may be currently out of date. To see the full list of contributors, consider looking at the [git history](https://github.com/mastodon/mastodon/graphs/contributors) instead.
3838
FOOTER
3939
end
4040

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@tootsuite/mastodon",
2+
"name": "@mastodon/mastodon",
33
"license": "AGPL-3.0-or-later",
44
"engines": {
55
"node": ">=12"
@@ -18,7 +18,7 @@
1818
},
1919
"repository": {
2020
"type": "git",
21-
"url": "https://github.com/tootsuite/mastodon.git"
21+
"url": "https://github.com/mastodon/mastodon.git"
2222
},
2323
"browserslist": [
2424
"last 2 versions",

scalingo.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "Mastodon",
33
"description": "A GNU Social-compatible microblogging server",
4-
"repository": "https://github.com/tootsuite/mastodon",
5-
"logo": "https://github.com/tootsuite.png",
4+
"repository": "https://github.com/mastodon/mastodon",
5+
"logo": "https://github.com/mastodon.png",
66
"env": {
77
"LOCAL_DOMAIN": {
88
"description": "The domain that your Mastodon instance will run on (this can be appname.scalingo.io or a custom domain)",

0 commit comments

Comments
 (0)