Skip to content

Commit 4ef00f8

Browse files
committed
[Example] Update to ApryseSDK link
1 parent 40c4bda commit 4ef00f8

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.github/workflows/pubdev-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
- master
88
jobs:
99
build:
10-
if: github.repository == 'PDFTron/pdftron-flutter'
10+
if: github.repository == ApryseSDK/pdftron-flutter'
1111
runs-on: ubuntu-latest
1212
container:
1313
image: google/dart:latest

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@
130130

131131
# 1.0.0-beta.3 - November 8, 2021
132132

133-
- Updated the Android plugin and widget ([#128](https://github.com/PDFTron/pdftron-flutter/issues/128)):
133+
- Updated the Android plugin and widget ([#128](https://github.com/ApryseSDK/pdftron-flutter/issues/128)):
134134
- The plugin now supports [Flutter's new embedding engine](https://flutter.dev/docs/development/packages-and-plugins/plugin-api-migration).
135135
- The widget now uses [hybrid composition](https://flutter.dev/docs/development/platform-integration/platform-views?tab=ios-platform-views-objective-c-tab#hybrid-composition). This update fixes issues such as: https://github.com/flutter/flutter/issues/58273
136136
and in regards to stability, places the widget on parity with the plugin.

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ PDFTron's Flutter PDF library brings smooth, flexible, and stand-alone document
88
- Night mode to improve viewing in low-light environments
99
- And much more...
1010

11-
More information can be found at https://www.pdftron.com/documentation/guides/flutter
11+
More information can be found at https://docs.apryse.com/documentation/guides/flutter/
1212

1313
**Android**|**iOS**
1414
:--:|:--:
@@ -36,7 +36,7 @@ More information can be found at https://www.pdftron.com/documentation/guides/fl
3636
Dart now supports [sound null safety](https://dart.dev/null-safety), which is available starting from Dart 2.12.0 and Flutter 2.0.0. Here is a guide to migrate to [null safety](https://dart.dev/null-safety/migration-guide)
3737

3838
If you would like to use our null safe SDK, it is available in the following places:
39-
- [GitHub](https://github.com/PDFTron/pdftron-flutter)
39+
- [GitHub](https://github.com/ApryseSDK/pdftron-flutter)
4040
- [pub.dev](https://pub.dev/packages/pdftron_flutter)
4141

4242
The rest of this README.md contains documentation, installation instructions, and information for the null safe version of our SDK.
@@ -45,7 +45,7 @@ The rest of this README.md contains documentation, installation instructions, an
4545

4646
Version `0.0.6` is the last stable release for the legacy UI.
4747

48-
The release can be found here: https://github.com/PDFTron/pdftron-flutter/releases/tag/legacy-ui.
48+
The release can be found here: https://github.com/ApryseSDK/pdftron-flutter/releases/tag/legacy-ui.
4949

5050
## Installation
5151

@@ -67,7 +67,7 @@ The release can be found here: https://github.com/PDFTron/pdftron-flutter/releas
6767
sdk: flutter
6868
+ pdftron_flutter:
6969
+ git:
70-
+ url: git://github.com/PDFTron/pdftron-flutter.git
70+
+ url: git://github.com/ApryseSDK/pdftron-flutter.git
7171
```
7272

7373
3. In the `myapp` directory, run `flutter packages get`.
@@ -433,11 +433,11 @@ return Scaffold(
433433
```
434434

435435
## Changelog
436-
See [Changelog](https://github.com/PDFTron/pdftron-flutter/blob/publish-prep-nullsafe/CHANGELOG.md)
436+
See [Changelog](https://github.com/ApryseSDK/pdftron-flutter/blob/publish-prep-nullsafe/CHANGELOG.md)
437437

438438
## Contributing
439-
See [Contributing](https://github.com/PDFTron/pdftron-flutter/blob/publish-prep-nullsafe/CONTRIBUTING.md)
439+
See [Contributing](https://github.com/ApryseSDK/pdftron-flutter/blob/publish-prep-nullsafe/CONTRIBUTING.md)
440440

441441
## License
442-
See [License](https://github.com/PDFTron/pdftron-flutter/blob/publish-prep-nullsafe/LICENSE)
442+
See [License](https://github.com/ApryseSDK/pdftron-flutter/blob/publish-prep-nullsafe/LICENSE)
443443
![](https://onepixel.pdftron.com/pdftron-flutter)

lib/pdftron_flutter.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@ class PdftronFlutter {
377377
/// [path] specifies the file name of the image resource. The button will use
378378
/// the specified icon if [Config.showLeadingNavButton], which is true by
379379
/// default, is true in the config. To add an image file to your application,
380-
/// please follow the steps in the [wiki page](https://github.com/PDFTron/pdftron-flutter/wiki/Adding-an-Image-Resource-To-Your-Application).
380+
/// please follow the steps in the [wiki page](https://github.com/ApryseSDK/pdftron-flutter/wiki/Adding-an-Image-Resource-To-Your-Application).
381381
static Future<void> setLeadingNavButtonIcon(String path) {
382382
return _channel.invokeMethod(Functions.setLeadingNavButtonIcon,
383383
<String, dynamic>{Parameters.leadingNavButtonIcon: path});

lib/src/document_view.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ class DocumentViewController {
407407
/// [path] specifies the file name of the image resource. The button will use
408408
/// the specified icon if [Config.showLeadingNavButton], which is true by
409409
/// default, is true in the config. To add an image file to your application,
410-
/// please follow the steps in the [wiki page](https://github.com/PDFTron/pdftron-flutter/wiki/Adding-an-Image-Resource-To-Your-Application).
410+
/// please follow the steps in the [wiki page](https://github.com/ApryseSDK/pdftron-flutter/wiki/Adding-an-Image-Resource-To-Your-Application).
411411
Future<void> setLeadingNavButtonIcon(String path) {
412412
return _channel.invokeMethod(Functions.setLeadingNavButtonIcon,
413413
<String, dynamic>{Parameters.leadingNavButtonIcon: path});

0 commit comments

Comments
 (0)