├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ ├── build.yml │ ├── release.yml │ └── run-ui-tests.yml ├── .gitignore ├── .run ├── Run IDE for UI Tests.run.xml ├── Run IDE with Plugin.run.xml ├── Run Plugin Tests.run.xml ├── Run Plugin Verification.run.xml └── Run Qodana.run.xml ├── CHANGELOG.md ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── img ├── plugin_settings.png └── quick_fix.png ├── qodana.yml ├── settings.gradle.kts └── src ├── main ├── kotlin │ └── pl │ │ └── pszklarska │ │ └── pubversionchecker │ │ ├── annotator │ │ └── PubPackagesAnnotator.kt │ │ ├── dto │ │ ├── Dependency.kt │ │ ├── DependencyDescription.kt │ │ └── Response.kt │ │ ├── parsing │ │ └── YamlParser.kt │ │ ├── quickfix │ │ ├── GoToPubDevQuickFix.kt │ │ ├── UpdateAllDependenciesQuickFix.kt │ │ └── UpdateDependencyQuickFix.kt │ │ ├── reporting │ │ ├── CrashReporting.kt │ │ └── SentryErrorReporter.kt │ │ ├── resources │ │ └── Strings.kt │ │ ├── settings │ │ ├── AppSettingsComponent.kt │ │ ├── AppSettingsConfigurable.kt │ │ └── AppSettingsState.kt │ │ └── util │ │ ├── DependencyHttpClient.kt │ │ ├── DependencyUtil.kt │ │ ├── LogUtil.kt │ │ ├── Secrets.kt │ │ ├── VersionsRepository.kt │ │ └── exceptions │ │ ├── UnableToGetCurrentVersionException.kt │ │ ├── UnableToGetLatestVersionException.kt │ │ └── UnableToGetPackageNameException.kt └── resources │ ├── META-INF │ ├── plugin.xml │ └── pluginIcon.svg │ └── inspectionDescriptions │ └── PubPackages.html └── test └── kotlin └── pl └── pszklarska └── pubversionchecker ├── parsing └── YamlParserTest.kt └── util ├── DependencyUtilTest.kt └── VersionsRepositoryTest.kt /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pszklarska/FlutterPubVersionChecker/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pszklarska/FlutterPubVersionChecker/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pszklarska/FlutterPubVersionChecker/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pszklarska/FlutterPubVersionChecker/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/run-ui-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pszklarska/FlutterPubVersionChecker/HEAD/.github/workflows/run-ui-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | .idea 3 | build 4 | out 5 | *.DS_Store 6 | local.properties -------------------------------------------------------------------------------- /.run/Run IDE for UI Tests.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pszklarska/FlutterPubVersionChecker/HEAD/.run/Run IDE for UI Tests.run.xml -------------------------------------------------------------------------------- /.run/Run IDE with Plugin.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pszklarska/FlutterPubVersionChecker/HEAD/.run/Run IDE with Plugin.run.xml -------------------------------------------------------------------------------- /.run/Run Plugin Tests.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pszklarska/FlutterPubVersionChecker/HEAD/.run/Run Plugin Tests.run.xml -------------------------------------------------------------------------------- /.run/Run Plugin Verification.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pszklarska/FlutterPubVersionChecker/HEAD/.run/Run Plugin Verification.run.xml -------------------------------------------------------------------------------- /.run/Run Qodana.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pszklarska/FlutterPubVersionChecker/HEAD/.run/Run Qodana.run.xml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pszklarska/FlutterPubVersionChecker/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pszklarska/FlutterPubVersionChecker/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pszklarska/FlutterPubVersionChecker/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pszklarska/FlutterPubVersionChecker/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pszklarska/FlutterPubVersionChecker/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pszklarska/FlutterPubVersionChecker/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pszklarska/FlutterPubVersionChecker/HEAD/gradlew.bat -------------------------------------------------------------------------------- /img/plugin_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pszklarska/FlutterPubVersionChecker/HEAD/img/plugin_settings.png -------------------------------------------------------------------------------- /img/quick_fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pszklarska/FlutterPubVersionChecker/HEAD/img/quick_fix.png -------------------------------------------------------------------------------- /qodana.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pszklarska/FlutterPubVersionChecker/HEAD/qodana.yml -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- 1 | rootProject.name = "pubversionchecker" 2 | -------------------------------------------------------------------------------- /src/main/kotlin/pl/pszklarska/pubversionchecker/annotator/PubPackagesAnnotator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pszklarska/FlutterPubVersionChecker/HEAD/src/main/kotlin/pl/pszklarska/pubversionchecker/annotator/PubPackagesAnnotator.kt -------------------------------------------------------------------------------- /src/main/kotlin/pl/pszklarska/pubversionchecker/dto/Dependency.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pszklarska/FlutterPubVersionChecker/HEAD/src/main/kotlin/pl/pszklarska/pubversionchecker/dto/Dependency.kt -------------------------------------------------------------------------------- /src/main/kotlin/pl/pszklarska/pubversionchecker/dto/DependencyDescription.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pszklarska/FlutterPubVersionChecker/HEAD/src/main/kotlin/pl/pszklarska/pubversionchecker/dto/DependencyDescription.kt -------------------------------------------------------------------------------- /src/main/kotlin/pl/pszklarska/pubversionchecker/dto/Response.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pszklarska/FlutterPubVersionChecker/HEAD/src/main/kotlin/pl/pszklarska/pubversionchecker/dto/Response.kt -------------------------------------------------------------------------------- /src/main/kotlin/pl/pszklarska/pubversionchecker/parsing/YamlParser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pszklarska/FlutterPubVersionChecker/HEAD/src/main/kotlin/pl/pszklarska/pubversionchecker/parsing/YamlParser.kt -------------------------------------------------------------------------------- /src/main/kotlin/pl/pszklarska/pubversionchecker/quickfix/GoToPubDevQuickFix.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pszklarska/FlutterPubVersionChecker/HEAD/src/main/kotlin/pl/pszklarska/pubversionchecker/quickfix/GoToPubDevQuickFix.kt -------------------------------------------------------------------------------- /src/main/kotlin/pl/pszklarska/pubversionchecker/quickfix/UpdateAllDependenciesQuickFix.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pszklarska/FlutterPubVersionChecker/HEAD/src/main/kotlin/pl/pszklarska/pubversionchecker/quickfix/UpdateAllDependenciesQuickFix.kt -------------------------------------------------------------------------------- /src/main/kotlin/pl/pszklarska/pubversionchecker/quickfix/UpdateDependencyQuickFix.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pszklarska/FlutterPubVersionChecker/HEAD/src/main/kotlin/pl/pszklarska/pubversionchecker/quickfix/UpdateDependencyQuickFix.kt -------------------------------------------------------------------------------- /src/main/kotlin/pl/pszklarska/pubversionchecker/reporting/CrashReporting.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pszklarska/FlutterPubVersionChecker/HEAD/src/main/kotlin/pl/pszklarska/pubversionchecker/reporting/CrashReporting.kt -------------------------------------------------------------------------------- /src/main/kotlin/pl/pszklarska/pubversionchecker/reporting/SentryErrorReporter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pszklarska/FlutterPubVersionChecker/HEAD/src/main/kotlin/pl/pszklarska/pubversionchecker/reporting/SentryErrorReporter.kt -------------------------------------------------------------------------------- /src/main/kotlin/pl/pszklarska/pubversionchecker/resources/Strings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pszklarska/FlutterPubVersionChecker/HEAD/src/main/kotlin/pl/pszklarska/pubversionchecker/resources/Strings.kt -------------------------------------------------------------------------------- /src/main/kotlin/pl/pszklarska/pubversionchecker/settings/AppSettingsComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pszklarska/FlutterPubVersionChecker/HEAD/src/main/kotlin/pl/pszklarska/pubversionchecker/settings/AppSettingsComponent.kt -------------------------------------------------------------------------------- /src/main/kotlin/pl/pszklarska/pubversionchecker/settings/AppSettingsConfigurable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pszklarska/FlutterPubVersionChecker/HEAD/src/main/kotlin/pl/pszklarska/pubversionchecker/settings/AppSettingsConfigurable.kt -------------------------------------------------------------------------------- /src/main/kotlin/pl/pszklarska/pubversionchecker/settings/AppSettingsState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pszklarska/FlutterPubVersionChecker/HEAD/src/main/kotlin/pl/pszklarska/pubversionchecker/settings/AppSettingsState.kt -------------------------------------------------------------------------------- /src/main/kotlin/pl/pszklarska/pubversionchecker/util/DependencyHttpClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pszklarska/FlutterPubVersionChecker/HEAD/src/main/kotlin/pl/pszklarska/pubversionchecker/util/DependencyHttpClient.kt -------------------------------------------------------------------------------- /src/main/kotlin/pl/pszklarska/pubversionchecker/util/DependencyUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pszklarska/FlutterPubVersionChecker/HEAD/src/main/kotlin/pl/pszklarska/pubversionchecker/util/DependencyUtil.kt -------------------------------------------------------------------------------- /src/main/kotlin/pl/pszklarska/pubversionchecker/util/LogUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pszklarska/FlutterPubVersionChecker/HEAD/src/main/kotlin/pl/pszklarska/pubversionchecker/util/LogUtil.kt -------------------------------------------------------------------------------- /src/main/kotlin/pl/pszklarska/pubversionchecker/util/Secrets.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pszklarska/FlutterPubVersionChecker/HEAD/src/main/kotlin/pl/pszklarska/pubversionchecker/util/Secrets.kt -------------------------------------------------------------------------------- /src/main/kotlin/pl/pszklarska/pubversionchecker/util/VersionsRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pszklarska/FlutterPubVersionChecker/HEAD/src/main/kotlin/pl/pszklarska/pubversionchecker/util/VersionsRepository.kt -------------------------------------------------------------------------------- /src/main/kotlin/pl/pszklarska/pubversionchecker/util/exceptions/UnableToGetCurrentVersionException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pszklarska/FlutterPubVersionChecker/HEAD/src/main/kotlin/pl/pszklarska/pubversionchecker/util/exceptions/UnableToGetCurrentVersionException.kt -------------------------------------------------------------------------------- /src/main/kotlin/pl/pszklarska/pubversionchecker/util/exceptions/UnableToGetLatestVersionException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pszklarska/FlutterPubVersionChecker/HEAD/src/main/kotlin/pl/pszklarska/pubversionchecker/util/exceptions/UnableToGetLatestVersionException.kt -------------------------------------------------------------------------------- /src/main/kotlin/pl/pszklarska/pubversionchecker/util/exceptions/UnableToGetPackageNameException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pszklarska/FlutterPubVersionChecker/HEAD/src/main/kotlin/pl/pszklarska/pubversionchecker/util/exceptions/UnableToGetPackageNameException.kt -------------------------------------------------------------------------------- /src/main/resources/META-INF/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pszklarska/FlutterPubVersionChecker/HEAD/src/main/resources/META-INF/plugin.xml -------------------------------------------------------------------------------- /src/main/resources/META-INF/pluginIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pszklarska/FlutterPubVersionChecker/HEAD/src/main/resources/META-INF/pluginIcon.svg -------------------------------------------------------------------------------- /src/main/resources/inspectionDescriptions/PubPackages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pszklarska/FlutterPubVersionChecker/HEAD/src/main/resources/inspectionDescriptions/PubPackages.html -------------------------------------------------------------------------------- /src/test/kotlin/pl/pszklarska/pubversionchecker/parsing/YamlParserTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pszklarska/FlutterPubVersionChecker/HEAD/src/test/kotlin/pl/pszklarska/pubversionchecker/parsing/YamlParserTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/pl/pszklarska/pubversionchecker/util/DependencyUtilTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pszklarska/FlutterPubVersionChecker/HEAD/src/test/kotlin/pl/pszklarska/pubversionchecker/util/DependencyUtilTest.kt -------------------------------------------------------------------------------- /src/test/kotlin/pl/pszklarska/pubversionchecker/util/VersionsRepositoryTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pszklarska/FlutterPubVersionChecker/HEAD/src/test/kotlin/pl/pszklarska/pubversionchecker/util/VersionsRepositoryTest.kt --------------------------------------------------------------------------------