Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: glorylab/POAPin
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.4.0
Choose a base ref
...
head repository: glorylab/POAPin
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.4.1
Choose a head ref
  • 7 commits
  • 41 files changed
  • 1 contributor

Commits on Aug 31, 2022

  1. 🔧 Create dependabot.yaml

    🔧 Create dependabot.yaml
    RockerFlower authored Aug 31, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    4b1fd27 View commit details
  2. 🔧 Update Flutter to v3.3

    RockerFlower committed Aug 31, 2022
    Copy the full SHA
    b14184c View commit details

Commits on Sep 5, 2022

  1. 🍱 Update icon dependency for GitPOAP

    RockerFlower authored and RockerFlower committed Sep 5, 2022
    Copy the full SHA
    e93cf0f View commit details
  2. ✨ Show GitPOAP count in HomePage

    RockerFlower authored and RockerFlower committed Sep 5, 2022
    Copy the full SHA
    721c4f8 View commit details
  3. ✨ Add GitPOAP Introduction dialog

    RockerFlower authored and RockerFlower committed Sep 5, 2022
    Copy the full SHA
    7e6d9b0 View commit details
  4. ✨ Add GitPOAPs page

    RockerFlower authored and RockerFlower committed Sep 5, 2022
    Copy the full SHA
    4ab7440 View commit details
  5. 🔖 Update version

    RockerFlower committed Sep 5, 2022
    Copy the full SHA
    447cad9 View commit details
Showing with 1,182 additions and 56 deletions.
  1. +7 −0 .github/dependabot.yaml
  2. +1 −1 ios/Flutter/AppFrameworkInfo.plist
  3. +1 −1 ios/Podfile.lock
  4. +7 −0 lib/common/routes/pages.dart
  5. +1 −0 lib/common/routes/routes.dart
  6. +7 −0 lib/common/translations/languages/de.dart
  7. +7 −0 lib/common/translations/languages/en_gb.dart
  8. +7 −0 lib/common/translations/languages/en_us.dart
  9. +7 −0 lib/common/translations/languages/es.dart
  10. +7 −0 lib/common/translations/languages/fr.dart
  11. +7 −0 lib/common/translations/languages/ja.dart
  12. +7 −0 lib/common/translations/languages/ko.dart
  13. +7 −0 lib/common/translations/languages/ru.dart
  14. +7 −0 lib/common/translations/languages/th.dart
  15. +7 −0 lib/common/translations/languages/tr.dart
  16. +7 −0 lib/common/translations/languages/uk.dart
  17. +7 −0 lib/common/translations/languages/vi.dart
  18. +7 −0 lib/common/translations/languages/zh_cn.dart
  19. +7 −0 lib/common/translations/languages/zh_hk.dart
  20. +7 −0 lib/common/translations/languages/zh_tw.dart
  21. +8 −0 lib/common/translations/strings.dart
  22. +86 −0 lib/data/models/gitpoap.dart
  23. +108 −0 lib/data/models/gitpoap.g.dart
  24. +11 −0 lib/data/network/api/gitpoap.dart
  25. +23 −0 lib/data/repository/gitpoap_repository.dart
  26. +2 −0 lib/main.dart
  27. +2 −0 lib/res/colors.dart
  28. +3 −1 lib/ui/pages/detail/controller.dart
  29. +0 −1 lib/ui/pages/detail/views/card.moments_preview.dart
  30. +0 −3 lib/ui/pages/detail/views/detail.dart
  31. +9 −0 lib/ui/pages/gitpoaps/binding.dart
  32. +70 −0 lib/ui/pages/gitpoaps/components/view.hive.dart
  33. +96 −0 lib/ui/pages/gitpoaps/controller.dart
  34. +231 −0 lib/ui/pages/gitpoaps/page.dart
  35. +2 −0 lib/ui/pages/home/components/card.dart
  36. +159 −0 lib/ui/pages/home/components/card.gitpoap.dart
  37. +153 −0 lib/ui/pages/home/components/dialog.gitpoap.dart
  38. +29 −30 lib/ui/pages/home/components/dialog.moment.dart
  39. +45 −4 lib/ui/pages/home/controller.dart
  40. +20 −13 pubspec.lock
  41. +3 −2 pubspec.yaml
7 changes: 7 additions & 0 deletions .github/dependabot.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
version: 2
enable-beta-ecosystems: true
updates:
- package-ecosystem: "pub"
directory: "/"
schedule:
interval: "daily"
2 changes: 1 addition & 1 deletion ios/Flutter/AppFrameworkInfo.plist
Original file line number Diff line number Diff line change
@@ -21,6 +21,6 @@
<key>CFBundleVersion</key>
<string>1.0</string>
<key>MinimumOSVersion</key>
<string>9.0</string>
<string>11.0</string>
</dict>
</plist>
2 changes: 1 addition & 1 deletion ios/Podfile.lock
Original file line number Diff line number Diff line change
@@ -315,7 +315,7 @@ SPEC CHECKSUMS:
FirebaseMessaging: 82c4a48638f53f7b184f3cc9f6cd2cbe533ab316
FirebasePerformance: 81f183c3fc593241d000a6367e54fd0f7ed402e3
FirebaseRemoteConfig: 2d6e2cfdb49af79535c8af8a80a4a5009038ec2b
Flutter: 50d75fe2f02b26cc09d224853bb45737f8b3214a
Flutter: f04841e97a9d0b0a8025694d0796dd46242b2854
flutter_image_compress: fd2b476345226e1a10ea352fa306af95704642c1
flutter_native_splash: 52501b97d1c0a5f898d687f1646226c1f93c56ef
FMDB: 2ce00b547f966261cd18927a3ddb07cb6f3db82a
7 changes: 7 additions & 0 deletions lib/common/routes/pages.dart
Original file line number Diff line number Diff line change
@@ -10,6 +10,8 @@ import 'package:poapin/ui/pages/detail/binding.dart';
import 'package:poapin/ui/pages/detail/page.dart';
import 'package:poapin/ui/pages/event/binding.dart';
import 'package:poapin/ui/pages/event/page.dart';
import 'package:poapin/ui/pages/gitpoaps/binding.dart';
import 'package:poapin/ui/pages/gitpoaps/page.dart';
import 'package:poapin/ui/pages/home/binding.dart';
import 'package:poapin/ui/pages/home/page.dart';
import 'package:poapin/ui/pages/me/binding.dart';
@@ -70,6 +72,11 @@ class AppPages {
),
binding: MomentBinding(),
),
GetPage(
name: AppRoutes.gitpoaps,
page: () => const GitPOAPsPage(),
binding: GitPOAPsBinding(),
),
GetPage(
name: AppRoutes.square,
page: () => const SquarePage(),
1 change: 1 addition & 0 deletions lib/common/routes/routes.dart
Original file line number Diff line number Diff line change
@@ -6,6 +6,7 @@ abstract class AppRoutes {
static const watchlist = '/watchlist';
static const moments = '/moments';
static const moment = '/moments/:id';
static const gitpoaps = '/gitpoaps';
static const square = '/square';
static const me = '/me';
static const tags = '/tags';
7 changes: 7 additions & 0 deletions lib/common/translations/languages/de.dart
Original file line number Diff line number Diff line change
@@ -67,6 +67,12 @@ class DeTranslations {
// ''',
//Strings.uploadMoments: 'Upload moments on welook.io',

/// GitPOAP
// Strings.gitPOAPDesc:
// '''A GitPOAP is a regular POAP (with an extra spin) that is minted through the GitPOAP platform for specified meaningful contribution to open source projects. Repo owners automatically distribute GitPOAPs to their contributors as recognition of their work.
// ''',
// Strings.gitPOAPStart: 'Contribute to POAPin',

/// Watchlist(Initial state)
// Strings.watchlistHint:
// 'You can add some addresses you are interested in here.',
@@ -117,6 +123,7 @@ class DeTranslations {
// Strings.done: 'Done',
// Strings.alert: 'Alert',
// Strings.error: 'Error',
// Strings.learnMore: 'learn more',
// --- Months
// Strings.january: 'January',
// Strings.february: 'February',
7 changes: 7 additions & 0 deletions lib/common/translations/languages/en_gb.dart
Original file line number Diff line number Diff line change
@@ -67,6 +67,12 @@ class EnGBTranslations {
// ''',
//Strings.uploadMoments: 'Upload moments on welook.io',

/// GitPOAP
// Strings.gitPOAPDesc:
// '''A GitPOAP is a regular POAP (with an extra spin) that is minted through the GitPOAP platform for specified meaningful contribution to open source projects. Repo owners automatically distribute GitPOAPs to their contributors as recognition of their work.
// ''',
// Strings.gitPOAPStart: 'Contribute to POAPin',

/// Watchlist(Initial state)
// Strings.watchlistHint:
// 'You can add some addresses you are interested in here.',
@@ -117,6 +123,7 @@ class EnGBTranslations {
// Strings.done: 'Done',
// Strings.alert: 'Alert',
// Strings.error: 'Error',
// Strings.learnMore: 'learn more',
// --- Months
// Strings.january: 'January',
// Strings.february: 'February',
7 changes: 7 additions & 0 deletions lib/common/translations/languages/en_us.dart
Original file line number Diff line number Diff line change
@@ -67,6 +67,12 @@ Moments is a way to add real value to your digital bookmark by saving real-life
''',
Strings.uploadMoments: 'Upload moments on welook.io',

/// GitPOAP
Strings.gitPOAPDesc:
'''A GitPOAP is a regular POAP (with an extra spin) that is minted through the GitPOAP platform for specified meaningful contribution to open source projects. Repo owners automatically distribute GitPOAPs to their contributors as recognition of their work.
''',
Strings.gitPOAPStart: 'Contribute to POAPin',

/// Watchlist(Initial state)
Strings.watchlistHint:
'You can add some addresses you are interested in here.',
@@ -117,6 +123,7 @@ Moments is a way to add real value to your digital bookmark by saving real-life
Strings.done: 'Done',
Strings.alert: 'Alert',
Strings.error: 'Error',
Strings.learnMore: 'learn more',
// --- Months
Strings.january: 'January',
Strings.february: 'February',
7 changes: 7 additions & 0 deletions lib/common/translations/languages/es.dart
Original file line number Diff line number Diff line change
@@ -67,6 +67,12 @@ class ESTranslations {
// ''',
//Strings.uploadMoments: 'Upload moments on welook.io',

/// GitPOAP
// Strings.gitPOAPDesc:
// '''A GitPOAP is a regular POAP (with an extra spin) that is minted through the GitPOAP platform for specified meaningful contribution to open source projects. Repo owners automatically distribute GitPOAPs to their contributors as recognition of their work.
// ''',
// Strings.gitPOAPStart: 'Contribute to POAPin',

/// Watchlist(Initial state)
// Strings.watchlistHint:
// 'You can add some addresses you are interested in here.',
@@ -117,6 +123,7 @@ class ESTranslations {
// Strings.done: 'Done',
// Strings.alert: 'Alert',
// Strings.error: 'Error',
// Strings.learnMore: 'learn more',
// --- Months
// Strings.january: 'January',
// Strings.february: 'February',
7 changes: 7 additions & 0 deletions lib/common/translations/languages/fr.dart
Original file line number Diff line number Diff line change
@@ -67,6 +67,12 @@ class FRTranslations {
// ''',
//Strings.uploadMoments: 'Upload moments on welook.io',

/// GitPOAP
// Strings.gitPOAPDesc:
// '''A GitPOAP is a regular POAP (with an extra spin) that is minted through the GitPOAP platform for specified meaningful contribution to open source projects. Repo owners automatically distribute GitPOAPs to their contributors as recognition of their work.
// ''',
// Strings.gitPOAPStart: 'Contribute to POAPin',

/// Watchlist(Initial state)
Strings.watchlistHint:
'Vous pouvez ajouter ici les adresses qui vous intéressent.',
@@ -117,6 +123,7 @@ class FRTranslations {
Strings.done: 'Effectué',
Strings.alert: 'Alerte',
Strings.error: 'Erreur',
// Strings.learnMore: 'learn more',
// --- Months
Strings.january: 'Janvier',
Strings.february: 'Février',
7 changes: 7 additions & 0 deletions lib/common/translations/languages/ja.dart
Original file line number Diff line number Diff line change
@@ -67,6 +67,12 @@ class JaTranslations {
// ''',
//Strings.uploadMoments: 'Upload moments on welook.io',

/// GitPOAP
// Strings.gitPOAPDesc:
// '''A GitPOAP is a regular POAP (with an extra spin) that is minted through the GitPOAP platform for specified meaningful contribution to open source projects. Repo owners automatically distribute GitPOAPs to their contributors as recognition of their work.
// ''',
// Strings.gitPOAPStart: 'Contribute to POAPin',

/// Watchlist(Initial state)
// Strings.watchlistHint:
// 'You can add some addresses you are interested in here.',
@@ -117,6 +123,7 @@ class JaTranslations {
// Strings.done: 'Done',
// Strings.alert: 'Alert',
// Strings.error: 'Error',
// Strings.learnMore: 'learn more',
// --- Months
// Strings.january: 'January',
// Strings.february: 'February',
7 changes: 7 additions & 0 deletions lib/common/translations/languages/ko.dart
Original file line number Diff line number Diff line change
@@ -67,6 +67,12 @@ class KoTranslations {
// ''',
//Strings.uploadMoments: 'Upload moments on welook.io',

/// GitPOAP
// Strings.gitPOAPDesc:
// '''A GitPOAP is a regular POAP (with an extra spin) that is minted through the GitPOAP platform for specified meaningful contribution to open source projects. Repo owners automatically distribute GitPOAPs to their contributors as recognition of their work.
// ''',
// Strings.gitPOAPStart: 'Contribute to POAPin',

/// Watchlist(Initial state)
// Strings.watchlistHint:
// 'You can add some addresses you are interested in here.',
@@ -117,6 +123,7 @@ class KoTranslations {
// Strings.done: 'Done',
// Strings.alert: 'Alert',
// Strings.error: 'Error',
// Strings.learnMore: 'learn more',
// --- Months
// Strings.january: 'January',
// Strings.february: 'February',
7 changes: 7 additions & 0 deletions lib/common/translations/languages/ru.dart
Original file line number Diff line number Diff line change
@@ -67,6 +67,12 @@ class RuTranslations {
// ''',
//Strings.uploadMoments: 'Upload moments on welook.io',

/// GitPOAP
// Strings.gitPOAPDesc:
// '''A GitPOAP is a regular POAP (with an extra spin) that is minted through the GitPOAP platform for specified meaningful contribution to open source projects. Repo owners automatically distribute GitPOAPs to their contributors as recognition of their work.
// ''',
// Strings.gitPOAPStart: 'Contribute to POAPin',

/// Watchlist(Initial state)
// Strings.watchlistHint:
// 'You can add some addresses you are interested in here.',
@@ -117,6 +123,7 @@ class RuTranslations {
// Strings.done: 'Done',
// Strings.alert: 'Alert',
// Strings.error: 'Error',
// Strings.learnMore: 'learn more',
// --- Months
// Strings.january: 'January',
// Strings.february: 'February',
7 changes: 7 additions & 0 deletions lib/common/translations/languages/th.dart
Original file line number Diff line number Diff line change
@@ -67,6 +67,12 @@ class ThTranslations {
// ''',
//Strings.uploadMoments: 'Upload moments on welook.io',

/// GitPOAP
// Strings.gitPOAPDesc:
// '''A GitPOAP is a regular POAP (with an extra spin) that is minted through the GitPOAP platform for specified meaningful contribution to open source projects. Repo owners automatically distribute GitPOAPs to their contributors as recognition of their work.
// ''',
// Strings.gitPOAPStart: 'Contribute to POAPin',

/// Watchlist(Initial state)
// Strings.watchlistHint:
// 'You can add some addresses you are interested in here.',
@@ -117,6 +123,7 @@ class ThTranslations {
// Strings.done: 'Done',
// Strings.alert: 'Alert',
// Strings.error: 'Error',
// Strings.learnMore: 'learn more',
// --- Months
// Strings.january: 'January',
// Strings.february: 'February',
7 changes: 7 additions & 0 deletions lib/common/translations/languages/tr.dart
Original file line number Diff line number Diff line change
@@ -67,6 +67,12 @@ class TrTranslations {
// ''',
//Strings.uploadMoments: 'Upload moments on welook.io',

/// GitPOAP
// Strings.gitPOAPDesc:
// '''A GitPOAP is a regular POAP (with an extra spin) that is minted through the GitPOAP platform for specified meaningful contribution to open source projects. Repo owners automatically distribute GitPOAPs to their contributors as recognition of their work.
// ''',
// Strings.gitPOAPStart: 'Contribute to POAPin',

/// Watchlist(Initial state)
// Strings.watchlistHint:
// 'You can add some addresses you are interested in here.',
@@ -117,6 +123,7 @@ class TrTranslations {
// Strings.done: 'Done',
// Strings.alert: 'Alert',
// Strings.error: 'Error',
// Strings.learnMore: 'learn more',
// --- Months
// Strings.january: 'January',
// Strings.february: 'February',
7 changes: 7 additions & 0 deletions lib/common/translations/languages/uk.dart
Original file line number Diff line number Diff line change
@@ -67,6 +67,12 @@ class UkTranslations {
// ''',
//Strings.uploadMoments: 'Upload moments on welook.io',

/// GitPOAP
// Strings.gitPOAPDesc:
// '''A GitPOAP is a regular POAP (with an extra spin) that is minted through the GitPOAP platform for specified meaningful contribution to open source projects. Repo owners automatically distribute GitPOAPs to their contributors as recognition of their work.
// ''',
// Strings.gitPOAPStart: 'Contribute to POAPin',

/// Watchlist(Initial state)
// Strings.watchlistHint:
// 'You can add some addresses you are interested in here.',
@@ -117,6 +123,7 @@ class UkTranslations {
// Strings.done: 'Done',
// Strings.alert: 'Alert',
// Strings.error: 'Error',
// Strings.learnMore: 'learn more',
// --- Months
// Strings.january: 'January',
// Strings.february: 'February',
7 changes: 7 additions & 0 deletions lib/common/translations/languages/vi.dart
Original file line number Diff line number Diff line change
@@ -67,6 +67,12 @@ class ViTranslations {
// ''',
//Strings.uploadMoments: 'Upload moments on welook.io',

/// GitPOAP
// Strings.gitPOAPDesc:
// '''A GitPOAP is a regular POAP (with an extra spin) that is minted through the GitPOAP platform for specified meaningful contribution to open source projects. Repo owners automatically distribute GitPOAPs to their contributors as recognition of their work.
// ''',
// Strings.gitPOAPStart: 'Contribute to POAPin',

/// Watchlist(Initial state)
// Strings.watchlistHint:
// 'You can add some addresses you are interested in here.',
@@ -117,6 +123,7 @@ class ViTranslations {
// Strings.done: 'Done',
// Strings.alert: 'Alert',
// Strings.error: 'Error',
// Strings.learnMore: 'learn more',
// --- Months
// Strings.january: 'January',
// Strings.february: 'February',
7 changes: 7 additions & 0 deletions lib/common/translations/languages/zh_cn.dart
Original file line number Diff line number Diff line change
@@ -67,6 +67,12 @@ class ZhCNTranslations {
// ''',
//Strings.uploadMoments: 'Upload moments on welook.io',

/// GitPOAP
// Strings.gitPOAPDesc:
// '''A GitPOAP is a regular POAP (with an extra spin) that is minted through the GitPOAP platform for specified meaningful contribution to open source projects. Repo owners automatically distribute GitPOAPs to their contributors as recognition of their work.
// ''',
// Strings.gitPOAPStart: 'Contribute to POAPin',

/// Watchlist(Initial state)
// Strings.watchlistHint:
// 'You can add some addresses you are interested in here.',
@@ -117,6 +123,7 @@ class ZhCNTranslations {
// Strings.done: 'Done',
// Strings.alert: 'Alert',
// Strings.error: 'Error',
// Strings.learnMore: 'learn more',
// --- Months
// Strings.january: 'January',
// Strings.february: 'February',
7 changes: 7 additions & 0 deletions lib/common/translations/languages/zh_hk.dart
Original file line number Diff line number Diff line change
@@ -67,6 +67,12 @@ class ZhHKTranslations {
// ''',
//Strings.uploadMoments: 'Upload moments on welook.io',

/// GitPOAP
// Strings.gitPOAPDesc:
// '''A GitPOAP is a regular POAP (with an extra spin) that is minted through the GitPOAP platform for specified meaningful contribution to open source projects. Repo owners automatically distribute GitPOAPs to their contributors as recognition of their work.
// ''',
// Strings.gitPOAPStart: 'Contribute to POAPin',

/// Watchlist(Initial state)
// Strings.watchlistHint:
// 'You can add some addresses you are interested in here.',
@@ -117,6 +123,7 @@ class ZhHKTranslations {
// Strings.done: 'Done',
// Strings.alert: 'Alert',
// Strings.error: 'Error',
// Strings.learnMore: 'learn more',
// --- Months
// Strings.january: 'January',
// Strings.february: 'February',
7 changes: 7 additions & 0 deletions lib/common/translations/languages/zh_tw.dart
Original file line number Diff line number Diff line change
@@ -67,6 +67,12 @@ class ZhTWTranslations {
// ''',
//Strings.uploadMoments: 'Upload moments on welook.io',

/// GitPOAP
// Strings.gitPOAPDesc:
// '''A GitPOAP is a regular POAP (with an extra spin) that is minted through the GitPOAP platform for specified meaningful contribution to open source projects. Repo owners automatically distribute GitPOAPs to their contributors as recognition of their work.
// ''',
// Strings.gitPOAPStart: 'Contribute to POAPin',

/// Watchlist(Initial state)
// Strings.watchlistHint:
// 'You can add some addresses you are interested in here.',
@@ -117,6 +123,7 @@ class ZhTWTranslations {
// Strings.done: 'Done',
// Strings.alert: 'Alert',
// Strings.error: 'Error',
// Strings.learnMore: 'learn more',
// --- Months
// Strings.january: 'January',
// Strings.february: 'February',
Loading