Skip to content
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

Release v0.17.x into develop #12776

Merged
merged 6 commits into from
Oct 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,30 @@

List of the most important changes for each release.

## 0.17.3

### Changed
- Improve learn folder contents display by @rtibbles in https://github.com/learningequality/kolibri/pull/12737
- Update KDS theme token by @AllanOXDi in https://github.com/learningequality/kolibri/pull/12742
- Final token updates by @marcellamaki in https://github.com/learningequality/kolibri/pull/12754

### Added
- Add Fulfulde translations by @radinamatic in https://github.com/learningequality/kolibri/pull/12738
- Update morango for conditional indexes on store to improve deserialization performance. by @rtibbles in https://github.com/learningequality/kolibri/pull/12747

### Fixed
- Settings is not correct after tzlocal update by @jredrejo in https://github.com/learningequality/kolibri/pull/12683
- Add missing `indeterminate` states on Select All checkboxes by @nucleogenesis in https://github.com/learningequality/kolibri/pull/12587
- Fix import channel in Postgresql by @jredrejo in https://github.com/learningequality/kolibri/pull/12709
- Branding tweaks by @rtibbles in https://github.com/learningequality/kolibri/pull/12736
- Tweaks to CLI and message extraction utility function by @rtibbles in https://github.com/learningequality/kolibri/pull/12320
- Delete resource from everywhere when force_delete is selected by @thesujai in https://github.com/learningequality/kolibri/pull/12680
- Dont delete the entire channel when deleting a single content by @thesujai in https://github.com/learningequality/kolibri/pull/12740
- Prevent access to undefined AttemptLogs while looking at reports by @LianaHarris360 in https://github.com/learningequality/kolibri/pull/12723
- Update StorageNotification.vue to prevent undefined access if device plugin is disabled by @rtibbles in https://github.com/learningequality/kolibri/pull/12724
- Update favicon to be available when the default theme is disabled by @marcellamaki in https://github.com/learningequality/kolibri/pull/12760
- Fix on my own merge account KCheckbox issue by @AlexVelezLl in https://github.com/learningequality/kolibri/pull/12761

## 0.17.2

### Changed
Expand Down
4 changes: 3 additions & 1 deletion kolibri/core/templatetags/core_tags.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,9 @@ def theme_favicon():

# Choose the first available .ico file. It's unlikely there's more than
# one specified in the theme.
favicon_url = favicon_urls[0] if favicon_urls else static("assets/logo.ico")
favicon_url = (
favicon_urls[0] if favicon_urls else static("assets/favicons/logo.ico")
)

return format_html('<link rel="shortcut icon" href="{}">', favicon_url)

Expand Down
2 changes: 1 addition & 1 deletion kolibri/plugins/default_theme/kolibri_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def theme(self):
},
"logos": [
{
"src": static("assets/default_theme/logo.ico"),
"src": static("assets/favicons/logo.ico"),
"content_type": "image/vnd.microsoft.icon",
"size": "32x32",
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<KCheckbox
ref="kCheckbox"
:label="$tr('consequences')"
:checked="false"
:checked="isConfirmed"
@change="isConfirmed = !isConfirmed"
@keydown.enter="handleContinue"
/>
Expand Down
Loading