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:
@@ -899,7 +899,7 @@ npm install @timesafari/daily-notification-plugin
|
||||
npm install /path/to/daily-notification-plugin
|
||||
|
||||
# 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
|
||||
@@ -1310,7 +1310,7 @@ scripts/
|
||||
|
||||
### Getting Help
|
||||
- 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)
|
||||
- Ask in [Capacitor community](https://github.com/ionic-team/capacitor/discussions)
|
||||
|
||||
|
||||
@@ -134,7 +134,7 @@ npm install @timesafari/daily-notification-plugin
|
||||
Or install from Git repository:
|
||||
|
||||
```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!
|
||||
@@ -795,7 +795,7 @@ console.log('Callbacks:', callbacks);
|
||||
### Development Setup
|
||||
|
||||
```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
|
||||
npm install
|
||||
npm run build
|
||||
|
||||
@@ -72,7 +72,7 @@ npm list @timesafari/daily-notification-plugin
|
||||
|
||||
### Error Handling
|
||||
- **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
|
||||
|
||||
|
||||
@@ -257,7 +257,7 @@ Add the plugin and contracts package to your `package.json` dependencies:
|
||||
```json
|
||||
{
|
||||
"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"
|
||||
}
|
||||
}
|
||||
@@ -265,7 +265,7 @@ Add the plugin and contracts package to your `package.json` dependencies:
|
||||
|
||||
Or install directly via npm:
|
||||
```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
|
||||
```
|
||||
|
||||
|
||||
@@ -26,7 +26,7 @@ npm install @timesafari/daily-notification-plugin
|
||||
Or install from Git:
|
||||
|
||||
```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
|
||||
|
||||
@@ -359,7 +359,7 @@ ls -la libs/
|
||||
- [API.md](../API.md) - Plugin API documentation
|
||||
|
||||
### 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)
|
||||
|
||||
### Tools
|
||||
|
||||
@@ -3,9 +3,9 @@ Pod::Spec.new do |s|
|
||||
s.version = '1.2.1'
|
||||
s.summary = 'Daily Notification Plugin for Capacitor'
|
||||
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.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.ios.deployment_target = '13.0'
|
||||
s.dependency 'Capacitor', '>= 5.0.0'
|
||||
|
||||
@@ -452,7 +452,7 @@ export interface DailyNotificationPlugin {
|
||||
*
|
||||
* @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
|
||||
*/
|
||||
configureNativeFetcher(options: {
|
||||
|
||||
Reference in New Issue
Block a user