Skip to content

Commit 48af65c

Browse files
Merge pull request #11 from AlessioLuciani/new/doc-info
Add document information class and retrieval
2 parents dd6e673 + 91942de commit 48af65c

File tree

21 files changed

+391
-390
lines changed

21 files changed

+391
-390
lines changed

.gitignore

Lines changed: 113 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,118 @@
1+
# Miscellaneous
2+
*.class
3+
*.lock
4+
*.log
5+
*.pyc
6+
*.swp
17
.DS_Store
2-
.dart_tool/
8+
.atom/
9+
.buildlog/
10+
.history
11+
.svn/
12+
13+
# IntelliJ related
14+
*.iml
15+
*.ipr
16+
*.iws
17+
.idea/
18+
19+
# Visual Studio Code related
20+
.classpath
21+
.project
22+
.settings/
23+
.vscode/
24+
25+
# Flutter repo-specific
26+
/bin/cache/
27+
/bin/mingit/
28+
/dev/benchmarks/mega_gallery/
29+
/dev/bots/.recipe_deps
30+
/dev/bots/android_tools/
31+
/dev/devicelab/ABresults*.json
32+
/dev/docs/doc/
33+
/dev/docs/flutter.docs.zip
34+
/dev/docs/lib/
35+
/dev/docs/pubspec.yaml
36+
/dev/integration_tests/**/xcuserdata
37+
/dev/integration_tests/**/Pods
38+
/packages/flutter/coverage/
39+
version
40+
analysis_benchmark.json
341

42+
# packages file containing multi-root paths
43+
.packages.generated
44+
45+
# Flutter/Dart/Pub related
46+
**/doc/api/
47+
.dart_tool/
48+
.flutter-plugins
49+
.flutter-plugins-dependencies
50+
**/generated_plugin_registrant.dart
451
.packages
52+
.pub-cache/
553
.pub/
6-
754
build/
55+
flutter_*.png
56+
linked_*.ds
57+
unlinked.ds
58+
unlinked_spec.ds
59+
60+
# Android related
61+
**/android/**/gradle-wrapper.jar
62+
**/android/.gradle
63+
**/android/captures/
64+
**/android/gradlew
65+
**/android/gradlew.bat
66+
**/android/local.properties
67+
**/android/**/GeneratedPluginRegistrant.java
68+
**/android/key.properties
69+
*.jks
70+
71+
# iOS/XCode related
72+
**/ios/**/*.mode1v3
73+
**/ios/**/*.mode2v3
74+
**/ios/**/*.moved-aside
75+
**/ios/**/*.pbxuser
76+
**/ios/**/*.perspectivev3
77+
**/ios/**/*sync/
78+
**/ios/**/.sconsign.dblite
79+
**/ios/**/.tags*
80+
**/ios/**/.vagrant/
81+
**/ios/**/DerivedData/
82+
**/ios/**/Icon?
83+
**/ios/**/Pods/
84+
**/ios/**/.symlinks/
85+
**/ios/**/profile
86+
**/ios/**/xcuserdata
87+
**/ios/.generated/
88+
**/ios/Flutter/.last_build_id
89+
**/ios/Flutter/App.framework
90+
**/ios/Flutter/Flutter.framework
91+
**/ios/Flutter/Flutter.podspec
92+
**/ios/Flutter/Generated.xcconfig
93+
**/ios/Flutter/app.flx
94+
**/ios/Flutter/app.zip
95+
**/ios/Flutter/flutter_assets/
96+
**/ios/Flutter/flutter_export_environment.sh
97+
**/ios/ServiceDefinitions.json
98+
**/ios/Runner/GeneratedPluginRegistrant.*
99+
100+
# macOS
101+
**/macos/Flutter/GeneratedPluginRegistrant.swift
102+
**/macos/Flutter/Flutter-Debug.xcconfig
103+
**/macos/Flutter/Flutter-Release.xcconfig
104+
**/macos/Flutter/Flutter-Profile.xcconfig
105+
106+
# Coverage
107+
coverage/
108+
109+
# Symbols
110+
app.*.symbols
111+
112+
# Exceptions to above rules.
113+
!**/ios/**/default.mode1v3
114+
!**/ios/**/default.mode2v3
115+
!**/ios/**/default.pbxuser
116+
!**/ios/**/default.perspectivev3
117+
!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages
118+
!/dev/ci/**/Gemfile.lock

.idea/codeStyles/Project.xml

Lines changed: 0 additions & 116 deletions
This file was deleted.

.idea/libraries/Dart_SDK.xml

Lines changed: 0 additions & 19 deletions
This file was deleted.

.idea/libraries/Flutter_Plugins.xml

Lines changed: 0 additions & 11 deletions
This file was deleted.

.idea/libraries/Flutter_for_Android.xml

Lines changed: 0 additions & 9 deletions
This file was deleted.

.idea/modules.xml

Lines changed: 0 additions & 10 deletions
This file was deleted.

.idea/runConfigurations/example_lib_main_dart.xml

Lines changed: 0 additions & 6 deletions
This file was deleted.

.idea/vcs.xml

Lines changed: 0 additions & 7 deletions
This file was deleted.

.idea/workspace.xml

Lines changed: 0 additions & 76 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 0.3.0
2+
3+
* A class for the PDF document information has been added. Now this information
4+
is retrieved on the initialization of the document.
5+
16
## 0.2.2
27

38
* Code formatting has been improved and minor issues solved.

0 commit comments

Comments
 (0)