Skip to content

Commit 6464353

Browse files
committed
refactor: simplify explore screen filters and improve search UX
Removed complex filter system and replaced with streamlined approach: - Simplified filter options to essential categories (Web, Mobile, Security, CLI, DevOps) - Improved search query handling with better state management - Enhanced UI with cleaner filter chips and better visual hierarchy - Fixed search behavior to maintain query state across filter changes - Added proper handling for empty search results and loading states
1 parent 44dbeaf commit 6464353

8 files changed

Lines changed: 251 additions & 70 deletions

File tree

.github/workflows/android.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ jobs:
1919
uses: oven-sh/setup-bun@v1
2020
- name: Install dependencies
2121
run: bun install
22+
- name: Extract Latest Changelog
23+
run: |
24+
awk '/^#+ \[?[0-9]/ { if (p) exit; p=1 } p' CHANGELOG.md > latest-release.md
2225
- name: Running expo prebuild
2326
run: npx expo prebuild --platform android --no-install
2427
- name: setup jdk
@@ -37,5 +40,6 @@ jobs:
3740
if: github.ref_type == 'tag'
3841
with:
3942
files: android/app/build/outputs/apk/release/app-release.apk
43+
body_path: latest-release.md
4044
env:
4145
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## [0.0.9](https://github.com/involvex/awesome-github-app/compare/0.0.8...0.0.9) (2026-03-09)
2+
13
## [0.0.8](https://github.com/involvex/awesome-github-app/compare/0.0.7...0.0.8) (2026-03-09)
24

35
## [0.0.7](https://github.com/involvex/awesome-github-app/compare/v0.0.6...0.0.7) (2026-02-28)

android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,8 @@ android {
9292
applicationId 'com.involvex.awesomegithubapp'
9393
minSdkVersion rootProject.ext.minSdkVersion
9494
targetSdkVersion rootProject.ext.targetSdkVersion
95-
versionCode 8
96-
versionName "0.0.8"
95+
versionCode 9
96+
versionName "0.0.9"
9797

9898
buildConfigField "String", "REACT_NATIVE_RELEASE_LEVEL", "\"${findProperty('reactNativeReleaseLevel') ?: 'stable'}\""
9999
}

app.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"name": "awesome-github-app",
44
"slug": "awesome-github-app",
55
"owner": "involvex",
6-
"version": "0.0.8",
6+
"version": "0.0.9",
77
"orientation": "portrait",
88
"userInterfaceStyle": "automatic",
99
"githubUrl": "https://github.com/involvex/awesome-github-app.git",
@@ -27,7 +27,7 @@
2727
"backgroundColor": "#ffffff"
2828
},
2929
"userInterfaceStyle": "automatic",
30-
"versionCode": 8
30+
"versionCode": 9
3131
},
3232
"web": {
3333
"output": "single",
@@ -36,7 +36,7 @@
3636
},
3737
"ios": {
3838
"bundleIdentifier": "com.involvex.awesomegithubapp",
39-
"buildNumber": "8",
39+
"buildNumber": "9",
4040
"infoPlist": {
4141
"ITSAppUsesNonExemptEncryption": false
4242
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "awesome-github-app",
3-
"version": "0.0.8",
3+
"version": "0.0.9",
44
"private": true,
55
"keywords": [
66
"github",

0 commit comments

Comments
 (0)