mirror of
https://github.com/webadderallorg/Recordly.git
synced 2026-09-25 23:35:43 +00:00
chore: update repository URLs to canonical webadderallorg org (#402)
The repo was moved from github.com/webadderall to github.com/webadderallorg but several files still reference the old URL. GitHub serves a 301 redirect today, but package.json metadata, the Homebrew cask, and the in-app issues link should point to the canonical location. Updated: - package.json (homepage, repository.url, bugs.url) - README.md and README.zh-CN.md (releases / clone / issues links) - CONTRIBUTING.md (issues link) - recordly.rb (Homebrew cask url + homepage) - src/components/video-editor/TutorialHelp.tsx (RECORDLY_ISSUES_URL) - src/components/video-editor/videoPlayback/motionSmoothing.ts (attribution comment)
This commit is contained in:
+1
-1
@@ -49,7 +49,7 @@ Areas where help is especially valuable:
|
||||
|
||||
## Reporting Issues
|
||||
|
||||
If you encounter a bug or have a feature request, please open an issue in the [Issues](https://github.com/webadderall/Recordly/issues) section of this repository. Provide as much detail as possible to help us address the issue effectively.
|
||||
If you encounter a bug or have a feature request, please open an issue in the [Issues](https://github.com/webadderallorg/Recordly/issues) section of this repository. Provide as much detail as possible to help us address the issue effectively.
|
||||
|
||||
## Style Guide
|
||||
|
||||
|
||||
@@ -167,7 +167,7 @@ Browse and install community extensions from the [Recordly Marketplace](https://
|
||||
|
||||
Prebuilt releases are available at:
|
||||
|
||||
https://github.com/webadderall/Recordly/releases
|
||||
https://github.com/webadderallorg/Recordly/releases
|
||||
|
||||
---
|
||||
|
||||
@@ -200,7 +200,7 @@ sudo apt install build-essential cmake libx11-dev libxtst-dev libxrandr-dev libx
|
||||
### Steps
|
||||
|
||||
```bash
|
||||
git clone https://github.com/webadderall/Recordly.git recordly
|
||||
git clone https://github.com/webadderallorg/Recordly.git recordly
|
||||
cd recordly
|
||||
npm install
|
||||
npm run dev
|
||||
@@ -357,7 +357,7 @@ See `CONTRIBUTING.md` for guidelines.
|
||||
|
||||
Bug reports and feature requests:
|
||||
|
||||
https://github.com/webadderall/Recordly/issues
|
||||
https://github.com/webadderallorg/Recordly/issues
|
||||
|
||||
Pull requests are welcome.
|
||||
|
||||
|
||||
+3
-3
@@ -171,7 +171,7 @@ Recordly 拥有一个社区驱动的扩展系统。任何人都可以构建和
|
||||
|
||||
预构建发布版本请见:
|
||||
|
||||
https://github.com/webadderall/Recordly/releases
|
||||
https://github.com/webadderallorg/Recordly/releases
|
||||
|
||||
---
|
||||
|
||||
@@ -204,7 +204,7 @@ sudo apt install build-essential cmake libx11-dev libxtst-dev libxrandr-dev libx
|
||||
### 步骤
|
||||
|
||||
```bash
|
||||
git clone https://github.com/webadderall/Recordly.git recordly
|
||||
git clone https://github.com/webadderallorg/Recordly.git recordly
|
||||
cd recordly
|
||||
npm install
|
||||
npm run dev
|
||||
@@ -361,7 +361,7 @@ Recordly 将平台相关的捕获层与基于渲染器的编辑、导出流程
|
||||
|
||||
问题反馈和功能建议:
|
||||
|
||||
https://github.com/webadderall/Recordly/issues
|
||||
https://github.com/webadderallorg/Recordly/issues
|
||||
|
||||
欢迎提交 Pull Request。
|
||||
|
||||
|
||||
+3
-3
@@ -3,13 +3,13 @@
|
||||
"productName": "Recordly",
|
||||
"description": "A free, creator-focused screen recorder with auto-zoom, cursor effects, backgrounds, annotations, and more - built for polished videos out of the box.",
|
||||
"author": "webadderall",
|
||||
"homepage": "https://github.com/webadderall/Recordly",
|
||||
"homepage": "https://github.com/webadderallorg/Recordly",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/webadderall/Recordly.git"
|
||||
"url": "https://github.com/webadderallorg/Recordly.git"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/webadderall/Recordly/issues"
|
||||
"url": "https://github.com/webadderallorg/Recordly/issues"
|
||||
},
|
||||
"private": true,
|
||||
"version": "1.2.0",
|
||||
|
||||
+2
-2
@@ -5,10 +5,10 @@ cask "recordly" do
|
||||
sha256 arm: "e669ab7c8bdd4596211937183ee2374545da5482702cab0dfe477c1466422b0f",
|
||||
intel: "85f5183219de0b656400625797ff9299893bd8fbda8455b0f745878b2c729526"
|
||||
|
||||
url "https://github.com/webadderall/Recordly/releases/download/v#{version}/Recordly-#{arch}.dmg"
|
||||
url "https://github.com/webadderallorg/Recordly/releases/download/v#{version}/Recordly-#{arch}.dmg"
|
||||
name "Recordly"
|
||||
desc "Creator-focused screen recorder with auto-zoom, cursor effects, and more"
|
||||
homepage "https://github.com/webadderall/Recordly"
|
||||
homepage "https://github.com/webadderallorg/Recordly"
|
||||
|
||||
livecheck do
|
||||
url :url
|
||||
|
||||
@@ -15,7 +15,7 @@ import { formatBinding, SHORTCUT_ACTIONS, SHORTCUT_LABELS } from "@/lib/shortcut
|
||||
import { formatShortcut } from "@/utils/platformUtils";
|
||||
import { toast } from "sonner";
|
||||
|
||||
export const RECORDLY_ISSUES_URL = "https://github.com/webadderall/Recordly/issues";
|
||||
export const RECORDLY_ISSUES_URL = "https://github.com/webadderallorg/Recordly/issues";
|
||||
const RECORDLY_DISCORD_URL = "https://discord.gg/sdv2FBVNgE";
|
||||
const RECORDLY_X_URL = "https://x.com/webadderall";
|
||||
const CONTACT_EMAIL = "youngchen3442@gmail.com";
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// Friendly reminder: Recordly is licensed under AGPL-3.0, author @webadderall, repo-> https://github.com/webadderall/Recordly
|
||||
// Friendly reminder: Recordly is licensed under AGPL-3.0, author @webadderall, repo-> https://github.com/webadderallorg/Recordly
|
||||
// Please use this code with the right attribution.
|
||||
|
||||
export interface SpringState {
|
||||
|
||||
Reference in New Issue
Block a user