Skip to content

Commit

Permalink
u
Browse files Browse the repository at this point in the history
  • Loading branch information
hadithmv committed Jan 9, 2025
1 parent c409297 commit a9cc628
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 8 deletions.
4 changes: 2 additions & 2 deletions androidApp-kt/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ android {
applicationId "com.hadithmv.hmv"
minSdk 24
targetSdk 35
versionCode 87
versionName "4.1.3"
versionCode 88
versionName "4.1.4"

// https://stackoverflow.com/questions/39654620/android-how-to-change-specific-name-of-the-generated-apk-file-in-android-studio/55333735#55333735
archivesBaseName = "hadithmv"
Expand Down
10 changes: 9 additions & 1 deletion androidApp-kt/app/src/main/res/values-night/themes.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="Theme.androidWebViewOfflineApplication" parent="android:Theme.Material.NoActionBar">
<item name="android:statusBarColor">@android:color/black</item>
<!-- <item name="android:statusBarColor">@android:color/black</item> -->

<!-- Change to transparent to match system dark theme -->
<item name="android:statusBarColor">@android:color/transparent</item>
<item name="android:navigationBarColor">@android:color/transparent</item>

<!-- Add this to ensure dark status bar icons -->
<item name="android:windowLightStatusBar">false</item>

<item name="android:windowOptOutEdgeToEdgeEnforcement">true</item>
</style>
</resources>
9 changes: 8 additions & 1 deletion androidApp-kt/app/src/main/res/values/themes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,14 @@
<style name="Theme.androidWebViewOfflineApplication" parent="android:Theme.Material.Light.NoActionBar">

<!-- added this to set statusbar color from grey to black -->
<item name="android:statusBarColor">@android:color/black</item>
<!-- <item name="android:statusBarColor">@android:color/black</item> -->

<!-- Change to transparent for consistency with dark theme, need to apply these to the night theme too -->
<item name="android:statusBarColor">@android:color/transparent</item>
<item name="android:navigationBarColor">@android:color/transparent</item>

<!-- Add this to ensure dark status bar icons for better visibility on light background -->
<item name="android:windowLightStatusBar">true</item>

<!-- https://stackoverflow.com/questions/79095037/android-15-edge-to-edge-mode-hide-a-top-view/79095115#79095115 -->
<item name="android:windowOptOutEdgeToEdgeEnforcement">true</item>
Expand Down
2 changes: 1 addition & 1 deletion js/navbar.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// this was initially just navbar code, but then i added other snippets i needed on every page, but not the dt stuff

var hmvVersionNo = "4.1.3";
var hmvVersionNo = "4.1.4";
// cant be 4.0, has to be like 4.1 or 4.01, as empty zeros will get removes

// above is version no var for hmv, shown in sidemenu and maybe main index page
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,8 @@ add birru account

...

whatsapp
WhatsApp
auto download media off

...

Expand All @@ -167,7 +168,8 @@ and with that, login to Instagram and meta business suite too (make sure to logi

...

viber (get sus if you login more than once)
viber (get sus if you login more than once, will have to submit report and wait next day then)
pin chats, mediasave to gallery off, auto download media off, autoplay videos off


...
Expand Down
2 changes: 1 addition & 1 deletion windowsApp-tauri/Hadithmv/src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "hadithmv",
"version": "4.1.3",
"version": "4.1.4",
"identifier": "com.hadithmv.app",
"build": {
"frontendDist": "../src"
Expand Down

0 comments on commit a9cc628

Please sign in to comment.