Skip to content

Commit

Permalink
Merge branch 'canary' into stable
Browse files Browse the repository at this point in the history
# Conflicts:
#	MagiskModBase/module.prop
#	app/build.gradle
#	latestCanary.json
#	latestVersion.json
  • Loading branch information
siavash79 committed May 3, 2023
2 parents f64659e + 2304320 commit ecb6076
Show file tree
Hide file tree
Showing 122 changed files with 4,205 additions and 1,674 deletions.
2 changes: 1 addition & 1 deletion .github/edit2MakeNewCanary
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Editing this file will trigger the build script for a new canary..
Editing this file will trigger the build script for a new canary.
44 changes: 44 additions & 0 deletions CanaryChangelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,47 @@
**canary-242**
- 13QPR3: QS quick pulldown now responds to swipe down only
- 13QPR3: Fixed showing security input on device wake

**canary-241**
- 13QPR3Beta3: Fixed hiding privacy chips
- 13QPR3: Fixed taskbar size
- Fixed VoLTE icon appearance glitches
- Fixed VoLTE icon appearance glitches

**canary-240**
- 13QPR3: Fixed VoLTE icon appearance
- Changed keyguard pin shuffle behavior
- Fixed QS pulldown bug appeared a few canaries ago

**canary-239**
- Fixed lockscreen carrier text hiding when not supposed to
- 13QPR3: Fixed hiding ongoing privacy chips

**canary-238**
- Refreshed UI based on material 3! Shout out to Iconify dev Mahmud0808@Github for "personally" applying iconify UI to AOSPMods

**canary-237**
- Added option to change app icon to "always themed"
- 13QPR3: Fixed screenshot mods

**canary-236**
- 13QPR3: Fixed easy-unlock
- Fixed QQS brightness slider, broken in canary 235
- 13QPR1, 13QPR2: Fixed QS Quick pulldown, broken in canary 235

**canary-235**
- 13QPR3: Fixed QQS brightness slider

**canary-234**
- 13QPR3: Fixed taskbar
- 13QPR3: Fixed QS quick pulldown
- 13QPR3: Fixed statusbar double tap sleep
- 13QPR3: Fixed double tap actions on lockscreen

**canary-233**
- 13QPR3: Fixed QS header shortcuts
- 13QPR3: Fixed light QS theme

**canary-232**
- Fixed brightness slider's animation
- Fixed custom battery icon randomly not appearing immediately after restart
Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ Automated install/updates: only through in-app updater - updates will NOT appear
- @ElTifo Portuguese
- @cracky5322 Chinese Traditional
- @JohnsonRan Chinese Simplified
- @huajijam Chinese Simplified
- @TireX228 Russian
- @ygorigor Romanian
- @krystianokris Polish
Expand All @@ -94,6 +95,10 @@ Automated install/updates: only through in-app updater - updates will NOT appear
- @Katsuyuki-Karasawa Japanese
- @potatosalad775 Korean
- @hcosserat French
- @deepanshpandey Hindi

**UI design:**
- @Mahmud0808

**Graphic design:**
- JstormZx@Telegram (Icon and Banner)
Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ android {
applicationId "sh.siava.AOSPMods"
minSdk 33
targetSdk 33
versionCode 233
versionName "2.7.2"
versionCode 242
versionName "canary-242"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
40 changes: 31 additions & 9 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,20 @@
<uses-permission android:name="android.permission.POST_NOTIFICATIONS"/>

<application
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
android:theme="@style/AppTheme.AOSPMods"
android:icon="@mipmap/ic_launcher">
<activity
android:name=".UpdateActivity"
android:exported="false"
android:label="@string/title_activity_update"
android:theme="@style/AppTheme.NoActionBar" />
android:parentActivityName=".SettingsActivity"/>
<activity
android:name=".updateActivity"
android:exported="false"
android:label="@string/title_activity_update"
android:theme="@style/AppTheme">
android:parentActivityName=".SettingsActivity">
<intent-filter>
<action android:name="android.intent.action.RUN" />
<category android:name="android.intent.category.DEFAULT" />
Expand All @@ -30,22 +30,44 @@
android:name=".SettingsActivity"
android:exported="true"
android:label="@string/title_activity_settings">
</activity>

<activity-alias
android:name=".SettingsActivityNormalIcon"
android:targetActivity=".SettingsActivity"
android:enabled="true"
android:icon="@mipmap/ic_launcher"
android:exported="true"
android:label="@string/title_activity_settings">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</activity-alias>

<activity-alias
android:name=".SettingsActivityAlternateIcon"
android:targetActivity=".SettingsActivity"
android:enabled="false"
android:icon="@mipmap/ic_launcher_themed"
android:exported="true"
android:label="@string/title_activity_settings">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity-alias>

<service
android:name=".utils.VolumeTileService"
android:label="Media Volume"
android:icon="@drawable/ic_volume"
android:permission="android.permission.BIND_QUICK_SETTINGS_TILE"
android:exported="true">
<intent-filter>
<action android:name="android.service.quicksettings.action.QS_TILE" />
</intent-filter>
</service>
<intent-filter>
<action android:name="android.service.quicksettings.action.QS_TILE" />
</intent-filter>
</service>

<provider
android:name=".utils.RemotePrefProvider"
Expand Down
Loading

0 comments on commit ecb6076

Please sign in to comment.