feat: bump version number, temporarily disable in-app viewer

This commit is contained in:
Anton Stubenbord
2023-05-12 00:42:31 +02:00
parent 96c4b37f5f
commit 0231f28f3f
2 changed files with 3 additions and 2 deletions

View File

@@ -304,10 +304,11 @@ class _DocumentDetailsPageState extends State<DocumentDetailsPage> {
document: state.document,
enabled: isConnected,
),
//TODO: Enable again, need new pdf viewer package...
IconButton(
tooltip: S.of(context)!.previewTooltip,
icon: const Icon(Icons.visibility),
onPressed: isConnected ? () => _onOpen(state.document) : null,
onPressed: (isConnected && false) ? () => _onOpen(state.document) : null,
).paddedOnly(right: 4.0),
IconButton(
tooltip: S.of(context)!.openInSystemViewer,

View File

@@ -17,7 +17,7 @@ publish_to: "none" # Remove this line if you wish to publish to pub.dev
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
# Read more about iOS versioning at
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
version: 2.2.4+32
version: 2.2.5+33
environment:
sdk: ">=2.19.0 <4.0.0"