Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/pubdev-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
- master
jobs:
build:
if: github.repository == 'PDFTron/pdftron-flutter'
if: github.repository == 'ApryseSDK/pdftron-flutter'
runs-on: ubuntu-latest
container:
image: google/dart:latest
Expand All @@ -27,4 +27,4 @@ jobs:
}
EOF
- name: Publish package
run: pub publish -f
run: pub publish -f
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@

# 1.0.0-beta.3 - November 8, 2021

- Updated the Android plugin and widget ([#128](https://github.com/PDFTron/pdftron-flutter/issues/128)):
- Updated the Android plugin and widget ([#128](https://github.com/ApryseSDK/pdftron-flutter/issues/128)):
- The plugin now supports [Flutter's new embedding engine](https://flutter.dev/docs/development/packages-and-plugins/plugin-api-migration).
- 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
and in regards to stability, places the widget on parity with the plugin.
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ PDFTron's Flutter PDF library brings smooth, flexible, and stand-alone document
- Night mode to improve viewing in low-light environments
- And much more...

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

**Android**|**iOS**
:--:|:--:
Expand Down Expand Up @@ -36,7 +36,7 @@ More information can be found at https://www.pdftron.com/documentation/guides/fl
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)

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

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

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

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

## Installation

Expand All @@ -67,7 +67,7 @@ The release can be found here: https://github.com/PDFTron/pdftron-flutter/releas
sdk: flutter
+ pdftron_flutter:
+ git:
+ url: git://github.com/PDFTron/pdftron-flutter.git
+ url: git://github.com/ApryseSDK/pdftron-flutter.git
```

3. In the `myapp` directory, run `flutter packages get`.
Expand Down Expand Up @@ -433,11 +433,11 @@ return Scaffold(
```

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

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

## License
See [License](https://github.com/PDFTron/pdftron-flutter/blob/publish-prep-nullsafe/LICENSE)
See [License](https://github.com/ApryseSDK/pdftron-flutter/blob/publish-prep-nullsafe/LICENSE)
![](https://onepixel.pdftron.com/pdftron-flutter)
2 changes: 1 addition & 1 deletion lib/pdftron_flutter.dart
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ class PdftronFlutter {
/// [path] specifies the file name of the image resource. The button will use
/// the specified icon if [Config.showLeadingNavButton], which is true by
/// default, is true in the config. To add an image file to your application,
/// please follow the steps in the [wiki page](https://github.com/PDFTron/pdftron-flutter/wiki/Adding-an-Image-Resource-To-Your-Application).
/// please follow the steps in the [wiki page](https://github.com/ApryseSDK/pdftron-flutter/wiki/Adding-an-Image-Resource-To-Your-Application).
static Future<void> setLeadingNavButtonIcon(String path) {
return _channel.invokeMethod(Functions.setLeadingNavButtonIcon,
<String, dynamic>{Parameters.leadingNavButtonIcon: path});
Expand Down
2 changes: 1 addition & 1 deletion lib/src/document_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ class DocumentViewController {
/// [path] specifies the file name of the image resource. The button will use
/// the specified icon if [Config.showLeadingNavButton], which is true by
/// default, is true in the config. To add an image file to your application,
/// please follow the steps in the [wiki page](https://github.com/PDFTron/pdftron-flutter/wiki/Adding-an-Image-Resource-To-Your-Application).
/// please follow the steps in the [wiki page](https://github.com/ApryseSDK/pdftron-flutter/wiki/Adding-an-Image-Resource-To-Your-Application).
Future<void> setLeadingNavButtonIcon(String path) {
return _channel.invokeMethod(Functions.setLeadingNavButtonIcon,
<String, dynamic>{Parameters.leadingNavButtonIcon: path});
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: pdftron_flutter
description: A convenience wrapper to build Flutter apps that use the PDFTron mobile SDK for smooth, flexible, and stand-alone document viewing.
version: 1.0.1-34
version: 1.0.1-35
homepage: https://www.apryse.com
repository: https://github.com/ApryseSDK/pdftron-flutter
issue_tracker: https://github.com/ApryseSDK/pdftron-flutter/issues
Expand Down