-
-
Notifications
You must be signed in to change notification settings - Fork 93
[feature] GSoC25: Improve UX and Flexibility of the Firmware Upgrader Module #377
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
7 commits
Select commit
Hold shift + click to select a range
41cca47
[feature] Real time updates for single upgrade operations #224
youhaveme9 0216900
[tests] Added runtests script, updated docs
nemesifier f069454
[feature:ui] Allow cancelling upgrade operation #208
youhaveme9 a846d0e
[feature] Allow to mass upgrade by device group or location #213 #225
youhaveme9 376c081
[feature:ui] Show upgrade progress for mass upgrade operations in rea…
youhaveme9 540f607
[docs] Updated quick-start docs for gsoc25 features #346
youhaveme9 6f74042
[chores] Misc improvments to real-time updates
nemesifier 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
Some comments aren't visible on the classic Files Changed page.
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,17 +1,6 @@ | ||
| version: "3" | ||
|
|
||
| services: | ||
| redis: | ||
| image: redis:alpine | ||
| ports: | ||
| - "6379:6379" | ||
| entrypoint: redis-server --appendonly yes | ||
|
|
||
| postgres: | ||
| image: postgis/postgis:15-3.4-alpine | ||
| environment: | ||
| POSTGRES_PASSWORD: openwisp2 | ||
| POSTGRES_USER: openwisp2 | ||
| POSTGRES_DB: openwisp2 | ||
| ports: | ||
| - 5432:5432 |
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 |
|---|---|---|
|
|
@@ -8,6 +8,7 @@ Developer Docs | |
|
|
||
| ./installation.rst | ||
| ./extending.rst | ||
| ./utils.rst | ||
|
|
||
| Other useful resources: | ||
|
|
||
|
|
||
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,31 @@ | ||
| Code Utilities | ||
| ============== | ||
|
|
||
| .. include:: ../partials/developer-docs.rst | ||
|
|
||
| .. contents:: **Table of Contents**: | ||
| :depth: 2 | ||
| :local: | ||
|
|
||
| Signals | ||
| ------- | ||
|
|
||
| .. include:: /partials/signals-note.rst | ||
|
|
||
| ``firmware_upgrader_log_updated`` | ||
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
|
|
||
| **Path**: | ||
| ``openwisp_firmware_upgrader.signals.firmware_upgrader_log_updated`` | ||
|
|
||
| **Arguments**: | ||
|
|
||
| - ``sender``: the model class that sent the signal (``UpgradeOperation``) | ||
| - ``instance``: instance of ``UpgradeOperation`` which got its log updated | ||
| - ``line``: the new log line that was appended | ||
| - ``**kwargs``: additional keyword arguments | ||
|
|
||
| This signal is emitted when the log content of an upgrade operation is | ||
| updated. You can use this signal to perform custom actions when log | ||
| updates occur, such as sending notifications, updating external systems, | ||
| or logging to custom destinations. | ||
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.