From 1021c2ea6621bc0144048f39546154baf74ebded Mon Sep 17 00:00:00 2001 From: Nitwel Date: Tue, 21 Nov 2023 00:42:07 +0100 Subject: [PATCH 1/7] update release workflow --- .github/workflows/build-prod.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/build-prod.yml b/.github/workflows/build-prod.yml index d1affc8..e054bc8 100644 --- a/.github/workflows/build-prod.yml +++ b/.github/workflows/build-prod.yml @@ -59,6 +59,12 @@ jobs: unzip -q ./templates/android_source.zip -d ./android/build/ rm ./templates/android_source.zip + - name: create test artifact + uses: actions/upload-artifact@v2 + with: + name: test + path: . + - name: export game id: export # Use latest version (see releases for all versions) From f923b102b41f81b201f8b02ecb126eb738faaa68 Mon Sep 17 00:00:00 2001 From: Nitwel Date: Tue, 21 Nov 2023 00:50:36 +0100 Subject: [PATCH 2/7] add new lines to export presets --- export_presets.cfg | 2 +- export_presets_prod.cfg | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/export_presets.cfg b/export_presets.cfg index b570ac9..db9013a 100644 --- a/export_presets.cfg +++ b/export_presets.cfg @@ -205,4 +205,4 @@ permissions/write_sync_settings=false permissions/write_user_dictionary=false package/show_in_android_tv=false package/show_in_app_library=true -package/show_as_launcher_app=false \ No newline at end of file +package/show_as_launcher_app=false diff --git a/export_presets_prod.cfg b/export_presets_prod.cfg index 85e45b0..c969823 100644 --- a/export_presets_prod.cfg +++ b/export_presets_prod.cfg @@ -205,4 +205,4 @@ permissions/write_sync_settings=false permissions/write_user_dictionary=false package/show_in_android_tv=false package/show_in_app_library=true -package/show_as_launcher_app=false \ No newline at end of file +package/show_as_launcher_app=false From 4082c8f30106c7b0c4a8f406ed79d4f121c72459 Mon Sep 17 00:00:00 2001 From: Nitwel Date: Tue, 21 Nov 2023 01:07:20 +0100 Subject: [PATCH 3/7] update release workflow --- .github/workflows/build-prod.yml | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build-prod.yml b/.github/workflows/build-prod.yml index e054bc8..9daaf50 100644 --- a/.github/workflows/build-prod.yml +++ b/.github/workflows/build-prod.yml @@ -9,6 +9,9 @@ on: env: GODOT_VERSION: 4.1.3 EXPORT_NAME: immersive-home + GODOT_ANDROID_KEYSTORE_RELEASE_PATH: /home/runner/work/Immersive-Home/Immersive-Home/release.keystore + GODOT_ANDROID_KEYSTORE_RELEASE_USER: ${{ secrets.RELEASE_USER }} + GODOT_ANDROID_KEYSTORE_RELEASE_PASSWORD: ${{ secrets.RELEASE_PASSWORD }} jobs: # job id, can be anything @@ -43,10 +46,6 @@ jobs: rm export_presets.cfg mv export_presets_prod.cfg export_presets.cfg - echo keystore/release="/home/runner/work/Immersive-Home/Immersive-Home/release.keystore" >> ./export_presets.cfg - echo keystore/release_user="${{ secrets.RELEASE_USER }}" >> ./export_presets.cfg - echo keystore/release_password="${{ secrets.RELEASE_PASSWORD }}" >> ./export_presets.cfg - mkdir -p ~/.config/godot cp -v ./editor_settings-4.tres ~/.config/godot/ @@ -59,12 +58,6 @@ jobs: unzip -q ./templates/android_source.zip -d ./android/build/ rm ./templates/android_source.zip - - name: create test artifact - uses: actions/upload-artifact@v2 - with: - name: test - path: . - - name: export game id: export # Use latest version (see releases for all versions) From d63ce722f87ea396fe7fba71826b80c5746d5c56 Mon Sep 17 00:00:00 2001 From: Nitwel Date: Tue, 21 Nov 2023 01:40:42 +0100 Subject: [PATCH 4/7] update release workflow --- .github/workflows/build-prod.yml | 2 ++ export_presets_prod.cfg | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-prod.yml b/.github/workflows/build-prod.yml index 9daaf50..78e7673 100644 --- a/.github/workflows/build-prod.yml +++ b/.github/workflows/build-prod.yml @@ -41,6 +41,8 @@ jobs: - name: Setup Android Export run: | + sdkmanager "build-tools;32.0.0" + echo "${{ secrets.KEYSTORE_RELEASE }}" | base64 -di > release.keystore rm export_presets.cfg diff --git a/export_presets_prod.cfg b/export_presets_prod.cfg index c969823..2518add 100644 --- a/export_presets_prod.cfg +++ b/export_presets_prod.cfg @@ -21,7 +21,7 @@ custom_template/release="" gradle_build/use_gradle_build=true gradle_build/export_format=0 gradle_build/min_sdk="" -gradle_build/target_sdk="" +gradle_build/target_sdk="32" plugins/GodotOpenXRKHR=false plugins/GodotOpenXRLynx=false plugins/GodotOpenXRMeta=true From 03f3124a5d3f39bf33c51cf36c6ae9daa7e7ec53 Mon Sep 17 00:00:00 2001 From: Nitwel Date: Tue, 21 Nov 2023 01:52:49 +0100 Subject: [PATCH 5/7] update release workflow --- .github/workflows/build-prod.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build-prod.yml b/.github/workflows/build-prod.yml index 78e7673..1bc165d 100644 --- a/.github/workflows/build-prod.yml +++ b/.github/workflows/build-prod.yml @@ -60,6 +60,8 @@ jobs: unzip -q ./templates/android_source.zip -d ./android/build/ rm ./templates/android_source.zip + sed -i 's/singleInstancePerTask/singleTask/g' ./android/build/AndroidManifest.xml + - name: export game id: export # Use latest version (see releases for all versions) From d25cebd4664f0134b6594bf053e0a63f7a3cbe90 Mon Sep 17 00:00:00 2001 From: Nitwel Date: Tue, 21 Nov 2023 02:23:13 +0100 Subject: [PATCH 6/7] add privacy policy --- privacy_policy.html | 145 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 145 insertions(+) create mode 100644 privacy_policy.html diff --git a/privacy_policy.html b/privacy_policy.html new file mode 100644 index 0000000..630faef --- /dev/null +++ b/privacy_policy.html @@ -0,0 +1,145 @@ +

Privacy Policy

+

Last updated: November 21, 2023

+

+ This Privacy Policy describes Our policies and procedures on the collection, + use and disclosure of Your information when You use the Service and tells + You about Your privacy rights and how the law protects You. +

+

+ We use Your Personal data to provide and improve the Service. By using the + Service, You agree to the collection and use of information in accordance + with this Privacy Policy. This Privacy Policy has been created with the help + of the + Privacy Policy Generator. +

+

Interpretation and Definitions

+

Interpretation

+

+ The words of which the initial letter is capitalized have meanings defined + under the following conditions. The following definitions shall have the + same meaning regardless of whether they appear in singular or in plural. +

+

Definitions

+

For the purposes of this Privacy Policy:

+
    +
  • +

    + Account means a unique account created for You to + access our Service or parts of our Service. +

    +
  • +
  • +

    + Affiliate means an entity that controls, is + controlled by or is under common control with a party, where + "control" means ownership of 50% or more of the shares, + equity interest or other securities entitled to vote for election of + directors or other managing authority. +

    +
  • +
  • +

    + Application refers to Immersive Home, the software + program provided by the Company. +

    +
  • +
  • +

    + Company (referred to as either "the + Company", "We", "Us" or "Our" in + this Agreement) refers to Immersive Home. +

    +
  • +
  • +

    Country refers to: Sachsen, Germany

    +
  • +
  • +

    + Device means any device that can access the Service + such as a computer, a cellphone or a digital tablet. +

    +
  • +
  • +

    + Personal Data is any information that relates to an + identified or identifiable individual. +

    +
  • +
  • +

    Service refers to the Application.

    +
  • +
  • +

    + Service Provider means any natural or legal person + who processes the data on behalf of the Company. It refers to + third-party companies or individuals employed by the Company to + facilitate the Service, to provide the Service on behalf of the + Company, to perform services related to the Service or to assist the + Company in analyzing how the Service is used. +

    +
  • +
  • +

    + Usage Data refers to data collected automatically, + either generated by the use of the Service or from the Service + infrastructure itself (for example, the duration of a page visit). +

    +
  • +
  • +

    + You means the individual accessing or using the + Service, or the company, or other legal entity on behalf of which + such individual is accessing or using the Service, as applicable. +

    +
  • +
+

Collecting and Using Your Personal Data

+

Types of Data Collected

+

+ We do not collect any data about you under any circumstances. +

+

Links to Other Websites

+

+ Our Service may contain links to other websites that are not operated by Us. + If You click on a third party link, You will be directed to that third + party's site. We strongly advise You to review the Privacy Policy of every + site You visit. +

+

+ We have no control over and assume no responsibility for the content, + privacy policies or practices of any third party sites or services. +

+

Changes to this Privacy Policy

+

+ We may update Our Privacy Policy from time to time. We will notify You of + any changes by posting the new Privacy Policy on this page. +

+

+ We will let You know via email and/or a prominent notice on Our Service, + prior to the change becoming effective and update the "Last + updated" date at the top of this Privacy Policy. +

+

+ You are advised to review this Privacy Policy periodically for any changes. + Changes to this Privacy Policy are effective when they are posted on this + page. +

+

Contact Us

+

If you have any questions about this Privacy Policy, You can contact us:

+ From 6e1c72462690db655e5c4b6ceead9e13d1d4eebd Mon Sep 17 00:00:00 2001 From: Nitwel Date: Tue, 21 Nov 2023 02:45:48 +0100 Subject: [PATCH 7/7] add meta app lab assets --- assets/design.afdesign | 4 ++-- assets/meta/CoverArt-Landscape.png | 3 +++ assets/meta/CoverArt-Mini-Landscape.png | 3 +++ assets/meta/CoverArt-Portrait.png | 3 +++ assets/meta/CoverArt-Square.png | 3 +++ assets/meta/Hero-Cover.png | 3 +++ assets/meta/Screenshot 1.png | 3 +++ assets/meta/Screenshot 2.png | 3 +++ assets/meta/Screenshot 3.png | 3 +++ assets/meta/Screenshot 4.png | 3 +++ assets/meta/Screenshot 5.png | 3 +++ assets/meta/logo.png | 3 +++ 12 files changed, 35 insertions(+), 2 deletions(-) create mode 100644 assets/meta/CoverArt-Landscape.png create mode 100644 assets/meta/CoverArt-Mini-Landscape.png create mode 100644 assets/meta/CoverArt-Portrait.png create mode 100644 assets/meta/CoverArt-Square.png create mode 100644 assets/meta/Hero-Cover.png create mode 100644 assets/meta/Screenshot 1.png create mode 100644 assets/meta/Screenshot 2.png create mode 100644 assets/meta/Screenshot 3.png create mode 100644 assets/meta/Screenshot 4.png create mode 100644 assets/meta/Screenshot 5.png create mode 100644 assets/meta/logo.png diff --git a/assets/design.afdesign b/assets/design.afdesign index bdbd7e4..b194bf6 100644 --- a/assets/design.afdesign +++ b/assets/design.afdesign @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d7d0bc9d14c5e8b172f5e3d5671f93ee7b67f62d82ec231f9f91792f30fc3bd9 -size 4015387 +oid sha256:73572171e36cd0fe5a0b2cf38e42d871f16b086b0e5d9c9084db451d88496dd0 +size 3271063 diff --git a/assets/meta/CoverArt-Landscape.png b/assets/meta/CoverArt-Landscape.png new file mode 100644 index 0000000..65c5749 --- /dev/null +++ b/assets/meta/CoverArt-Landscape.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df6002228715d0be4c7356dbba8550f972c90e2d139b112a453a817f4872264b +size 2453368 diff --git a/assets/meta/CoverArt-Mini-Landscape.png b/assets/meta/CoverArt-Mini-Landscape.png new file mode 100644 index 0000000..0cdea05 --- /dev/null +++ b/assets/meta/CoverArt-Mini-Landscape.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c486809191eb179d9059c6c2786862fd75140f6a8788c13665644ab965104e2a +size 383011 diff --git a/assets/meta/CoverArt-Portrait.png b/assets/meta/CoverArt-Portrait.png new file mode 100644 index 0000000..6a08d7a --- /dev/null +++ b/assets/meta/CoverArt-Portrait.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e300ffa6acc495d5640b2efb55d0b0ac019fb3715749ee958d87a6d4ca06018 +size 1192244 diff --git a/assets/meta/CoverArt-Square.png b/assets/meta/CoverArt-Square.png new file mode 100644 index 0000000..1f519f1 --- /dev/null +++ b/assets/meta/CoverArt-Square.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b81deac575f0615c90cb063a66b23c80874276f0ec4c5d5b367c940ed3be18d +size 1712144 diff --git a/assets/meta/Hero-Cover.png b/assets/meta/Hero-Cover.png new file mode 100644 index 0000000..271c8a0 --- /dev/null +++ b/assets/meta/Hero-Cover.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:451fcd3ec43720477df80b56031118ea0b947cfa32198bf47ef095b53beadf95 +size 1656729 diff --git a/assets/meta/Screenshot 1.png b/assets/meta/Screenshot 1.png new file mode 100644 index 0000000..ec4517b --- /dev/null +++ b/assets/meta/Screenshot 1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:468f271b96c02baf73a222cf9413e11f374642fe381eb058d8c2580e8fba350b +size 1744928 diff --git a/assets/meta/Screenshot 2.png b/assets/meta/Screenshot 2.png new file mode 100644 index 0000000..1dc8190 --- /dev/null +++ b/assets/meta/Screenshot 2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4d405458cbc14252a81654044ba65a10cfa86e9595308415559c011a219a6e9 +size 1965617 diff --git a/assets/meta/Screenshot 3.png b/assets/meta/Screenshot 3.png new file mode 100644 index 0000000..06eae19 --- /dev/null +++ b/assets/meta/Screenshot 3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f866b366a422836e9a3e80e730d8dfd666d3aff81ada3d6d128a4e111588b211 +size 2006618 diff --git a/assets/meta/Screenshot 4.png b/assets/meta/Screenshot 4.png new file mode 100644 index 0000000..2421653 --- /dev/null +++ b/assets/meta/Screenshot 4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fe9931c438ec5e52d303079c171d56342a03283dfdb9500df8d8358bda0a50c +size 2000051 diff --git a/assets/meta/Screenshot 5.png b/assets/meta/Screenshot 5.png new file mode 100644 index 0000000..b36eadd --- /dev/null +++ b/assets/meta/Screenshot 5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d846286239fc5dda3b2296703768dbd5c6a20dc02172a5ee542247b7055192a +size 2364637 diff --git a/assets/meta/logo.png b/assets/meta/logo.png new file mode 100644 index 0000000..9d1c8f6 --- /dev/null +++ b/assets/meta/logo.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53022e7e9b6ac795536357448dbfbdecb37eaeec66605c719919a81c3ed09260 +size 296244