Skip to content
This repository has been archived by the owner on Mar 2, 2024. It is now read-only.

Commit

Permalink
Update repo path
Browse files Browse the repository at this point in the history
  • Loading branch information
tulir committed Aug 6, 2021
1 parent 8c085f4 commit 67926cf
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# mautrix-facebook
![Languages](https://img.shields.io/github/languages/top/tulir/mautrix-facebook.svg)
[![License](https://img.shields.io/github/license/tulir/mautrix-facebook.svg)](LICENSE)
[![Release](https://img.shields.io/github/release/tulir/mautrix-facebook/all.svg)](https://github.com/tulir/mautrix-facebook/releases)
[![GitLab CI](https://mau.dev/tulir/mautrix-facebook/badges/master/pipeline.svg)](https://mau.dev/tulir/mautrix-facebook/container_registry)
![Languages](https://img.shields.io/github/languages/top/mautrix/facebook.svg)
[![License](https://img.shields.io/github/license/mautrix/facebook.svg)](LICENSE)
[![Release](https://img.shields.io/github/release/mautrix/facebook/all.svg)](https://github.com/mautrix/facebook/releases)
[![GitLab CI](https://mau.dev/mautrix/facebook/badges/master/pipeline.svg)](https://mau.dev/mautrix/facebook/container_registry)

A Matrix-Facebook Messenger puppeting bridge.

Expand All @@ -16,7 +16,7 @@ Some quick links:
* Basic usage: [Authentication](https://docs.mau.fi/bridges/python/facebook/authentication.html)

### Features & Roadmap
[ROADMAP.md](https://github.com/tulir/mautrix-facebook/blob/master/ROADMAP.md)
[ROADMAP.md](https://github.com/mautrix/facebook/blob/master/ROADMAP.md)
contains a general overview of what is supported by the bridge.

## Discussion
Expand Down
2 changes: 1 addition & 1 deletion mautrix_facebook/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class MessengerBridge(Bridge):
module = "mautrix_facebook"
command = "python -m mautrix-facebook"
description = "A Matrix-Facebook Messenger puppeting bridge."
repo_url = "https://github.com/tulir/mautrix-facebook"
repo_url = "https://github.com/mautrix/facebook"
real_user_content_key = "net.maunium.facebook.puppet"
version = version
markdown_version = linkified_version
Expand Down
4 changes: 2 additions & 2 deletions mautrix_facebook/get_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def run(cmd):
if os.path.exists(".git") and shutil.which("git"):
try:
git_revision = run(["git", "rev-parse", "HEAD"]).strip().decode("ascii")
git_revision_url = f"https://github.com/tulir/mautrix-facebook/commit/{git_revision}"
git_revision_url = f"https://github.com/mautrix/facebook/commit/{git_revision}"
git_revision = git_revision[:8]
except (subprocess.SubprocessError, OSError):
git_revision = "unknown"
Expand All @@ -33,7 +33,7 @@ def run(cmd):
git_revision_url = None
git_tag = None

git_tag_url = (f"https://github.com/tulir/mautrix-facebook/releases/tag/{git_tag}"
git_tag_url = (f"https://github.com/mautrix/facebook/releases/tag/{git_tag}"
if git_tag else None)

if git_tag and __version__ == git_tag[1:].replace("-", ""):
Expand Down
2 changes: 1 addition & 1 deletion mautrix_facebook/web/static/login/crypto.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ function getKey(pem) {
// encryptPassword encrypts a login password using AES-256-GCM, then encrypts the AES key
// for Facebook's RSA-2048 key using PKCS#1 v1.5 padding.
//
// See https://github.com/tulir/mautrix-facebook/blob/v0.2.0/maufbapi/http/login.py#L164-L192
// See https://github.com/mautrix/facebook/blob/v0.3.0/maufbapi/http/login.py#L164-L192
// for the Python implementation of the same encryption protocol.
async function encryptPassword(pubkey, keyID, password) {
// Key and IV for AES encryption
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
setuptools.setup(
name="mautrix-facebook",
version=version,
url="https://github.com/tulir/mautrix-facebook",
url="https://github.com/mautrix/facebook",

author="Tulir Asokan",
author_email="[email protected]",
Expand Down

0 comments on commit 67926cf

Please sign in to comment.