Skip to content

Commit 3191e99

Browse files
committed
## [0.0.3](v0.0.2...v0.0.3) (2026-02-23)
### Features - **feed:** replace chip filters with modal-based filter selection ([670ab60](670ab60)) - **ios:** add ITSAppUsesNonExemptEncryption to iOS infoPlist for App Store compliance ([3d99863](3d99863)) - release v0.0.3 with modal-based feed filters and iOS App Store compliance ([fbdc994](fbdc994)) ## [0.0.2](b2fedb7...v0.0.2) (2026-02-23) ### Bug Fixes - normalize line endings in test utility files ([46784b3](46784b3)) - remove unused vars to pass ESLint ([371bba7](371bba7)) - rename API route for Expo Router compatibility ([e921945](e921945)) ### Features - add Alert UI component with design tokens ([f02bd59](f02bd59)) - add date format settings and improve explore screens ([2456590](2456590)) - add Expo Go OAuth support with separate client ID configuration ([3674531](3674531)) - add expo-version-bump and improve header navigation ([40b8370](40b8370)) - add favorites functionality to explore screen ([a42aec2](a42aec2)) - add GitHub OAuth client secret support and auth redirection ([ab4e2e3](ab4e2e3)) - add GitHub URL to app.json and repository to package.json ([8b06059](8b06059)) - add iOS configuration and versionCode to app.json ([25f9e61](25f9e61)) - add OAuth callback route and redirect to feed after login ([6756dff](6756dff)) - add OAuth config and improve type safety in explore screens ([0e8ae38](0e8ae38)) - add useActivity hook, Plan.md, and update gitignore ([b4acdc6](b4acdc6)) - add web OAuth credentials to app.json ([82179f7](82179f7)) - **app.json:** enable new architecture for Android build ([26004b2](26004b2)) - **auth:** enhance GitHub OAuth flow with improved token exchange ([17edcce](17edcce)) - **auth:** enhance OAuth authentication with PKCE and Expo Go validation ([7071b97](7071b97)) - **ChipFilter:** adjust spacing and sizing for more compact layout ([fe66925](fe66925)) - configure expoGo client ID and add prebuild scripts ([54f84f8](54f84f8)) - enhance home screen UI and replace SecureStore with custom storage ([0437282](0437282)) - integrate Expo splash screen and add adaptive Android app icons ([b2fedb7](b2fedb7)) - **oauth:** add Cloudflare Worker for secure web OAuth token exchange ([3b87a9e](3b87a9e)) - **oauth:** add configurable web token exchange URL for web OAuth flow ([f0c155f](f0c155f)) - **oauth:** redirect users based on auth status after OAuth callback ([b4d187d](b4d187d)) - separate native and web OAuth client IDs ([014b29f](014b29f))
1 parent 33e29e6 commit 3191e99

4 files changed

Lines changed: 857 additions & 1 deletion

File tree

.github/workflows/deploy-docs.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: Deploy Documentation
2+
3+
on:
4+
push:
5+
branches: ["main"]
6+
paths:
7+
- "docs/**"
8+
workflow_dispatch:
9+
10+
permissions:
11+
contents: read
12+
pages: write
13+
id-token: write
14+
15+
concurrency:
16+
group: "pages"
17+
cancel-in-progress: false
18+
19+
jobs:
20+
deploy:
21+
environment:
22+
name: github-pages
23+
url: ${{ steps.deployment.outputs.page_url }}
24+
runs-on: ubuntu-latest
25+
steps:
26+
- name: Checkout
27+
uses: actions/checkout@v4
28+
29+
- name: Setup Pages
30+
uses: actions/configure-pages@v5
31+
32+
- name: Upload artifact
33+
uses: actions/upload-pages-artifact@v3
34+
with:
35+
path: "./docs"
36+
37+
- name: Deploy to GitHub Pages
38+
id: deployment
39+
uses: actions/deploy-pages@v4

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
- **feed:** replace chip filters with modal-based filter selection ([670ab60](https://github.com/involvex/awesome-github-app/commit/670ab603be86e9c4b30ec861faeb3023fa8e26bf))
66
- **ios:** add ITSAppUsesNonExemptEncryption to iOS infoPlist for App Store compliance ([3d99863](https://github.com/involvex/awesome-github-app/commit/3d998631fc4120b6300b77e9ac8eb2c3273272d5))
7+
- release v0.0.3 with modal-based feed filters and iOS App Store compliance ([fbdc994](https://github.com/involvex/awesome-github-app/commit/fbdc99432b82ba3bffed67224df6105492aa905b))
78

89
## [0.0.2](https://github.com/involvex/awesome-github-app/compare/b2fedb7ae362f4368cdde7d8c920355d8f4a10ec...v0.0.2) (2026-02-23)
910

0 commit comments

Comments
 (0)