diff --git a/.github/ISSUE_TEMPLATE/new_experience.yml b/.github/ISSUE_TEMPLATE/new_experience.yml index f44ea17..3fa82f3 100644 --- a/.github/ISSUE_TEMPLATE/new_experience.yml +++ b/.github/ISSUE_TEMPLATE/new_experience.yml @@ -25,6 +25,7 @@ body: attributes: label: Title description: The Experience title will be displayed in the Gallery. + placeholder: "Maximum length of 40 characters." validations: required: true - type: textarea @@ -39,6 +40,7 @@ body: attributes: label: Description description: It helps people understand what the Experience provides. It will be displayed in the Gallery. + placeholder: "Maximum length of 260 characters." validations: required: true - type: dropdown @@ -391,7 +393,7 @@ body: options: - label: I agree that this Experience is licensed under the MIT License. required: true - - label: I have intellectual property rights and/or permission to contribute the Experience and its content. + - label: I have intellectual property rights and/or permission to contribute the Experience and its content. required: true - label: I confirm that the Experience does not contain any harmful or malicious content. required: true diff --git a/.github/workflows/manage-experience.yml b/.github/workflows/manage-experience.yml index 5849439..fa85bf8 100644 --- a/.github/workflows/manage-experience.yml +++ b/.github/workflows/manage-experience.yml @@ -21,9 +21,9 @@ jobs: with: template-path: .github/ISSUE_TEMPLATE/new_experience.yml - run: | - echo "experience_name=$(echo ${{ steps.issue-parser.outputs.issueparser_title }} | sed -e 's/[^[:alnum:]]/_/g' | tr -s '_' | tr A-Z a-z)" >> "$GITHUB_ENV" - echo "command=$(echo ${{ github.event.comment.body }} | cut -d' ' -f2)" >> "$GITHUB_ENV" - - run: echo "pr=$(gh pr view ${{ env.experience_name }} --json=number -q='.number')" >> "$GITHUB_ENV" + echo "experience_name=$(echo '${{ steps.issue-parser.outputs.issueparser_title }}' | sed -e 's/[^[:alnum:]]/_/g' | tr -s '_' | tr A-Z a-z)" >> "$GITHUB_ENV" + echo "command=$(echo '${{ github.event.comment.body }}' | cut -d' ' -f2)" >> "$GITHUB_ENV" + - run: echo "pr=$(gh pr view '${{ env.experience_name }}' --json=number -q='.number')" >> "$GITHUB_ENV" env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - id: reject diff --git a/.github/workflows/parse-new-experience.yml b/.github/workflows/parse-new-experience.yml index bfe2998..c94464d 100644 --- a/.github/workflows/parse-new-experience.yml +++ b/.github/workflows/parse-new-experience.yml @@ -1,11 +1,11 @@ on: issues: - types: [labeled] + types: [labeled, edited] name: Parse New Experience jobs: new_experience: - if: github.event.label.name == 'experience' + if: github.event.label.name == 'experience' || github.event.action == 'edited' runs-on: ubuntu-latest permissions: issues: write @@ -17,12 +17,24 @@ jobs: id: issue-parser with: template-path: .github/ISSUE_TEMPLATE/new_experience.yml - - run: echo '${{ steps.issue-parser.outputs.jsonString }}' > issue.json - - run: | - echo "experience_name=$(echo '${{ steps.issue-parser.outputs.issueparser_title }}' | sed -e 's/[^[:alnum:]]/_/g' | tr -s '_' | tr A-Z a-z)" >> "$GITHUB_ENV" - echo "id=$(uuidgen)" >> "$GITHUB_ENV" - - run: | - jq '. + {"author": "${{ github.event.issue.user.login }}", "name": "${{ env.experience_name }}", "id": "${{ env.id }}"}' issue.json > tmp && mv tmp issue.json + - name: Create issue.json + run: echo '${{ steps.issue-parser.outputs.jsonString }}' > issue.json + - name: Check length restriction for title and description + id: check-restrictions + run: | + title_length=$(jq '.title | length' issue.json) + description_length=$(jq '.description | length' issue.json) + if [ $title_length -gt 40 ]; then + echo "title_length_comment=Title is too long: $title_length characters, but only 40 are allowed." >> $GITHUB_OUTPUT + echo "restrictions_exceeded=true" >> $GITHUB_ENV + fi + if [ $description_length -gt 260 ]; then + echo "description_length_comment=Description is too long: $description_length characters, but only 260 are allowed." >> $GITHUB_OUTPUT + echo "restrictions_exceeded=true" >> $GITHUB_ENV + fi + if [ $title_length -le 40 ] && [ $description_length -le 260 ]; then + echo "restrictions_exceeded=false" >> $GITHUB_ENV + fi - name: Check screenshot format id: check-screenshot-format run: | @@ -42,7 +54,7 @@ jobs: echo EOF } >> "$GITHUB_OUTPUT" - name: Comment and add label to issue - if: ${{ env.incorrect_screen_format == 'true' }} + if: ${{ env.restrictions_exceeded == 'true' || env.incorrect_screen_format == 'true' }} run: gh issue comment "$NUMBER" --body "$BODY" && gh issue edit "$NUMBER" --add-label "$LABELS" env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -50,9 +62,29 @@ jobs: NUMBER: ${{ github.event.issue.number }} LABELS: changes_requested BODY: "I've noticed a problem with your submission. Please fix it by editing your issue:\n\n + ${{ steps.check-restrictions.outputs.title_length_comment }}\n + ${{ steps.check-restrictions.outputs.description_length_comment }}\n ${{ steps.check-screenshot-format.outputs.screenshot_format_comment }}" - - id: manifest-builder - if: ${{ env.incorrect_screen_format == 'false' }} + - name: Remove label from issue if restrictions are not exceeded + if: ${{ env.restrictions_exceeded == 'false' && env.incorrect_screen_format == 'false' }} + run: gh issue edit "$NUMBER" --remove-label "$LABELS" + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GH_REPO: ${{ github.repository }} + NUMBER: ${{ github.event.issue.number }} + LABELS: changes_requested + - name: Create experience name and id + if: ${{ env.restrictions_exceeded == 'false' && env.incorrect_screen_format == 'false' }} + run: | + echo "experience_name=$(echo '${{ steps.issue-parser.outputs.issueparser_title }}' | sed -e 's/[^[:alnum:]]/_/g' | tr -s '_' | tr A-Z a-z)" >> "$GITHUB_ENV" + echo "id=$(uuidgen)" >> "$GITHUB_ENV" + - name: Add author, name and id to issue.json + if: ${{ env.restrictions_exceeded == 'false' && env.incorrect_screen_format == 'false' }} + run: | + jq '. + {"author": "${{ github.event.issue.user.login }}", "name": "${{ env.experience_name }}", "id": "${{ env.id }}"}' issue.json > tmp && mv tmp issue.json + - name: Build manifest + id: manifest-builder + if: ${{ env.restrictions_exceeded == 'false' && env.incorrect_screen_format == 'false' }} run: | node tools/prepare-experience.js rm issue.json @@ -68,7 +100,7 @@ jobs: echo "test-manifest=anytype://main/import/?type=experience&source=https%3A%2F%2Fgithub.com%2Fanyproto%2Fgallery%2Fraw%2F${{ env.experience_name }}%2Fexperiences%2F${{ env.experience_name }}%2Ftest-manifest.json" >> "$GITHUB_ENV" - name: Create Pull Request id: cpr - if: ${{ env.incorrect_screen_format == 'false' }} + if: ${{ env.restrictions_exceeded == 'false' && env.incorrect_screen_format == 'false' }} uses: peter-evans/create-pull-request@v5 with: commit-message: "Add preview for ${{ steps.issue-parser.outputs.issueparser_title }}" @@ -78,7 +110,7 @@ jobs: title: "Add experience ${{ steps.issue-parser.outputs.issueparser_title }}" body: "Based on issue #${{ github.event.issue.number }}" - name: Comment on Issue - if: ${{ env.incorrect_screen_format == 'false' }} + if: ${{ env.restrictions_exceeded == 'false' && env.incorrect_screen_format == 'false' }} run: gh issue comment "$NUMBER" --body "$BODY" env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/experiences/daily_journal/daily_journal.zip b/experiences/daily_journal/daily_journal.zip index 09441a4..c28db26 100644 Binary files a/experiences/daily_journal/daily_journal.zip and b/experiences/daily_journal/daily_journal.zip differ diff --git a/experiences/daily_journal/manifest.json b/experiences/daily_journal/manifest.json index a4b83a2..2237e00 100644 --- a/experiences/daily_journal/manifest.json +++ b/experiences/daily_journal/manifest.json @@ -15,5 +15,5 @@ "https://storage.gallery.any.coop/daily_journal/screenshots/screenshot-2.png" ], "downloadLink": "https://storage.gallery.any.coop/daily_journal/daily_journal.zip", - "fileSize": 796321 + "fileSize": 770258 } diff --git a/experiences/daily_journal/screenshots/screenshot-1.png b/experiences/daily_journal/screenshots/screenshot-1.png index ce16709..0418254 100644 Binary files a/experiences/daily_journal/screenshots/screenshot-1.png and b/experiences/daily_journal/screenshots/screenshot-1.png differ diff --git a/experiences/daily_journal/screenshots/screenshot-2.png b/experiences/daily_journal/screenshots/screenshot-2.png index 86033d4..abcbdb6 100644 Binary files a/experiences/daily_journal/screenshots/screenshot-2.png and b/experiences/daily_journal/screenshots/screenshot-2.png differ diff --git a/experiences/data_vault/data_vault.zip b/experiences/data_vault/data_vault.zip index bfa1a4a..bd35d3c 100644 Binary files a/experiences/data_vault/data_vault.zip and b/experiences/data_vault/data_vault.zip differ diff --git a/experiences/data_vault/manifest.json b/experiences/data_vault/manifest.json index 50719f5..046780e 100644 --- a/experiences/data_vault/manifest.json +++ b/experiences/data_vault/manifest.json @@ -16,5 +16,5 @@ "https://storage.gallery.any.coop/data_vault/screenshots/screenshot-2.png" ], "downloadLink": "https://storage.gallery.any.coop/data_vault/data_vault.zip", - "fileSize": 775933 + "fileSize": 746224 } diff --git a/experiences/data_vault/screenshots/screenshot-1.png b/experiences/data_vault/screenshots/screenshot-1.png index 410146c..b0755de 100644 Binary files a/experiences/data_vault/screenshots/screenshot-1.png and b/experiences/data_vault/screenshots/screenshot-1.png differ diff --git a/experiences/data_vault/screenshots/screenshot-2.png b/experiences/data_vault/screenshots/screenshot-2.png index bf84bae..ff8a1d5 100644 Binary files a/experiences/data_vault/screenshots/screenshot-2.png and b/experiences/data_vault/screenshots/screenshot-2.png differ diff --git a/experiences/habit_tracker/habit_tracker.zip b/experiences/habit_tracker/habit_tracker.zip index dc97a18..b4f8180 100644 Binary files a/experiences/habit_tracker/habit_tracker.zip and b/experiences/habit_tracker/habit_tracker.zip differ diff --git a/experiences/habit_tracker/manifest.json b/experiences/habit_tracker/manifest.json index f06fedb..fb498a1 100644 --- a/experiences/habit_tracker/manifest.json +++ b/experiences/habit_tracker/manifest.json @@ -15,5 +15,5 @@ "https://storage.gallery.any.coop/habit_tracker/screenshots/screenshot-1.png" ], "downloadLink": "https://storage.gallery.any.coop/habit_tracker/habit_tracker.zip", - "fileSize": 650511 + "fileSize": 624759 } diff --git a/experiences/habit_tracker/screenshots/screenshot-1.png b/experiences/habit_tracker/screenshots/screenshot-1.png index ade9d01..e3d1350 100644 Binary files a/experiences/habit_tracker/screenshots/screenshot-1.png and b/experiences/habit_tracker/screenshots/screenshot-1.png differ diff --git a/experiences/integrated_library/integrated_library.zip b/experiences/integrated_library/integrated_library.zip index 551d975..31cd185 100644 Binary files a/experiences/integrated_library/integrated_library.zip and b/experiences/integrated_library/integrated_library.zip differ diff --git a/experiences/integrated_library/manifest.json b/experiences/integrated_library/manifest.json index 433d6e0..ec1a4af 100644 --- a/experiences/integrated_library/manifest.json +++ b/experiences/integrated_library/manifest.json @@ -13,9 +13,9 @@ ], "language": "en-US", "screenshots": [ - "https://storage.gallery.any.coop/integrated_library/screenshots/screenshot-2.png", - "https://storage.gallery.any.coop/integrated_library/screenshots/screenshot-1.png" + "https://storage.gallery.any.coop/integrated_library/screenshots/screenshot-1.png", + "https://storage.gallery.any.coop/integrated_library/screenshots/screenshot-2.png" ], "downloadLink": "https://storage.gallery.any.coop/integrated_library/integrated_library.zip", - "fileSize": 2439126 + "fileSize": 1357219 } diff --git a/experiences/integrated_library/screenshots/screenshot-1.png b/experiences/integrated_library/screenshots/screenshot-1.png index f7ae8e7..1e9c593 100644 Binary files a/experiences/integrated_library/screenshots/screenshot-1.png and b/experiences/integrated_library/screenshots/screenshot-1.png differ diff --git a/experiences/integrated_library/screenshots/screenshot-2.png b/experiences/integrated_library/screenshots/screenshot-2.png index 0e7c1aa..a7f3c6c 100644 Binary files a/experiences/integrated_library/screenshots/screenshot-2.png and b/experiences/integrated_library/screenshots/screenshot-2.png differ diff --git a/experiences/language_flashcards/language_flashcards.zip b/experiences/language_flashcards/language_flashcards.zip index d76fb8e..bbd149b 100644 Binary files a/experiences/language_flashcards/language_flashcards.zip and b/experiences/language_flashcards/language_flashcards.zip differ diff --git a/experiences/language_flashcards/manifest.json b/experiences/language_flashcards/manifest.json index 4a76d0c..2bacf08 100644 --- a/experiences/language_flashcards/manifest.json +++ b/experiences/language_flashcards/manifest.json @@ -17,5 +17,5 @@ "https://storage.gallery.any.coop/language_flashcards/screenshots/screenshot-3.png" ], "downloadLink": "https://storage.gallery.any.coop/language_flashcards/language_flashcards.zip", - "fileSize": 11096897 + "fileSize": 10064538 } diff --git a/experiences/language_flashcards/screenshots/screenshot-1.png b/experiences/language_flashcards/screenshots/screenshot-1.png index 716f139..ab70349 100644 Binary files a/experiences/language_flashcards/screenshots/screenshot-1.png and b/experiences/language_flashcards/screenshots/screenshot-1.png differ diff --git a/experiences/language_flashcards/screenshots/screenshot-2.png b/experiences/language_flashcards/screenshots/screenshot-2.png index e5f379d..9b6138f 100644 Binary files a/experiences/language_flashcards/screenshots/screenshot-2.png and b/experiences/language_flashcards/screenshots/screenshot-2.png differ diff --git a/experiences/language_flashcards/screenshots/screenshot-3.png b/experiences/language_flashcards/screenshots/screenshot-3.png index e25104d..61dd3c4 100644 Binary files a/experiences/language_flashcards/screenshots/screenshot-3.png and b/experiences/language_flashcards/screenshots/screenshot-3.png differ diff --git a/experiences/meeting_notes_management/manifest.json b/experiences/meeting_notes_management/manifest.json index 5fc5437..4acb831 100644 --- a/experiences/meeting_notes_management/manifest.json +++ b/experiences/meeting_notes_management/manifest.json @@ -11,9 +11,9 @@ ], "language": "en-US", "screenshots": [ - "https://storage.gallery.any.coop/meeting_notes_management/screenshots/screenshot-2.png", - "https://storage.gallery.any.coop/meeting_notes_management/screenshots/screenshot-1.png" + "https://storage.gallery.any.coop/meeting_notes_management/screenshots/screenshot-1.png", + "https://storage.gallery.any.coop/meeting_notes_management/screenshots/screenshot-2.png" ], "downloadLink": "https://storage.gallery.any.coop/meeting_notes_management/meeting_notes_management.zip", - "fileSize": 2517206 + "fileSize": 1442525 } diff --git a/experiences/meeting_notes_management/meeting_notes_management.zip b/experiences/meeting_notes_management/meeting_notes_management.zip index f43c6c5..368146e 100644 Binary files a/experiences/meeting_notes_management/meeting_notes_management.zip and b/experiences/meeting_notes_management/meeting_notes_management.zip differ diff --git a/experiences/meeting_notes_management/screenshots/screenshot-2.png b/experiences/meeting_notes_management/screenshots/screenshot-2.png index 0eb1f7f..bb67369 100644 Binary files a/experiences/meeting_notes_management/screenshots/screenshot-2.png and b/experiences/meeting_notes_management/screenshots/screenshot-2.png differ diff --git a/experiences/movie_database/manifest.json b/experiences/movie_database/manifest.json index 37d06d2..9e2f6a6 100644 --- a/experiences/movie_database/manifest.json +++ b/experiences/movie_database/manifest.json @@ -16,5 +16,5 @@ "https://storage.gallery.any.coop/movie_database/screenshots/screenshot-2.png" ], "downloadLink": "https://storage.gallery.any.coop/movie_database/movie_database.zip", - "fileSize": 2911623 + "fileSize": 2888205 } diff --git a/experiences/movie_database/movie_database.zip b/experiences/movie_database/movie_database.zip index e56656b..79402cc 100644 Binary files a/experiences/movie_database/movie_database.zip and b/experiences/movie_database/movie_database.zip differ diff --git a/experiences/movie_database/screenshots/screenshot-1.png b/experiences/movie_database/screenshots/screenshot-1.png index dcfdfd7..775839a 100644 Binary files a/experiences/movie_database/screenshots/screenshot-1.png and b/experiences/movie_database/screenshots/screenshot-1.png differ diff --git a/experiences/movie_database/screenshots/screenshot-2.png b/experiences/movie_database/screenshots/screenshot-2.png index 4c117d5..995639e 100644 Binary files a/experiences/movie_database/screenshots/screenshot-2.png and b/experiences/movie_database/screenshots/screenshot-2.png differ diff --git a/experiences/para_and_coder_setup/manifest.json b/experiences/para_and_coder_setup/manifest.json index d76b586..98c97f1 100644 --- a/experiences/para_and_coder_setup/manifest.json +++ b/experiences/para_and_coder_setup/manifest.json @@ -20,5 +20,5 @@ "https://storage.gallery.any.coop/para_and_coder_setup/screenshots/screenshot-6.png" ], "downloadLink": "https://storage.gallery.any.coop/para_and_coder_setup/para_and_coder_setup.zip", - "fileSize": 3254776 + "fileSize": 2182654 } diff --git a/experiences/para_and_coder_setup/para_and_coder_setup.zip b/experiences/para_and_coder_setup/para_and_coder_setup.zip index 76c91b1..a6e2466 100644 Binary files a/experiences/para_and_coder_setup/para_and_coder_setup.zip and b/experiences/para_and_coder_setup/para_and_coder_setup.zip differ diff --git a/experiences/para_and_coder_setup/screenshots/screenshot-1.png b/experiences/para_and_coder_setup/screenshots/screenshot-1.png index c5efacc..b8df66f 100644 Binary files a/experiences/para_and_coder_setup/screenshots/screenshot-1.png and b/experiences/para_and_coder_setup/screenshots/screenshot-1.png differ diff --git a/experiences/para_and_coder_setup/screenshots/screenshot-2.png b/experiences/para_and_coder_setup/screenshots/screenshot-2.png index 2e6d30c..0b97689 100644 Binary files a/experiences/para_and_coder_setup/screenshots/screenshot-2.png and b/experiences/para_and_coder_setup/screenshots/screenshot-2.png differ diff --git a/experiences/para_and_coder_setup/screenshots/screenshot-4.png b/experiences/para_and_coder_setup/screenshots/screenshot-4.png index fb3d279..56b9d15 100644 Binary files a/experiences/para_and_coder_setup/screenshots/screenshot-4.png and b/experiences/para_and_coder_setup/screenshots/screenshot-4.png differ diff --git a/experiences/para_and_coder_setup/screenshots/screenshot-5.png b/experiences/para_and_coder_setup/screenshots/screenshot-5.png index 5e2312e..bb26a18 100644 Binary files a/experiences/para_and_coder_setup/screenshots/screenshot-5.png and b/experiences/para_and_coder_setup/screenshots/screenshot-5.png differ diff --git a/experiences/para_and_coder_setup/screenshots/screenshot-6.png b/experiences/para_and_coder_setup/screenshots/screenshot-6.png index ea17ba3..31d3f0b 100644 Binary files a/experiences/para_and_coder_setup/screenshots/screenshot-6.png and b/experiences/para_and_coder_setup/screenshots/screenshot-6.png differ diff --git a/experiences/para_tasks_resources_meeting_notes_crm/manifest.json b/experiences/para_tasks_resources_meeting_notes_crm/manifest.json index 533fe2c..5a4fa3f 100644 --- a/experiences/para_tasks_resources_meeting_notes_crm/manifest.json +++ b/experiences/para_tasks_resources_meeting_notes_crm/manifest.json @@ -22,5 +22,5 @@ "https://storage.gallery.any.coop/para_tasks_resources_meeting_notes_crm/screenshots/screenshot-5.png" ], "downloadLink": "https://storage.gallery.any.coop/para_tasks_resources_meeting_notes_crm/para_tasks_resources_meeting_notes_crm.zip", - "fileSize": 8068542 + "fileSize": 7153055 } diff --git a/experiences/para_tasks_resources_meeting_notes_crm/para_tasks_resources_meeting_notes_crm.zip b/experiences/para_tasks_resources_meeting_notes_crm/para_tasks_resources_meeting_notes_crm.zip index 6162650..22cca13 100644 Binary files a/experiences/para_tasks_resources_meeting_notes_crm/para_tasks_resources_meeting_notes_crm.zip and b/experiences/para_tasks_resources_meeting_notes_crm/para_tasks_resources_meeting_notes_crm.zip differ diff --git a/experiences/para_tasks_resources_meeting_notes_crm/screenshots/screenshot-2.png b/experiences/para_tasks_resources_meeting_notes_crm/screenshots/screenshot-2.png index 0eb1f7f..bb67369 100644 Binary files a/experiences/para_tasks_resources_meeting_notes_crm/screenshots/screenshot-2.png and b/experiences/para_tasks_resources_meeting_notes_crm/screenshots/screenshot-2.png differ diff --git a/experiences/para_tasks_resources_meeting_notes_crm/screenshots/screenshot-3.png b/experiences/para_tasks_resources_meeting_notes_crm/screenshots/screenshot-3.png index 2e6d30c..0b97689 100644 Binary files a/experiences/para_tasks_resources_meeting_notes_crm/screenshots/screenshot-3.png and b/experiences/para_tasks_resources_meeting_notes_crm/screenshots/screenshot-3.png differ diff --git a/experiences/para_tasks_resources_meeting_notes_crm/screenshots/screenshot-4.png b/experiences/para_tasks_resources_meeting_notes_crm/screenshots/screenshot-4.png index ea17ba3..31d3f0b 100644 Binary files a/experiences/para_tasks_resources_meeting_notes_crm/screenshots/screenshot-4.png and b/experiences/para_tasks_resources_meeting_notes_crm/screenshots/screenshot-4.png differ diff --git a/experiences/para_tasks_resources_meeting_notes_crm/screenshots/screenshot-5.png b/experiences/para_tasks_resources_meeting_notes_crm/screenshots/screenshot-5.png index 1543efa..05ae34b 100644 Binary files a/experiences/para_tasks_resources_meeting_notes_crm/screenshots/screenshot-5.png and b/experiences/para_tasks_resources_meeting_notes_crm/screenshots/screenshot-5.png differ diff --git a/experiences/recipe_book_and_meal_planner/manifest.json b/experiences/recipe_book_and_meal_planner/manifest.json index 18d8e74..d1ebfc3 100644 --- a/experiences/recipe_book_and_meal_planner/manifest.json +++ b/experiences/recipe_book_and_meal_planner/manifest.json @@ -15,5 +15,5 @@ "https://storage.gallery.any.coop/recipe_book_and_meal_planner/screenshots/screenshot-2.png" ], "downloadLink": "https://storage.gallery.any.coop/recipe_book_and_meal_planner/recipe_book_and_meal_planner.zip", - "fileSize": 2340258 + "fileSize": 2312564 } diff --git a/experiences/recipe_book_and_meal_planner/recipe_book_and_meal_planner.zip b/experiences/recipe_book_and_meal_planner/recipe_book_and_meal_planner.zip index 241cfef..412e49f 100644 Binary files a/experiences/recipe_book_and_meal_planner/recipe_book_and_meal_planner.zip and b/experiences/recipe_book_and_meal_planner/recipe_book_and_meal_planner.zip differ diff --git a/experiences/recipe_book_and_meal_planner/screenshots/screenshot-1.png b/experiences/recipe_book_and_meal_planner/screenshots/screenshot-1.png index 4cbdd33..864ddb2 100644 Binary files a/experiences/recipe_book_and_meal_planner/screenshots/screenshot-1.png and b/experiences/recipe_book_and_meal_planner/screenshots/screenshot-1.png differ diff --git a/experiences/recipe_book_and_meal_planner/screenshots/screenshot-2.png b/experiences/recipe_book_and_meal_planner/screenshots/screenshot-2.png index 74a5a38..e7dd9d7 100644 Binary files a/experiences/recipe_book_and_meal_planner/screenshots/screenshot-2.png and b/experiences/recipe_book_and_meal_planner/screenshots/screenshot-2.png differ diff --git a/experiences/study_hub/manifest.json b/experiences/study_hub/manifest.json index 9230249..3c1923b 100644 --- a/experiences/study_hub/manifest.json +++ b/experiences/study_hub/manifest.json @@ -15,5 +15,5 @@ "https://storage.gallery.any.coop/study_hub/screenshots/screenshot-2.png" ], "downloadLink": "https://storage.gallery.any.coop/study_hub/study_hub.zip", - "fileSize": 219777 + "fileSize": 124637 } diff --git a/experiences/study_hub/screenshots/screenshot-1.png b/experiences/study_hub/screenshots/screenshot-1.png index f8e0306..2b078b5 100644 Binary files a/experiences/study_hub/screenshots/screenshot-1.png and b/experiences/study_hub/screenshots/screenshot-1.png differ diff --git a/experiences/study_hub/screenshots/screenshot-2.png b/experiences/study_hub/screenshots/screenshot-2.png index bf9cd85..b1dcd89 100644 Binary files a/experiences/study_hub/screenshots/screenshot-2.png and b/experiences/study_hub/screenshots/screenshot-2.png differ diff --git a/experiences/study_hub/study_hub.zip b/experiences/study_hub/study_hub.zip index ff24cd6..abebb0d 100644 Binary files a/experiences/study_hub/study_hub.zip and b/experiences/study_hub/study_hub.zip differ diff --git a/experiences/trip_planner/manifest.json b/experiences/trip_planner/manifest.json index c3c13f0..5c8af8c 100644 --- a/experiences/trip_planner/manifest.json +++ b/experiences/trip_planner/manifest.json @@ -15,5 +15,5 @@ "https://storage.gallery.any.coop/trip_planner/screenshots/screenshot-2.png" ], "downloadLink": "https://storage.gallery.any.coop/trip_planner/trip_planner.zip", - "fileSize": 4316382 + "fileSize": 3449483 } diff --git a/experiences/trip_planner/screenshots/screenshot-1.png b/experiences/trip_planner/screenshots/screenshot-1.png index e1f1f37..0b6901c 100644 Binary files a/experiences/trip_planner/screenshots/screenshot-1.png and b/experiences/trip_planner/screenshots/screenshot-1.png differ diff --git a/experiences/trip_planner/screenshots/screenshot-2.png b/experiences/trip_planner/screenshots/screenshot-2.png index 1b6c349..59e87b4 100644 Binary files a/experiences/trip_planner/screenshots/screenshot-2.png and b/experiences/trip_planner/screenshots/screenshot-2.png differ diff --git a/experiences/trip_planner/trip_planner.zip b/experiences/trip_planner/trip_planner.zip index df70a76..b411853 100644 Binary files a/experiences/trip_planner/trip_planner.zip and b/experiences/trip_planner/trip_planner.zip differ diff --git a/experiences/zen_system/screenshots/screenshot-1.png b/experiences/zen_system/screenshots/screenshot-1.png index 3fee5de..afd570d 100644 Binary files a/experiences/zen_system/screenshots/screenshot-1.png and b/experiences/zen_system/screenshots/screenshot-1.png differ diff --git a/experiences/zen_system/screenshots/screenshot-2.png b/experiences/zen_system/screenshots/screenshot-2.png index 65536fb..b028186 100644 Binary files a/experiences/zen_system/screenshots/screenshot-2.png and b/experiences/zen_system/screenshots/screenshot-2.png differ diff --git a/experiences/zen_system/screenshots/screenshot-3.png b/experiences/zen_system/screenshots/screenshot-3.png index 6bc48d4..409d523 100644 Binary files a/experiences/zen_system/screenshots/screenshot-3.png and b/experiences/zen_system/screenshots/screenshot-3.png differ diff --git a/experiences/zen_system/screenshots/screenshot-4.png b/experiences/zen_system/screenshots/screenshot-4.png index c7f04b1..904f20b 100644 Binary files a/experiences/zen_system/screenshots/screenshot-4.png and b/experiences/zen_system/screenshots/screenshot-4.png differ diff --git a/experiences/zen_system/screenshots/screenshot-5.png b/experiences/zen_system/screenshots/screenshot-5.png index ec75b54..95649d1 100644 Binary files a/experiences/zen_system/screenshots/screenshot-5.png and b/experiences/zen_system/screenshots/screenshot-5.png differ