Compare commits

...

13 Commits

Author SHA1 Message Date
Daniel Micay d5a5fbd99b update npm dependencies 2024-06-01 14:41:57 -04:00
dependabot[bot] 8448fafe0f Bump pdfjs-dist from 4.2.67 to 4.3.136
Bumps [pdfjs-dist](https://github.com/mozilla/pdfjs-dist) from 4.2.67 to 4.3.136.
- [Commits](https://github.com/mozilla/pdfjs-dist/commits)

---
updated-dependencies:
- dependency-name: pdfjs-dist
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-06-01 12:44:52 -04:00
Daniel Micay 52072ee79c update Gradle to 8.8 2024-05-31 21:14:56 -04:00
dependabot[bot] 736735fbd2 Bump eslint from 9.3.0 to 9.4.0
Bumps [eslint](https://github.com/eslint/eslint) from 9.3.0 to 9.4.0.
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](https://github.com/eslint/eslint/compare/v9.3.0...v9.4.0)

---
updated-dependencies:
- dependency-name: eslint
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-05-31 17:22:02 -04:00
Daniel Micay da75fff179 increment version to 20 2024-05-29 22:15:42 -04:00
Daniel Micay 6c56894994 update Kotlin to 2.0.0 2024-05-29 21:24:48 -04:00
Daniel Micay 6a3e31dcb7 use getLayoutInflater() instead of LayoutInflater.from(...) 2024-05-29 20:32:45 -04:00
Daniel Micay d28a7b73b7 update AndroidX AppCompat library to 1.7.0 2024-05-29 20:30:55 -04:00
dependabot[bot] 7f0e11920f Bump esbuild from 0.21.3 to 0.21.4
Bumps [esbuild](https://github.com/evanw/esbuild) from 0.21.3 to 0.21.4.
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](https://github.com/evanw/esbuild/compare/v0.21.3...v0.21.4)

---
updated-dependencies:
- dependency-name: esbuild
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-05-27 17:49:13 -04:00
Daniel Micay ac5d5418f5 update Android Gradle plugin to 8.4.1 2024-05-20 17:44:00 -04:00
dependabot[bot] 8ba4a83a8b Bump eslint from 9.2.0 to 9.3.0
Bumps [eslint](https://github.com/eslint/eslint) from 9.2.0 to 9.3.0.
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](https://github.com/eslint/eslint/compare/v9.2.0...v9.3.0)

---
updated-dependencies:
- dependency-name: eslint
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-05-17 17:55:11 -04:00
dependabot[bot] f126af92da Bump esbuild from 0.21.2 to 0.21.3
Bumps [esbuild](https://github.com/evanw/esbuild) from 0.21.2 to 0.21.3.
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](https://github.com/evanw/esbuild/compare/v0.21.2...v0.21.3)

---
updated-dependencies:
- dependency-name: esbuild
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-05-15 17:23:37 -04:00
dependabot[bot] 8d4ca84ea9 Bump esbuild from 0.21.1 to 0.21.2
Bumps [esbuild](https://github.com/evanw/esbuild) from 0.21.1 to 0.21.2.
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](https://github.com/evanw/esbuild/compare/v0.21.1...v0.21.2)

---
updated-dependencies:
- dependency-name: esbuild
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-05-13 19:36:56 -04:00
9 changed files with 855 additions and 657 deletions

View File

@ -48,7 +48,7 @@ android {
applicationId = "app.grapheneos.pdfviewer"
minSdk = 26
targetSdk = 34
versionCode = 19
versionCode = 20
versionName = versionCode.toString()
resourceConfigurations.add("en")
}
@ -83,7 +83,7 @@ android {
}
dependencies {
implementation("androidx.appcompat:appcompat:1.6.1")
implementation("androidx.appcompat:appcompat:1.7.0")
implementation("androidx.core:core:1.13.1")
implementation("com.google.android.material:material:1.12.0")
}

View File

@ -27,7 +27,7 @@ class PasswordPromptFragment : DialogFragment() {
override fun onCreateDialog(savedInstanceState: Bundle?): Dialog {
val passwordPrompt = MaterialAlertDialogBuilder(requireContext())
val passwordDialogFragmentBinding =
PasswordDialogFragmentBinding.inflate(LayoutInflater.from(requireContext()))
PasswordDialogFragmentBinding.inflate(getLayoutInflater())
passwordLayout = passwordDialogFragmentBinding.pdfPasswordTextInputLayout
passwordEditText = passwordDialogFragmentBinding.pdfPasswordEditText
passwordPrompt.setView(passwordDialogFragmentBinding.root)

View File

@ -1,6 +1,6 @@
plugins {
id("com.android.application") version "8.4.0" apply false
id("org.jetbrains.kotlin.android") version "1.9.24" apply false
id("com.android.application") version "8.4.1" apply false
id("org.jetbrains.kotlin.android") version "2.0.0" apply false
}
allprojects {

File diff suppressed because it is too large Load Diff

Binary file not shown.

View File

@ -1,7 +1,7 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionSha256Sum=544c35d6bd849ae8a5ed0bcea39ba677dc40f49df7d1835561582da2009b961d
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
distributionSha256Sum=a4b4158601f8636cdeeab09bd76afb640030bb5b144aafe261a5e8af027dc612
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME

2
gradlew vendored
View File

@ -55,7 +55,7 @@
# Darwin, MinGW, and NonStop.
#
# (3) This script is generated from the Groovy template
# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
# https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
# within the Gradle project.
#
# You can find Gradle at https://github.com/gradle/gradle/.

495
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,8 +1,8 @@
{
"type": "module",
"devDependencies": {
"esbuild": "^0.21.1",
"eslint": "^9.2.0",
"pdfjs-dist": "^4.2.67"
"esbuild": "^0.21.4",
"eslint": "^9.4.0",
"pdfjs-dist": "^4.3.136"
}
}