-
Notifications
You must be signed in to change notification settings - Fork 0
feat: implement comprehensive app theme system with centralized color… #56
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,56 +1,88 @@ | ||
| AntiFeatures: | ||
| NonFreeNet: | ||
| en-US: "The optional AI Coach and Routine Optimizer features send data to Google's | ||
| Gemini API. These features are fully disabled unless the user provides their | ||
| own Gemini API key in Settings → AI Settings." | ||
| Categories: | ||
| - Sports & Health | ||
| License: Apache-2.0 | ||
| AuthorName: Devasy Patel | ||
| SourceCode: https://github.com/Devasy23/RepForge | ||
| IssueTracker: https://github.com/Devasy23/RepForge/issues | ||
| SourceCode: https://github.com/Devasy/RepForge | ||
| IssueTracker: https://github.com/Devasy/RepForge/issues | ||
|
|
||
| AutoName: RepForge | ||
| Summary: Open-source workout logger with AI coaching and progress analytics | ||
| Description: |- | ||
| RepForge is a privacy-first workout logging app that helps you track sets, | ||
| reps, and weights across customizable routines. | ||
|
|
||
| Features: | ||
| * Log workout sessions with sets, reps, and weights | ||
| * Visualise progress with charts (volume, strength curves) | ||
| * AI-powered set recommendations using linear regression | ||
| * Customisable exercise library with 50+ built-in exercises | ||
| * Goal tracking with ML-estimated completion dates | ||
| * Reusable workout routines | ||
| * Health Connect integration for sleep and heart rate readiness scores | ||
| * Optional AI Coach powered by Google Gemini (requires user-supplied API key) | ||
| * Full data export/import for portability | ||
|
|
||
| All workout data is stored locally on-device using Hive. No account required. | ||
| No data is sent to any server unless you enable the optional AI Coach feature. | ||
|
|
||
| RepoType: git | ||
| Repo: https://github.com/Devasy23/RepForge | ||
|
|
||
| AntiFeatures: | ||
| NonFreeNet: | ||
| - description: > | ||
| The optional AI Coach and Routine Optimizer features send data to | ||
| Google's Gemini API (a proprietary cloud service). These features are | ||
| fully disabled unless the user provides their own Gemini API key in | ||
| Settings → AI Settings. The app is fully functional as an offline | ||
| workout logger without configuring a key. | ||
| Repo: https://github.com/Devasy/RepForge | ||
|
|
||
| Builds: | ||
| - versionName: 2.0.1 | ||
| versionCode: 21 | ||
| commit: v2.0.1 | ||
| - versionName: 2.0.5 | ||
| versionCode: 251 | ||
| commit: ed8be2420595337f69cf550aeb4d77cb1ae943ef | ||
| subdir: workout-logger | ||
| output: build/app/outputs/flutter-apk/app-armeabi-v7a-release.apk | ||
| srclibs: | ||
| - flutter@stable | ||
| prebuild: | ||
| - export PUB_CACHE=$(pwd)/.pub-cache | ||
| - 'export FLUTTER_VERSION=$(sed -n -E "s/^ flutter: (.+)/\1/p" pubspec.yaml)' | ||
| - '[[ $FLUTTER_VERSION ]]' | ||
| - git -C $$flutter$$ checkout -f $FLUTTER_VERSION | ||
| - $$flutter$$/bin/flutter config --no-analytics | ||
| - $$flutter$$/bin/flutter pub get --enforce-lockfile | ||
| scandelete: | ||
| - workout-logger/.pub-cache | ||
| build: | ||
| - export PUB_CACHE=$(pwd)/.pub-cache | ||
| - $$flutter$$/bin/flutter build apk --release --split-per-abi --target-platform="android-arm" | ||
|
|
||
| - versionName: 2.0.5 | ||
| versionCode: 252 | ||
| commit: ed8be2420595337f69cf550aeb4d77cb1ae943ef | ||
| subdir: workout-logger | ||
| output: build/app/outputs/flutter-apk/app-arm64-v8a-release.apk | ||
| srclibs: | ||
| - flutter@stable | ||
| prebuild: | ||
| - export PUB_CACHE=$(pwd)/.pub-cache | ||
| - 'export FLUTTER_VERSION=$(sed -n -E "s/^ flutter: (.+)/\1/p" pubspec.yaml)' | ||
| - '[[ $FLUTTER_VERSION ]]' | ||
| - git -C $$flutter$$ checkout -f $FLUTTER_VERSION | ||
| - $$flutter$$/bin/flutter config --no-analytics | ||
| - $$flutter$$/bin/flutter pub get --enforce-lockfile | ||
| scandelete: | ||
| - workout-logger/.pub-cache | ||
| build: | ||
| - export PUB_CACHE=$(pwd)/.pub-cache | ||
| - $$flutter$$/bin/flutter build apk --release --split-per-abi --target-platform="android-arm64" | ||
|
|
||
| - versionName: 2.0.5 | ||
| versionCode: 253 | ||
| commit: ed8be2420595337f69cf550aeb4d77cb1ae943ef | ||
| subdir: workout-logger | ||
| gradle: | ||
| - release | ||
| output: build/app/outputs/flutter-apk/app-x86_64-release.apk | ||
| srclibs: | ||
| - flutter@stable | ||
| prebuild: | ||
| - flutter pub get | ||
| - export PUB_CACHE=$(pwd)/.pub-cache | ||
| - 'export FLUTTER_VERSION=$(sed -n -E "s/^ flutter: (.+)/\1/p" pubspec.yaml)' | ||
| - '[[ $FLUTTER_VERSION ]]' | ||
| - git -C $$flutter$$ checkout -f $FLUTTER_VERSION | ||
| - $$flutter$$/bin/flutter config --no-analytics | ||
| - $$flutter$$/bin/flutter pub get --enforce-lockfile | ||
| scandelete: | ||
| - workout-logger/.pub-cache | ||
| build: | ||
| - flutter build apk --release --split-per-abi | ||
| - export PUB_CACHE=$(pwd)/.pub-cache | ||
| - $$flutter$$/bin/flutter build apk --release --split-per-abi --target-platform="android-x64" | ||
|
|
||
| AutoUpdateMode: Version v%v | ||
| UpdateCheckMode: Tags | ||
| UpdateCheckData: workout-logger/pubspec.yaml|^version:\s+([\d.]+)\+|.| | ||
| CurrentVersion: 2.0.1 | ||
| CurrentVersionCode: 21 | ||
| AutoUpdateMode: Version | ||
| UpdateCheckMode: Tags ^v[\d.]+$ | ||
| VercodeOperation: | ||
| - 10 * %c + 1 | ||
| - 10 * %c + 2 | ||
| - 10 * %c + 3 | ||
| UpdateCheckData: | ||
| workout-logger/pubspec.yaml|version:\s.*\+(\d+)|workout-logger/pubspec.yaml|version:\s([\d.]+)\+ | ||
| CurrentVersion: 2.0.5 | ||
| CurrentVersionCode: 253 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| ## graphify | ||
|
|
||
| This project has a knowledge graph at graphify-out/ with god nodes, community structure, and cross-file relationships. | ||
|
|
||
| Rules: | ||
| - ALWAYS read graphify-out/GRAPH_REPORT.md before reading any source files, running grep/glob searches, or answering codebase questions. The graph is your primary map of the codebase. | ||
| - IF graphify-out/wiki/index.md EXISTS, navigate it instead of reading raw files | ||
| - For cross-module "how does X relate to Y" questions, prefer `graphify query "<question>"`, `graphify path "<A>" "<B>"`, or `graphify explain "<concept>"` over grep — these traverse the graph's EXTRACTED + INFERRED edges instead of scanning files | ||
| - After modifying code, run `graphify update .` to keep the graph current (AST-only, no API cost). | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.