Conversation
- Fix US MPG calculation: use distance/volume for mpg/mpg_us units (#82) - Allow nullable amount on recurring expenses to fix 500 error (#83) - Fix settings panel navigation in Firefox by passing event param (#85) - Clean up FuelPriceHistory on fuel log deletion (#88, #93) - Remove station dropdown limit in quick fuel entry (#93) - Wrap all dropdown constants with lazy_gettext for i18n (#89) - Bump version to 0.15.0
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
Resolves 6 open bug reports covering calculation errors, 500 errors, broken navigation, stale data, and missing translations.
Bug Fixes
get_consumption()andget_average_consumption()now accept aconsumption_unitparameter — formpg/mpg_ususers, returnsdistance/volumeinstead of(volume/distance)*100RecurringExpense.amountcolumn nullable to match the form UI ("Leave blank if amount varies"). Includes database migration.showSection()JS function that relied on implicitwindow.event(unsupported in Firefox). Now passeseventexplicitly with a selector-based fallback.FuelPriceHistoryentries so the dashboard widget reflects current data..limit(10)from station query to show all stations, matching the full form's behaviour.lazy_gettext()and regenerated translation catalogs for all 14 languages.Other Changes
messages.potfrom repository rootTest plan
Closes #82, #83, #85, #88, #89, #93