docs: point repo URLs to Gitea

Replace github.com/timesafari/daily-notification-plugin with
gitea.anomalistdesign.com/trent_larson/daily-notification-plugin
This commit is contained in:
Jose Olarte III
2026-03-06 19:16:30 +08:00
parent 6f4d946662
commit 36356e0aca
8 changed files with 12 additions and 12 deletions

View File

@@ -899,7 +899,7 @@ npm install @timesafari/daily-notification-plugin
npm install /path/to/daily-notification-plugin npm install /path/to/daily-notification-plugin
# Install from git repository # Install from git repository
npm install git+https://github.com/timesafari/daily-notification-plugin.git npm install git+https://gitea.anomalistdesign.com/trent_larson/daily-notification-plugin.git
``` ```
#### 3. Integration in Host Applications #### 3. Integration in Host Applications
@@ -1310,7 +1310,7 @@ scripts/
### Getting Help ### Getting Help
- Check the [troubleshooting section](#troubleshooting) - Check the [troubleshooting section](#troubleshooting)
- Review [GitHub issues](https://github.com/timesafari/daily-notification-plugin/issues) - Review [GitHub issues](https://gitea.anomalistdesign.com/trent_larson/daily-notification-plugin/issues)
- Consult [Capacitor documentation](https://capacitorjs.com/docs) - Consult [Capacitor documentation](https://capacitorjs.com/docs)
- Ask in [Capacitor community](https://github.com/ionic-team/capacitor/discussions) - Ask in [Capacitor community](https://github.com/ionic-team/capacitor/discussions)

View File

@@ -134,7 +134,7 @@ npm install @timesafari/daily-notification-plugin
Or install from Git repository: Or install from Git repository:
```bash ```bash
npm install git+https://github.com/timesafari/daily-notification-plugin.git npm install git+https://gitea.anomalistdesign.com/trent_larson/daily-notification-plugin.git
``` ```
The plugin follows the standard Capacitor Android structure - no additional path configuration needed! The plugin follows the standard Capacitor Android structure - no additional path configuration needed!
@@ -795,7 +795,7 @@ console.log('Callbacks:', callbacks);
### Development Setup ### Development Setup
```bash ```bash
git clone https://github.com/timesafari/daily-notification-plugin.git git clone https://gitea.anomalistdesign.com/trent_larson/daily-notification-plugin.git
cd daily-notification-plugin cd daily-notification-plugin
npm install npm install
npm run build npm run build

View File

@@ -72,7 +72,7 @@ npm list @timesafari/daily-notification-plugin
### Error Handling ### Error Handling
- **Error**: "Package not found" - **Error**: "Package not found"
- **Solution**: Check npm registry access or use Git URL: `npm install git+https://github.com/timesafari/daily-notification-plugin.git` - **Solution**: Check npm registry access or use Git URL: `npm install git+https://gitea.anomalistdesign.com/trent_larson/daily-notification-plugin.git`
## Step 2: Sync Capacitor ## Step 2: Sync Capacitor

View File

@@ -257,7 +257,7 @@ Add the plugin and contracts package to your `package.json` dependencies:
```json ```json
{ {
"dependencies": { "dependencies": {
"@timesafari/daily-notification-plugin": "git+https://github.com/timesafari/daily-notification-plugin.git#main", "@timesafari/daily-notification-plugin": "git+https://gitea.anomalistdesign.com/trent_larson/daily-notification-plugin.git#main",
"@timesafari/polling-contracts": "file:./packages/polling-contracts" "@timesafari/polling-contracts": "file:./packages/polling-contracts"
} }
} }
@@ -265,7 +265,7 @@ Add the plugin and contracts package to your `package.json` dependencies:
Or install directly via npm: Or install directly via npm:
```bash ```bash
npm install git+https://github.com/timesafari/daily-notification-plugin.git#main npm install git+https://gitea.anomalistdesign.com/trent_larson/daily-notification-plugin.git#main
npm install ./packages/polling-contracts npm install ./packages/polling-contracts
``` ```

View File

@@ -26,7 +26,7 @@ npm install @timesafari/daily-notification-plugin
Or install from Git: Or install from Git:
```bash ```bash
npm install git+https://github.com/timesafari/daily-notification-plugin.git npm install git+https://gitea.anomalistdesign.com/trent_larson/daily-notification-plugin.git
``` ```
## Step 2: Sync Capacitor ## Step 2: Sync Capacitor

View File

@@ -359,7 +359,7 @@ ls -la libs/
- [API.md](../API.md) - Plugin API documentation - [API.md](../API.md) - Plugin API documentation
### Community ### Community
- [GitHub Issues](https://github.com/timesafari/daily-notification-plugin/issues) - [GitHub Issues](https://gitea.anomalistdesign.com/trent_larson/daily-notification-plugin/issues)
- [Capacitor Community](https://github.com/ionic-team/capacitor/discussions) - [Capacitor Community](https://github.com/ionic-team/capacitor/discussions)
### Tools ### Tools

View File

@@ -3,9 +3,9 @@ Pod::Spec.new do |s|
s.version = '1.2.1' s.version = '1.2.1'
s.summary = 'Daily Notification Plugin for Capacitor' s.summary = 'Daily Notification Plugin for Capacitor'
s.license = 'MIT' s.license = 'MIT'
s.homepage = 'https://github.com/timesafari/daily-notification-plugin' s.homepage = 'https://gitea.anomalistdesign.com/trent_larson/daily-notification-plugin'
s.author = 'Matthew Raymer' s.author = 'Matthew Raymer'
s.source = { :git => 'https://github.com/timesafari/daily-notification-plugin.git', :tag => s.version.to_s } s.source = { :git => 'https://gitea.anomalistdesign.com/trent_larson/daily-notification-plugin.git', :tag => s.version.to_s }
s.source_files = 'Plugin/**/*.{swift,h,m,c,cc,mm,cpp}' s.source_files = 'Plugin/**/*.{swift,h,m,c,cc,mm,cpp}'
s.ios.deployment_target = '13.0' s.ios.deployment_target = '13.0'
s.dependency 'Capacitor', '>= 5.0.0' s.dependency 'Capacitor', '>= 5.0.0'

View File

@@ -452,7 +452,7 @@ export interface DailyNotificationPlugin {
* *
* @throws {Error} If configuration fails (missing params, no fetcher registered, etc.) * @throws {Error} If configuration fails (missing params, no fetcher registered, etc.)
* *
* @see {@link https://github.com/timesafari/daily-notification-plugin/blob/main/docs/NATIVE_FETCHER_CONFIGURATION.md | Native Fetcher Configuration Guide} * @see {@link https://gitea.anomalistdesign.com/trent_larson/daily-notification-plugin/blob/main/docs/NATIVE_FETCHER_CONFIGURATION.md | Native Fetcher Configuration Guide}
* for complete documentation and examples * for complete documentation and examples
*/ */
configureNativeFetcher(options: { configureNativeFetcher(options: {