Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit de08fe94 authored by Mohammed Althaf T's avatar Mohammed Althaf T 😊
Browse files

Update About content

parent 3e91b482
Loading
Loading
Loading
Loading
+17 −0
Original line number Diff line number Diff line
@@ -1081,4 +1081,21 @@
            <li>Various other improvements and bug fixes.\n</li>
        </ul>
    </string>

    <!-- Build version of the application -->
    <string name="preferences_build_version">Build version</string>
    <string name="preferences_about_app">Camera is forked from OpenCamera</string>
    <string name="preferences_authors">Authors</string>
    <string name="preferences_source_code">Source code</string>
    <string name="preferences_licence">Licence</string>
    <string name="preferences_app_info_title">Camera information</string>
    <string name="preferences_app_info" translatable="false">
        - Option to auto-stabilise\n
        - Support for scene modes, color effects, white balance, ISO etc.\n
        - Timer (with optional voice countdown), auto-repeat mode\n
        - Configurable volume keys and user interface\n
        - Support for Camera2 API\n
        - Panorama, including for front camera.
    </string>
    <string name="preferences_service_terms">Terms of service</string>
</resources>
+72 −0
Original line number Diff line number Diff line
@@ -1323,6 +1323,78 @@
            android:icon="@drawable/ic_info_outline_white_48dp"
            />

        <PreferenceScreen
            android:icon="@drawable/ic_info_outline_white_48dp"
            android:key="preference_about"
            android:persistent="false"
            android:title="@string/preference_about">

            <PreferenceCategory android:title="@string/preference_about">


                <Preference
                    android:key="camera_info"
                    android:summary="@string/preferences_app_info"
                    android:title="@string/preferences_app_info_title" />

                <Preference
                    android:key="build_version"
                    android:title="@string/preferences_build_version">

                    <intent
                        android:action="android.intent.action.VIEW"
                        android:data="https://gitlab.e.foundation/e/apps/camera/-/releases" />


                </Preference>


                <Preference
                    android:key="about_app"
                    android:title="@string/preferences_about_app">

                    <intent
                        android:action="android.intent.action.VIEW"
                        android:data="https://sourceforge.net/projects/opencamera/" />

                </Preference>


                <Preference android:title="@string/preferences_licence">
                    <intent
                        android:action="android.intent.action.VIEW"
                        android:data="https://gitlab.e.foundation/e/apps/camera/-/blob/master/gpl-3.0.txt" />
                </Preference>

                <Preference android:title="@string/preferences_authors">
                    <intent
                        android:action="android.intent.action.VIEW"
                        android:data="https://gitlab.e.foundation/e/apps/camera/-/blob/master/AUTHORS" />
                </Preference>

                <Preference android:title="@string/preferences_source_code">
                    <intent
                        android:action="android.intent.action.VIEW"
                        android:data="https://gitlab.e.foundation/e/apps/camera" />
                </Preference>

                <Preference android:title="@string/preference_privacy_policy">
                    <intent
                        android:action="android.intent.action.VIEW"
                        android:data="https://e.foundation/legal-notice-privacy/" />
                </Preference>

                <Preference android:title="@string/preferences_service_terms">
                    <intent
                        android:action="android.intent.action.VIEW"
                        android:data="https://e.foundation/legal-notice-privacy/" />
                </Preference>

            </PreferenceCategory>


        </PreferenceScreen>

        <Preference
            android:key="preference_privacy_policy"
            android:title="@string/preference_privacy_policy"