diff --git a/.github/workflows/github_release.yml b/.github/workflows/github_release.yml
index b452576c..9c6f3d9f 100644
--- a/.github/workflows/github_release.yml
+++ b/.github/workflows/github_release.yml
@@ -39,17 +39,17 @@ jobs:
id: build
run: |
# Build release variants
- bash ./gradlew assembleTempoRelease
- bash ./gradlew assembleNotquitemyRelease
+ bash ./gradlew assembleTempusRelease
+ bash ./gradlew assembleDegoggledRelease
# Build debug variants
- bash ./gradlew assembleTempoDebug
- bash ./gradlew assembleNotquitemyDebug
+ bash ./gradlew assembleTempusDebug
+ bash ./gradlew assembleDegoggledDebug
- - name: Sign All Tempo Release APKs
- id: sign_tempo_release
+ - name: Sign All Tempus Release APKs
+ id: sign_tempus_release
uses: r0adkll/sign-android-release@v1
with:
- releaseDirectory: app/build/outputs/apk/tempo/release
+ releaseDirectory: app/build/outputs/apk/tempus/release
signingKeyBase64: ${{ secrets.KEYSTORE_BASE64 }}
alias: ${{ secrets.KEY_ALIAS_GITHUB }}
keyStorePassword: ${{ secrets.KEYSTORE_PASSWORD }}
@@ -58,11 +58,11 @@ jobs:
env:
BUILD_TOOLS_VERSION: ${{ env.BUILD_TOOL_VERSION }}
- - name: Sign All NotQuiteMy Release APKs
- id: sign_notquitemy_release
+ - name: Sign All Degoggled Release APKs
+ id: sign_degoogled_release
uses: r0adkll/sign-android-release@v1
with:
- releaseDirectory: app/build/outputs/apk/notquitemy/release
+ releaseDirectory: app/build/outputs/apk/degoogled/release
signingKeyBase64: ${{ secrets.KEYSTORE_BASE64 }}
alias: ${{ secrets.KEY_ALIAS_GITHUB }}
keyStorePassword: ${{ secrets.KEYSTORE_PASSWORD }}
@@ -73,25 +73,25 @@ jobs:
- name: Rename and Prepare APK Files
run: |
- # Copy and rename tempo APKs
- for file in app/build/outputs/apk/tempo/release/*.apk; do
+ # Copy and rename tempus APKs
+ for file in app/build/outputs/apk/tempus/release/*.apk; do
if [[ $file == *"arm64-v8a"* ]]; then
- cp "$file" "./app-tempo-arm64-v8a-release.apk"
- echo "Created: app-tempo-arm64-v8a-release.apk"
+ cp "$file" "./app-tempus-arm64-v8a-release.apk"
+ echo "Created: app-tempus-arm64-v8a-release.apk"
elif [[ $file == *"armeabi-v7a"* ]]; then
- cp "$file" "./app-tempo-armeabi-v7a-release.apk"
- echo "Created: app-tempo-armeabi-v7a-release.apk"
+ cp "$file" "./app-tempus-armeabi-v7a-release.apk"
+ echo "Created: app-tempus-armeabi-v7a-release.apk"
fi
done
- # Copy and rename notquitemy APKs
- for file in app/build/outputs/apk/notquitemy/release/*.apk; do
+ # Copy and rename degoogled APKs
+ for file in app/build/outputs/apk/degoogled/release/*.apk; do
if [[ $file == *"arm64-v8a"* ]]; then
- cp "$file" "./app-notquitemy-arm64-v8a-release.apk"
- echo "Created: app-notquitemy-arm64-v8a-release.apk"
+ cp "$file" "./app-degoogled-arm64-v8a-release.apk"
+ echo "Created: app-degoogled-arm64-v8a-release.apk"
elif [[ $file == *"armeabi-v7a"* ]]; then
- cp "$file" "./app-notquitemy-armeabi-v7a-release.apk"
- echo "Created: app-notquitemy-armeabi-v7a-release.apk"
+ cp "$file" "./app-degoogled-armeabi-v7a-release.apk"
+ echo "Created: app-degoogled-armeabi-v7a-release.apk"
fi
done
@@ -109,44 +109,44 @@ jobs:
env:
GITHUB_TOKEN: ${{ github.token }}
- - name: Upload Tempo 64-bit Release APK
+ - name: Upload Tempus 64-bit Release APK
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ github.token }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
- asset_path: ./app-tempo-arm64-v8a-release.apk
- asset_name: app-tempo-arm64-v8a-release.apk
+ asset_path: ./app-tempus-arm64-v8a-release.apk
+ asset_name: app-tempus-arm64-v8a-release.apk
asset_content_type: application/vnd.android.package-archive
- - name: Upload Tempo 32-bit Release APK
+ - name: Upload Tempus 32-bit Release APK
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ github.token }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
- asset_path: ./app-tempo-armeabi-v7a-release.apk
- asset_name: app-tempo-armeabi-v7a-release.apk
+ asset_path: ./app-tempus-armeabi-v7a-release.apk
+ asset_name: app-tempus-armeabi-v7a-release.apk
asset_content_type: application/vnd.android.package-archive
- - name: Upload NotQuiteMy 64-bit Release APK
+ - name: Upload Degoggled 64-bit Release APK
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ github.token }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
- asset_path: ./app-notquitemy-arm64-v8a-release.apk
- asset_name: app-notquitemy-arm64-v8a-release.apk
+ asset_path: ./app-degoogled-arm64-v8a-release.apk
+ asset_name: app-degoogled-arm64-v8a-release.apk
asset_content_type: application/vnd.android.package-archive
- - name: Upload NotQuiteMy 32-bit Release APK
+ - name: Upload Degoggled 32-bit Release APK
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ github.token }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
- asset_path: ./app-notquitemy-armeabi-v7a-release.apk
- asset_name: app-notquitemy-armeabi-v7a-release.apk
+ asset_path: ./app-degoogled-armeabi-v7a-release.apk
+ asset_name: app-degoogled-armeabi-v7a-release.apk
asset_content_type: application/vnd.android.package-archive
- name: Upload Debug APKs as artifacts
@@ -154,8 +154,8 @@ jobs:
with:
name: debug-apks
path: |
- app/build/outputs/apk/tempo/debug/
- app/build/outputs/apk/notquitemy/debug/
+ app/build/outputs/apk/tempus/debug/
+ app/build/outputs/apk/degoogled/debug/
retention-days: 30
- name: Upload Release APKs as artifacts
@@ -163,8 +163,8 @@ jobs:
with:
name: release-apks
path: |
- ./app-tempo-arm64-v8a-release.apk
- ./app-tempo-armeabi-v7a-release.apk
- ./app-notquitemy-arm64-v8a-release.apk
- ./app-notquitemy-armeabi-v7a-release.apk
- retention-days: 30
\ No newline at end of file
+ ./app-tempus-arm64-v8a-release.apk
+ ./app-tempus-armeabi-v7a-release.apk
+ ./app-degoogled-arm64-v8a-release.apk
+ ./app-degoogled-armeabi-v7a-release.apk
+ retention-days: 30
diff --git a/README.md b/README.md
index 708e75c1..50ea7b0c 100644
--- a/README.md
+++ b/README.md
@@ -72,9 +72,8 @@ Fork [**sponsorship here**](https://ko-fi.com/eddyizm).
-
-
-
+
+
@@ -89,9 +88,9 @@ Fork [**sponsorship here**](https://ko-fi.com/eddyizm).
-
-
-
+
+
+
## Contributing
diff --git a/app/build.gradle b/app/build.gradle
index 6d9e1884..0b700b82 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -10,8 +10,8 @@ android {
minSdkVersion 24
targetSdk 35
- versionCode 36
- versionName '3.17.14'
+ versionCode 1
+ versionName '4.0.0.alpha'
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
javaCompileOptions {
@@ -40,14 +40,14 @@ android {
flavorDimensions += "default"
productFlavors {
- tempo {
+ tempus {
dimension = "default"
- applicationId 'com.cappielloantonio.tempo'
+ applicationId 'com.eddyizm.tempus'
}
- notquitemy {
+ degoogled {
dimension = "default"
- applicationId "com.cappielloantonio.notquitemy.tempo"
+ applicationId "com.eddyizm.degoogled.tempus"
}
}
@@ -110,7 +110,7 @@ dependencies {
implementation 'androidx.media3:media3-exoplayer:1.5.1'
implementation 'androidx.media3:media3-ui:1.5.1'
implementation 'androidx.media3:media3-exoplayer-hls:1.5.1'
- tempoImplementation 'androidx.media3:media3-cast:1.5.1'
+ tempusImplementation 'androidx.media3:media3-cast:1.5.1'
annotationProcessor 'com.github.bumptech.glide:compiler:4.16.0'
diff --git a/app/src/degoogled/ic_launcher-playstore.png b/app/src/degoogled/ic_launcher-playstore.png
new file mode 100644
index 00000000..87098298
Binary files /dev/null and b/app/src/degoogled/ic_launcher-playstore.png differ
diff --git a/app/src/notquitemy/java/com/cappielloantonio/tempo/service/MediaService.kt b/app/src/degoogled/java/com/cappielloantonio/tempo/service/MediaService.kt
similarity index 100%
rename from app/src/notquitemy/java/com/cappielloantonio/tempo/service/MediaService.kt
rename to app/src/degoogled/java/com/cappielloantonio/tempo/service/MediaService.kt
diff --git a/app/src/notquitemy/java/com/cappielloantonio/tempo/ui/fragment/ToolbarFragment.java b/app/src/degoogled/java/com/cappielloantonio/tempo/ui/fragment/ToolbarFragment.java
similarity index 100%
rename from app/src/notquitemy/java/com/cappielloantonio/tempo/ui/fragment/ToolbarFragment.java
rename to app/src/degoogled/java/com/cappielloantonio/tempo/ui/fragment/ToolbarFragment.java
diff --git a/app/src/notquitemy/java/com/cappielloantonio/tempo/util/Flavors.java b/app/src/degoogled/java/com/cappielloantonio/tempo/util/Flavors.java
similarity index 100%
rename from app/src/notquitemy/java/com/cappielloantonio/tempo/util/Flavors.java
rename to app/src/degoogled/java/com/cappielloantonio/tempo/util/Flavors.java
diff --git a/app/src/degoogled/res/drawable/ic_launcher_foreground.xml b/app/src/degoogled/res/drawable/ic_launcher_foreground.xml
new file mode 100644
index 00000000..2f629d48
--- /dev/null
+++ b/app/src/degoogled/res/drawable/ic_launcher_foreground.xml
@@ -0,0 +1,54 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/degoogled/res/drawable/ic_splash_logo.xml b/app/src/degoogled/res/drawable/ic_splash_logo.xml
new file mode 100644
index 00000000..cc4ea53d
--- /dev/null
+++ b/app/src/degoogled/res/drawable/ic_splash_logo.xml
@@ -0,0 +1,53 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/notquitemy/res/menu/main_page_menu.xml b/app/src/degoogled/res/menu/main_page_menu.xml
similarity index 100%
rename from app/src/notquitemy/res/menu/main_page_menu.xml
rename to app/src/degoogled/res/menu/main_page_menu.xml
diff --git a/app/src/degoogled/res/mipmap-anydpi-v26/ic_launcher.xml b/app/src/degoogled/res/mipmap-anydpi-v26/ic_launcher.xml
new file mode 100644
index 00000000..7353dbd1
--- /dev/null
+++ b/app/src/degoogled/res/mipmap-anydpi-v26/ic_launcher.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/degoogled/res/mipmap-anydpi-v26/ic_launcher_round.xml b/app/src/degoogled/res/mipmap-anydpi-v26/ic_launcher_round.xml
new file mode 100644
index 00000000..7353dbd1
--- /dev/null
+++ b/app/src/degoogled/res/mipmap-anydpi-v26/ic_launcher_round.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/degoogled/res/mipmap-hdpi/ic_launcher.webp b/app/src/degoogled/res/mipmap-hdpi/ic_launcher.webp
new file mode 100644
index 00000000..411c3615
Binary files /dev/null and b/app/src/degoogled/res/mipmap-hdpi/ic_launcher.webp differ
diff --git a/app/src/degoogled/res/mipmap-hdpi/ic_launcher_round.webp b/app/src/degoogled/res/mipmap-hdpi/ic_launcher_round.webp
new file mode 100644
index 00000000..fbbe2e15
Binary files /dev/null and b/app/src/degoogled/res/mipmap-hdpi/ic_launcher_round.webp differ
diff --git a/app/src/degoogled/res/mipmap-mdpi/ic_launcher.webp b/app/src/degoogled/res/mipmap-mdpi/ic_launcher.webp
new file mode 100644
index 00000000..940d52f4
Binary files /dev/null and b/app/src/degoogled/res/mipmap-mdpi/ic_launcher.webp differ
diff --git a/app/src/degoogled/res/mipmap-mdpi/ic_launcher_round.webp b/app/src/degoogled/res/mipmap-mdpi/ic_launcher_round.webp
new file mode 100644
index 00000000..dd79b425
Binary files /dev/null and b/app/src/degoogled/res/mipmap-mdpi/ic_launcher_round.webp differ
diff --git a/app/src/degoogled/res/mipmap-xhdpi/ic_launcher.webp b/app/src/degoogled/res/mipmap-xhdpi/ic_launcher.webp
new file mode 100644
index 00000000..f502e427
Binary files /dev/null and b/app/src/degoogled/res/mipmap-xhdpi/ic_launcher.webp differ
diff --git a/app/src/degoogled/res/mipmap-xhdpi/ic_launcher_round.webp b/app/src/degoogled/res/mipmap-xhdpi/ic_launcher_round.webp
new file mode 100644
index 00000000..40a9c5a3
Binary files /dev/null and b/app/src/degoogled/res/mipmap-xhdpi/ic_launcher_round.webp differ
diff --git a/app/src/degoogled/res/mipmap-xxhdpi/ic_launcher.webp b/app/src/degoogled/res/mipmap-xxhdpi/ic_launcher.webp
new file mode 100644
index 00000000..7454bb06
Binary files /dev/null and b/app/src/degoogled/res/mipmap-xxhdpi/ic_launcher.webp differ
diff --git a/app/src/degoogled/res/mipmap-xxhdpi/ic_launcher_round.webp b/app/src/degoogled/res/mipmap-xxhdpi/ic_launcher_round.webp
new file mode 100644
index 00000000..0b815364
Binary files /dev/null and b/app/src/degoogled/res/mipmap-xxhdpi/ic_launcher_round.webp differ
diff --git a/app/src/degoogled/res/mipmap-xxxhdpi/ic_launcher.webp b/app/src/degoogled/res/mipmap-xxxhdpi/ic_launcher.webp
new file mode 100644
index 00000000..d8ed1497
Binary files /dev/null and b/app/src/degoogled/res/mipmap-xxxhdpi/ic_launcher.webp differ
diff --git a/app/src/degoogled/res/mipmap-xxxhdpi/ic_launcher_round.webp b/app/src/degoogled/res/mipmap-xxxhdpi/ic_launcher_round.webp
new file mode 100644
index 00000000..1a6a93a7
Binary files /dev/null and b/app/src/degoogled/res/mipmap-xxxhdpi/ic_launcher_round.webp differ
diff --git a/app/src/degoogled/res/values/ic_launcher_background.xml b/app/src/degoogled/res/values/ic_launcher_background.xml
new file mode 100644
index 00000000..dacc1d21
--- /dev/null
+++ b/app/src/degoogled/res/values/ic_launcher_background.xml
@@ -0,0 +1,4 @@
+
+
+ #626A75
+
\ No newline at end of file
diff --git a/app/src/main/ic_launcher-playstore.png b/app/src/main/ic_launcher-playstore.png
new file mode 100644
index 00000000..b0867796
Binary files /dev/null and b/app/src/main/ic_launcher-playstore.png differ
diff --git a/app/src/main/res/drawable/ic_launcher_foreground.xml b/app/src/main/res/drawable/ic_launcher_foreground.xml
new file mode 100644
index 00000000..89ac22cc
--- /dev/null
+++ b/app/src/main/res/drawable/ic_launcher_foreground.xml
@@ -0,0 +1,56 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/app/src/main/res/drawable/ic_splash_logo.xml b/app/src/main/res/drawable/ic_splash_logo.xml
index a96270cb..ed526ece 100644
--- a/app/src/main/res/drawable/ic_splash_logo.xml
+++ b/app/src/main/res/drawable/ic_splash_logo.xml
@@ -1,54 +1,56 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+ android:width="108dp"
+ android:height="108dp"
+ android:viewportWidth="512"
+ android:viewportHeight="512">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/app/src/main/res/drawable/ic_toolbar_tempo.xml b/app/src/main/res/drawable/ic_toolbar_tempo.xml
index dc8209f6..63e72c7f 100644
--- a/app/src/main/res/drawable/ic_toolbar_tempo.xml
+++ b/app/src/main/res/drawable/ic_toolbar_tempo.xml
@@ -1,39 +1,52 @@
+ android:width="24dp"
+ android:height="24dp"
+ android:viewportWidth="512"
+ android:viewportHeight="512">
+
+ android:pathData="M512,437.33c0,11.78 -9.56,21.34 -21.34,21.34H21.33C9.55,458.67 0,449.11 0,437.33V96c0,-11.78 9.55,-21.33 21.33,-21.33h469.33c11.78,0 21.34,9.55 21.34,21.33L512,437.33L512,437.33z"
+ android:fillColor="#DA4453"/>
+ android:pathData="M512,416.01c0,11.78 -9.56,21.31 -21.34,21.31H21.33C9.55,437.33 0,427.8 0,416.01V74.67c0,-11.78 9.55,-21.34 21.33,-21.34h469.33c11.78,0 21.34,9.56 21.34,21.34L512,416.01L512,416.01z"
+ android:fillColor="#ED5564"/>
+
+
+ android:pathData="M74.66,106.67c0,5.89 -4.78,10.66 -10.67,10.66c-5.89,0 -10.66,-4.77 -10.66,-10.66S58.1,96 63.99,96C69.88,96 74.66,100.78 74.66,106.67z"
+ android:fillColor="#E6E9ED"/>
+ android:pathData="M74.66,384.01c0,5.88 -4.78,10.66 -10.67,10.66c-5.89,0 -10.66,-4.78 -10.66,-10.66c0,-5.91 4.77,-10.69 10.66,-10.69C69.88,373.33 74.66,378.11 74.66,384.01z"
+ android:fillColor="#E6E9ED"/>
+ android:pathData="M448,123.73h-21.34v203.19l-40.31,50.41v0.02c-1.47,1.83 -2.34,4.14 -2.34,6.67c0,5.88 4.78,10.66 10.66,10.66c3.38,0 6.38,-1.56 8.33,-4h0.02l42.66,-53.34l0,0c1.47,-1.81 2.34,-4.13 2.34,-6.66V123.73z"
+ android:fillColor="#E6E9ED"/>
+ android:pathData="M437.33,149.33c-11.77,0 -21.33,-9.56 -21.33,-21.33s9.56,-21.33 21.33,-21.33s21.33,9.56 21.33,21.33S449.09,149.33 437.33,149.33z"
+ android:fillColor="#E6E9ED"/>
+ android:pathData="M437.33,96c-17.67,0 -32,14.33 -32,32s14.33,32 32,32s32,-14.33 32,-32S455,96 437.33,96zM437.33,138.67c-5.89,0 -10.67,-4.8 -10.67,-10.67c0,-5.88 4.78,-10.67 10.67,-10.67s10.67,4.8 10.67,10.67C448,133.88 443.22,138.67 437.33,138.67z"
+ android:fillColor="#CCD1D9"/>
+ android:pathData="M405.33,245.33c0,82.48 -66.86,149.34 -149.33,149.34c-82.47,0 -149.33,-66.86 -149.33,-149.34C106.66,162.86 173.52,96 255.99,96C338.47,96 405.33,162.86 405.33,245.33z"
+ android:fillColor="#434A54"/>
+ android:pathData="M266.66,149.33c0,-5.89 -4.77,-10.66 -10.67,-10.66c-58.91,0 -106.66,47.75 -106.66,106.65l0,0c0,5.89 4.77,10.67 10.67,10.67s10.67,-4.78 10.67,-10.67l0,0c0,-22.78 8.88,-44.22 24.99,-60.33c16.12,-16.13 37.55,-25 60.34,-25C261.89,160 266.66,155.22 266.66,149.33z"
+ android:fillColor="#656D78"/>
+ android:pathData="M352,234.67c-5.9,0 -10.67,4.77 -10.67,10.66l0,0c0,22.8 -8.88,44.23 -24.98,60.34c-16.13,16.13 -37.56,25 -60.35,25c-5.89,0 -10.66,4.78 -10.66,10.66c0,5.91 4.77,10.69 10.66,10.69c58.91,0 106.66,-47.77 106.66,-106.69C362.65,239.44 357.89,234.67 352,234.67z"
+ android:fillColor="#656D78"/>
-
+ android:pathData="M255.99,288.01c-23.52,0 -42.66,-19.16 -42.66,-42.69c0,-23.52 19.14,-42.66 42.66,-42.66c23.54,0 42.66,19.14 42.66,42.66C298.65,268.86 279.53,288.01 255.99,288.01z"
+ android:fillColor="#FFCE54"/>
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/logo.xml b/app/src/main/res/drawable/logo.xml
new file mode 100644
index 00000000..8d9ad6d4
--- /dev/null
+++ b/app/src/main/res/drawable/logo.xml
@@ -0,0 +1,51 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/app/src/main/res/drawable/ui_splash_screen.xml b/app/src/main/res/drawable/ui_splash_screen.xml
index 0a3539f0..f789f886 100644
--- a/app/src/main/res/drawable/ui_splash_screen.xml
+++ b/app/src/main/res/drawable/ui_splash_screen.xml
@@ -1,14 +1,6 @@
-
-
\ No newline at end of file
diff --git a/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
index 345888d2..7353dbd1 100644
--- a/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
+++ b/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
@@ -1,6 +1,5 @@
-
-
-
+
+
\ No newline at end of file
diff --git a/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml
new file mode 100644
index 00000000..7353dbd1
--- /dev/null
+++ b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher.png b/app/src/main/res/mipmap-hdpi/ic_launcher.png
deleted file mode 100644
index 7a9f733c..00000000
Binary files a/app/src/main/res/mipmap-hdpi/ic_launcher.png and /dev/null differ
diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher.webp b/app/src/main/res/mipmap-hdpi/ic_launcher.webp
new file mode 100644
index 00000000..a798f3f3
Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_launcher.webp differ
diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_background.png b/app/src/main/res/mipmap-hdpi/ic_launcher_background.png
deleted file mode 100644
index a102ceda..00000000
Binary files a/app/src/main/res/mipmap-hdpi/ic_launcher_background.png and /dev/null differ
diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png b/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png
deleted file mode 100644
index a637f947..00000000
Binary files a/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png and /dev/null differ
diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_monochrome.png b/app/src/main/res/mipmap-hdpi/ic_launcher_monochrome.png
deleted file mode 100644
index a637f947..00000000
Binary files a/app/src/main/res/mipmap-hdpi/ic_launcher_monochrome.png and /dev/null differ
diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp
new file mode 100644
index 00000000..6664ee2e
Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp differ
diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher.png b/app/src/main/res/mipmap-mdpi/ic_launcher.png
deleted file mode 100644
index d3d7193c..00000000
Binary files a/app/src/main/res/mipmap-mdpi/ic_launcher.png and /dev/null differ
diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher.webp b/app/src/main/res/mipmap-mdpi/ic_launcher.webp
new file mode 100644
index 00000000..bb29009a
Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_launcher.webp differ
diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_background.png b/app/src/main/res/mipmap-mdpi/ic_launcher_background.png
deleted file mode 100644
index 3cd1630c..00000000
Binary files a/app/src/main/res/mipmap-mdpi/ic_launcher_background.png and /dev/null differ
diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png b/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png
deleted file mode 100644
index 71a6dc90..00000000
Binary files a/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png and /dev/null differ
diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_monochrome.png b/app/src/main/res/mipmap-mdpi/ic_launcher_monochrome.png
deleted file mode 100644
index 71a6dc90..00000000
Binary files a/app/src/main/res/mipmap-mdpi/ic_launcher_monochrome.png and /dev/null differ
diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp
new file mode 100644
index 00000000..3c9b8392
Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp differ
diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/app/src/main/res/mipmap-xhdpi/ic_launcher.png
deleted file mode 100644
index df8276e6..00000000
Binary files a/app/src/main/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ
diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher.webp
new file mode 100644
index 00000000..6e97e90e
Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_launcher.webp differ
diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_background.png b/app/src/main/res/mipmap-xhdpi/ic_launcher_background.png
deleted file mode 100644
index 8dde8b5a..00000000
Binary files a/app/src/main/res/mipmap-xhdpi/ic_launcher_background.png and /dev/null differ
diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png b/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png
deleted file mode 100644
index b434ab14..00000000
Binary files a/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png and /dev/null differ
diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_monochrome.png b/app/src/main/res/mipmap-xhdpi/ic_launcher_monochrome.png
deleted file mode 100644
index b434ab14..00000000
Binary files a/app/src/main/res/mipmap-xhdpi/ic_launcher_monochrome.png and /dev/null differ
diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
deleted file mode 100644
index 9dd9840d..00000000
Binary files a/app/src/main/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ
diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp
new file mode 100644
index 00000000..3c626ea4
Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp differ
diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_background.png b/app/src/main/res/mipmap-xxhdpi/ic_launcher_background.png
deleted file mode 100644
index d0dddcfa..00000000
Binary files a/app/src/main/res/mipmap-xxhdpi/ic_launcher_background.png and /dev/null differ
diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png b/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png
deleted file mode 100644
index 7f48ef13..00000000
Binary files a/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png and /dev/null differ
diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_monochrome.png b/app/src/main/res/mipmap-xxhdpi/ic_launcher_monochrome.png
deleted file mode 100644
index 7f48ef13..00000000
Binary files a/app/src/main/res/mipmap-xxhdpi/ic_launcher_monochrome.png and /dev/null differ
diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp
new file mode 100644
index 00000000..027987a1
Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp differ
diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
deleted file mode 100644
index 72b6de04..00000000
Binary files a/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png and /dev/null differ
diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp
new file mode 100644
index 00000000..feb9feb5
Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp differ
diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png
deleted file mode 100644
index 00fb014e..00000000
Binary files a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png and /dev/null differ
diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png
deleted file mode 100644
index d3033d8b..00000000
Binary files a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png and /dev/null differ
diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_monochrome.png b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_monochrome.png
deleted file mode 100644
index d3033d8b..00000000
Binary files a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_monochrome.png and /dev/null differ
diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp
new file mode 100644
index 00000000..6a92327b
Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp differ
diff --git a/app/src/main/res/values/ic_launcher_background.xml b/app/src/main/res/values/ic_launcher_background.xml
new file mode 100644
index 00000000..dacc1d21
--- /dev/null
+++ b/app/src/main/res/values/ic_launcher_background.xml
@@ -0,0 +1,4 @@
+
+
+ #626A75
+
\ No newline at end of file
diff --git a/app/src/notquitemy/res/drawable/ic_splash_logo.xml b/app/src/notquitemy/res/drawable/ic_splash_logo.xml
deleted file mode 100644
index 950364c5..00000000
--- a/app/src/notquitemy/res/drawable/ic_splash_logo.xml
+++ /dev/null
@@ -1,216 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/app/src/notquitemy/res/drawable/ic_toolbar_tempo.xml b/app/src/notquitemy/res/drawable/ic_toolbar_tempo.xml
deleted file mode 100644
index 669b7234..00000000
--- a/app/src/notquitemy/res/drawable/ic_toolbar_tempo.xml
+++ /dev/null
@@ -1,201 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/app/src/notquitemy/res/mipmap-anydpi-v26/ic_launcher.xml b/app/src/notquitemy/res/mipmap-anydpi-v26/ic_launcher.xml
deleted file mode 100644
index 345888d2..00000000
--- a/app/src/notquitemy/res/mipmap-anydpi-v26/ic_launcher.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/app/src/notquitemy/res/mipmap-hdpi/ic_launcher.png b/app/src/notquitemy/res/mipmap-hdpi/ic_launcher.png
deleted file mode 100644
index b84c1587..00000000
Binary files a/app/src/notquitemy/res/mipmap-hdpi/ic_launcher.png and /dev/null differ
diff --git a/app/src/notquitemy/res/mipmap-hdpi/ic_launcher_background.png b/app/src/notquitemy/res/mipmap-hdpi/ic_launcher_background.png
deleted file mode 100644
index eef19741..00000000
Binary files a/app/src/notquitemy/res/mipmap-hdpi/ic_launcher_background.png and /dev/null differ
diff --git a/app/src/notquitemy/res/mipmap-hdpi/ic_launcher_foreground.png b/app/src/notquitemy/res/mipmap-hdpi/ic_launcher_foreground.png
deleted file mode 100644
index 77a82ad8..00000000
Binary files a/app/src/notquitemy/res/mipmap-hdpi/ic_launcher_foreground.png and /dev/null differ
diff --git a/app/src/notquitemy/res/mipmap-hdpi/ic_launcher_monochrome.png b/app/src/notquitemy/res/mipmap-hdpi/ic_launcher_monochrome.png
deleted file mode 100644
index 77a82ad8..00000000
Binary files a/app/src/notquitemy/res/mipmap-hdpi/ic_launcher_monochrome.png and /dev/null differ
diff --git a/app/src/notquitemy/res/mipmap-mdpi/ic_launcher.png b/app/src/notquitemy/res/mipmap-mdpi/ic_launcher.png
deleted file mode 100644
index ee1d22a4..00000000
Binary files a/app/src/notquitemy/res/mipmap-mdpi/ic_launcher.png and /dev/null differ
diff --git a/app/src/notquitemy/res/mipmap-mdpi/ic_launcher_background.png b/app/src/notquitemy/res/mipmap-mdpi/ic_launcher_background.png
deleted file mode 100644
index e7d43156..00000000
Binary files a/app/src/notquitemy/res/mipmap-mdpi/ic_launcher_background.png and /dev/null differ
diff --git a/app/src/notquitemy/res/mipmap-mdpi/ic_launcher_foreground.png b/app/src/notquitemy/res/mipmap-mdpi/ic_launcher_foreground.png
deleted file mode 100644
index 83d63965..00000000
Binary files a/app/src/notquitemy/res/mipmap-mdpi/ic_launcher_foreground.png and /dev/null differ
diff --git a/app/src/notquitemy/res/mipmap-mdpi/ic_launcher_monochrome.png b/app/src/notquitemy/res/mipmap-mdpi/ic_launcher_monochrome.png
deleted file mode 100644
index 83d63965..00000000
Binary files a/app/src/notquitemy/res/mipmap-mdpi/ic_launcher_monochrome.png and /dev/null differ
diff --git a/app/src/notquitemy/res/mipmap-xhdpi/ic_launcher.png b/app/src/notquitemy/res/mipmap-xhdpi/ic_launcher.png
deleted file mode 100644
index 7b54c3f7..00000000
Binary files a/app/src/notquitemy/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ
diff --git a/app/src/notquitemy/res/mipmap-xhdpi/ic_launcher_background.png b/app/src/notquitemy/res/mipmap-xhdpi/ic_launcher_background.png
deleted file mode 100644
index a5143ca1..00000000
Binary files a/app/src/notquitemy/res/mipmap-xhdpi/ic_launcher_background.png and /dev/null differ
diff --git a/app/src/notquitemy/res/mipmap-xhdpi/ic_launcher_foreground.png b/app/src/notquitemy/res/mipmap-xhdpi/ic_launcher_foreground.png
deleted file mode 100644
index da639ad6..00000000
Binary files a/app/src/notquitemy/res/mipmap-xhdpi/ic_launcher_foreground.png and /dev/null differ
diff --git a/app/src/notquitemy/res/mipmap-xhdpi/ic_launcher_monochrome.png b/app/src/notquitemy/res/mipmap-xhdpi/ic_launcher_monochrome.png
deleted file mode 100644
index da639ad6..00000000
Binary files a/app/src/notquitemy/res/mipmap-xhdpi/ic_launcher_monochrome.png and /dev/null differ
diff --git a/app/src/notquitemy/res/mipmap-xxhdpi/ic_launcher.png b/app/src/notquitemy/res/mipmap-xxhdpi/ic_launcher.png
deleted file mode 100644
index 5780cfa4..00000000
Binary files a/app/src/notquitemy/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ
diff --git a/app/src/notquitemy/res/mipmap-xxhdpi/ic_launcher_background.png b/app/src/notquitemy/res/mipmap-xxhdpi/ic_launcher_background.png
deleted file mode 100644
index 4ed8e595..00000000
Binary files a/app/src/notquitemy/res/mipmap-xxhdpi/ic_launcher_background.png and /dev/null differ
diff --git a/app/src/notquitemy/res/mipmap-xxhdpi/ic_launcher_foreground.png b/app/src/notquitemy/res/mipmap-xxhdpi/ic_launcher_foreground.png
deleted file mode 100644
index cc4d5ada..00000000
Binary files a/app/src/notquitemy/res/mipmap-xxhdpi/ic_launcher_foreground.png and /dev/null differ
diff --git a/app/src/notquitemy/res/mipmap-xxhdpi/ic_launcher_monochrome.png b/app/src/notquitemy/res/mipmap-xxhdpi/ic_launcher_monochrome.png
deleted file mode 100644
index cc4d5ada..00000000
Binary files a/app/src/notquitemy/res/mipmap-xxhdpi/ic_launcher_monochrome.png and /dev/null differ
diff --git a/app/src/notquitemy/res/mipmap-xxxhdpi/ic_launcher.png b/app/src/notquitemy/res/mipmap-xxxhdpi/ic_launcher.png
deleted file mode 100644
index a20e31d6..00000000
Binary files a/app/src/notquitemy/res/mipmap-xxxhdpi/ic_launcher.png and /dev/null differ
diff --git a/app/src/notquitemy/res/mipmap-xxxhdpi/ic_launcher_background.png b/app/src/notquitemy/res/mipmap-xxxhdpi/ic_launcher_background.png
deleted file mode 100644
index dec0fa5b..00000000
Binary files a/app/src/notquitemy/res/mipmap-xxxhdpi/ic_launcher_background.png and /dev/null differ
diff --git a/app/src/notquitemy/res/mipmap-xxxhdpi/ic_launcher_foreground.png b/app/src/notquitemy/res/mipmap-xxxhdpi/ic_launcher_foreground.png
deleted file mode 100644
index c0d3f25c..00000000
Binary files a/app/src/notquitemy/res/mipmap-xxxhdpi/ic_launcher_foreground.png and /dev/null differ
diff --git a/app/src/notquitemy/res/mipmap-xxxhdpi/ic_launcher_monochrome.png b/app/src/notquitemy/res/mipmap-xxxhdpi/ic_launcher_monochrome.png
deleted file mode 100644
index c0d3f25c..00000000
Binary files a/app/src/notquitemy/res/mipmap-xxxhdpi/ic_launcher_monochrome.png and /dev/null differ
diff --git a/app/src/tempo/java/com/cappielloantonio/tempo/service/MediaBrowserTree.kt b/app/src/tempus/java/com/cappielloantonio/tempo/service/MediaBrowserTree.kt
similarity index 100%
rename from app/src/tempo/java/com/cappielloantonio/tempo/service/MediaBrowserTree.kt
rename to app/src/tempus/java/com/cappielloantonio/tempo/service/MediaBrowserTree.kt
diff --git a/app/src/tempo/java/com/cappielloantonio/tempo/service/MediaLibraryServiceCallback.kt b/app/src/tempus/java/com/cappielloantonio/tempo/service/MediaLibraryServiceCallback.kt
similarity index 100%
rename from app/src/tempo/java/com/cappielloantonio/tempo/service/MediaLibraryServiceCallback.kt
rename to app/src/tempus/java/com/cappielloantonio/tempo/service/MediaLibraryServiceCallback.kt
diff --git a/app/src/tempo/java/com/cappielloantonio/tempo/service/MediaService.kt b/app/src/tempus/java/com/cappielloantonio/tempo/service/MediaService.kt
similarity index 100%
rename from app/src/tempo/java/com/cappielloantonio/tempo/service/MediaService.kt
rename to app/src/tempus/java/com/cappielloantonio/tempo/service/MediaService.kt
diff --git a/app/src/tempo/java/com/cappielloantonio/tempo/ui/fragment/ToolbarFragment.java b/app/src/tempus/java/com/cappielloantonio/tempo/ui/fragment/ToolbarFragment.java
similarity index 100%
rename from app/src/tempo/java/com/cappielloantonio/tempo/ui/fragment/ToolbarFragment.java
rename to app/src/tempus/java/com/cappielloantonio/tempo/ui/fragment/ToolbarFragment.java
diff --git a/app/src/tempo/java/com/cappielloantonio/tempo/util/Flavors.java b/app/src/tempus/java/com/cappielloantonio/tempo/util/Flavors.java
similarity index 100%
rename from app/src/tempo/java/com/cappielloantonio/tempo/util/Flavors.java
rename to app/src/tempus/java/com/cappielloantonio/tempo/util/Flavors.java
diff --git a/fastlane/metadata/android/en-US/images/phoneScreenshots/2_screenshot.png b/fastlane/metadata/android/en-US/images/phoneScreenshots/2_screenshot.png
deleted file mode 100644
index a7e9d570..00000000
Binary files a/fastlane/metadata/android/en-US/images/phoneScreenshots/2_screenshot.png and /dev/null differ
diff --git a/fastlane/metadata/android/en-US/images/phoneScreenshots/3_screenshot.png b/fastlane/metadata/android/en-US/images/phoneScreenshots/3_screenshot.png
deleted file mode 100644
index bd47642d..00000000
Binary files a/fastlane/metadata/android/en-US/images/phoneScreenshots/3_screenshot.png and /dev/null differ
diff --git a/fastlane/metadata/android/en-US/images/phoneScreenshots/4_screenshot.png b/fastlane/metadata/android/en-US/images/phoneScreenshots/4_screenshot.png
deleted file mode 100644
index 1b311d93..00000000
Binary files a/fastlane/metadata/android/en-US/images/phoneScreenshots/4_screenshot.png and /dev/null differ
diff --git a/fastlane/metadata/android/en-US/images/phoneScreenshots/5_screenshot.png b/fastlane/metadata/android/en-US/images/phoneScreenshots/5_screenshot.png
deleted file mode 100644
index e23fe9b6..00000000
Binary files a/fastlane/metadata/android/en-US/images/phoneScreenshots/5_screenshot.png and /dev/null differ
diff --git a/fastlane/metadata/android/en-US/images/phoneScreenshots/6_dark.png b/fastlane/metadata/android/en-US/images/phoneScreenshots/6_dark.png
new file mode 100644
index 00000000..a82a3efc
Binary files /dev/null and b/fastlane/metadata/android/en-US/images/phoneScreenshots/6_dark.png differ
diff --git a/fastlane/metadata/android/en-US/images/phoneScreenshots/6_light.png b/fastlane/metadata/android/en-US/images/phoneScreenshots/6_light.png
new file mode 100644
index 00000000..6f6b55b2
Binary files /dev/null and b/fastlane/metadata/android/en-US/images/phoneScreenshots/6_light.png differ
diff --git a/fastlane/metadata/android/en-US/images/phoneScreenshots/8_dark.png b/fastlane/metadata/android/en-US/images/phoneScreenshots/8_dark.png
new file mode 100644
index 00000000..966faac7
Binary files /dev/null and b/fastlane/metadata/android/en-US/images/phoneScreenshots/8_dark.png differ
diff --git a/fastlane/metadata/android/en-US/images/phoneScreenshots/8_light.png b/fastlane/metadata/android/en-US/images/phoneScreenshots/8_light.png
new file mode 100644
index 00000000..f35f413c
Binary files /dev/null and b/fastlane/metadata/android/en-US/images/phoneScreenshots/8_light.png differ
diff --git a/mockup/feat/1_screenshot.png b/mockup/feat/1_screenshot.png
deleted file mode 100644
index 99402fbb..00000000
Binary files a/mockup/feat/1_screenshot.png and /dev/null differ
diff --git a/mockup/feat/2_screenshot.png b/mockup/feat/2_screenshot.png
deleted file mode 100644
index a7e9d570..00000000
Binary files a/mockup/feat/2_screenshot.png and /dev/null differ
diff --git a/mockup/feat/3_screenshot.png b/mockup/feat/3_screenshot.png
deleted file mode 100644
index bd47642d..00000000
Binary files a/mockup/feat/3_screenshot.png and /dev/null differ
diff --git a/mockup/feat/4_screenshot.png b/mockup/feat/4_screenshot.png
deleted file mode 100644
index 1b311d93..00000000
Binary files a/mockup/feat/4_screenshot.png and /dev/null differ
diff --git a/mockup/feat/5_screenshot.png b/mockup/feat/5_screenshot.png
deleted file mode 100644
index e23fe9b6..00000000
Binary files a/mockup/feat/5_screenshot.png and /dev/null differ
diff --git a/mockup/feat/6_screenshot.png b/mockup/feat/6_screenshot.png
deleted file mode 100644
index eec55dcb..00000000
Binary files a/mockup/feat/6_screenshot.png and /dev/null differ
diff --git a/mockup/feat/7_screenshot.png b/mockup/feat/7_screenshot.png
deleted file mode 100644
index 4903e095..00000000
Binary files a/mockup/feat/7_screenshot.png and /dev/null differ
diff --git a/mockup/feat/8_screenshot.png b/mockup/feat/8_screenshot.png
deleted file mode 100644
index b13b3aab..00000000
Binary files a/mockup/feat/8_screenshot.png and /dev/null differ