Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
50 most recent check-ins
2024-10-18
| ||
12:50 | All DownloadWorker instances share a single WorkerSignals instance in an attempt to optimize for performance. Also refactor task cancellation Leaf check-in: 3bd728e0b4 user: thomas tags: shared_signal_container | |
2023-11-18
| ||
13:06 | Port to PySide6. Release as version 0.5.0. Leaf check-in: 29fa38a55c user: thomas tags: release, trunk, v0.5.0 | |
13:04 | Updated README. Leaf check-in: f9e62b8fd2 user: thomas tags: port_pyside6 | |
13:01 | Avoid a segmentation fault in test_map_filter_model.py pytest fixture. The filter model has to be detached in teardown code. Otherwise the garbage collector deletes the source while the filter model still holds a reference, causing a crash. Also simplify other pytest fixtures. check-in: 1c4ac8eaae user: thomas tags: port_pyside6 | |
12:54 | Merge with trunk. check-in: f938a4945b user: thomas tags: port_pyside6 | |
2023-09-02
| ||
19:42 | Release v0.4.0 check-in: e7f1b2ea52 user: thomas tags: release, trunk, v0.4.0 | |
19:41 | Redesigned Ui loading to be in line with my other, more recent projects. Packaging is now performed via a script, obsoleting setup.py. For packaging, the UI files are compiled to importable Python modules, which are then imported. Split the base classes and Ui classes. I.e. those are no longer combined via multiple inheritance. check-in: 7bf9ef3380 user: thomas tags: trunk | |
18:40 | Dependencies: Replace the deprecated appdirs with platformdirs. check-in: c42dab3399 user: thomas tags: trunk | |
18:38 | Update the MeteredSeekableHTTPFile to the newest, tested version. check-in: badb185a59 user: thomas tags: trunk | |
18:21 | Update copyright notices. check-in: 9d03b4ea80 user: thomas tags: trunk | |
18:02 | OnlineMapListModel: Completely replace if/elif construct in data() with lambdas in nested dicts. check-in: 130a4259df user: thomas tags: trunk | |
16:22 | OnlineMapListModel: Further simplify setData(). check-in: 99120a83c6 user: thomas tags: trunk | |
16:12 | OnlineMapListModel: Use the proper Qt Enum classes, instead of the plain Qt namespace. check-in: 62bdfca24f user: thomas tags: trunk | |
16:07 | Optimize the OnlineMapListModel data getters and setter. The download enable/disable column no longer updates the view's DisplayRole with None value, which costed > 99% of the time spent in setData(). With this change, enabling/disabling map downloads is instant. check-in: fc2bba6a37 user: thomas tags: trunk | |
2023-04-24
| ||
09:09 | Simplified and improved model code in the OnlineMapsModel. check-in: 9b743ef6e1 user: thomas tags: port_pyside6 | |
09:08 | Fixed selection of maps for download. check-in: 8c245f96dd user: thomas tags: port_pyside6 | |
08:48 | Continue porting to scoped enums. Fixed an AttributeError introduced in the last checkin. check-in: 9728363dd1 user: thomas tags: port_pyside6 | |
08:34 | Port Flag usage to PySide6 scoped flags. check-in: a345fc6fb8 user: thomas tags: port_pyside6 | |
2023-04-20
| ||
20:28 | Moved the UI into separate ui attributes, instead of using multiple inheritance. This is more in line with typical use. check-in: 7ff821cb3d user: thomas tags: port_pyside6 | |
20:18 | Port flags to the new scoped enums used in PySide 6.4+ check-in: 6234464247 user: thomas tags: port_pyside6 | |
20:08 | Removed code referencing the Qt resource compiler in osmdownload.ui.common check-in: 2691eead57 user: thomas tags: port_pyside6 | |
20:01 | UI files are now compiled into Python modules at package build time. The package build via tox automatically compiles the UI before wheel creation. Using the Qt resource compiler is no longer needed. check-in: 9116454609 user: thomas tags: port_pyside6 | |
18:50 | Updated copyright notices check-in: ca4f1a2253 user: thomas tags: port_pyside6 | |
18:46 | Replaced PyQt5 with PySide6. The application can start without crashing. check-in: 7ff6a6237a user: thomas tags: port_pyside6 | |
15:13 | Ported project metadata to pyproject.toml check-in: ab79e27140 user: thomas tags: trunk | |
14:20 | Use the venv module instead of virtualenv to create the virtual environment for development check-in: 602e8b7e91 user: thomas tags: trunk | |
2022-02-10
| ||
20:30 | Fixed typo in variable name in class MapFilterModel. check-in: 540d03494c user: thomas tags: trunk | |
20:28 | Fixed style issues in online_maps.py check-in: 0f0c113cf1 user: thomas tags: trunk | |
2022-02-09
| ||
22:51 | Release v0.3.3 check-in: 4572138d42 user: thomas tags: release, trunk, v0.3.3 | |
22:43 | Another attempt at fixing the recent map update filter. check-in: f54256e8ec user: thomas tags: trunk | |
22:42 | Configure the logger system when setting up unit tests runs. check-in: 700bdd8b8c user: thomas tags: trunk | |
19:45 | Map download: Update the map size estimate given in the map list with the accurate size when the download starts. check-in: 129a67d48c user: thomas tags: trunk | |
19:38 | Implemented setting the download size in the OnlineMapListModel. Also renamed the Column enum constant from SizeMiB to SizeBytes to reflect the change done in [9d3b3650d0b45a4e]. check-in: eec453fc00 user: thomas tags: trunk | |
19:26 | Store the map download size in bytes instead of MiB. Change type from float to int. check-in: 9d3b3650d0 user: thomas tags: trunk | |
19:25 | Map view: Hide the download progress column after re-setting the map list model. check-in: a2bd36e121 user: thomas tags: trunk | |
18:31 | The map download batch selection buttons now only work on visible items. check-in: 11fa746a8b user: thomas tags: release, trunk, v0.3.2 | |
14:08 | Fixed invalid entry in MANIFEST.in check-in: 883e6b50f6 user: thomas tags: trunk | |
14:05 | Fixed broken methods OnlineMapListModel.deselect_all_maps() and OnlineMapListModel.select_all_available_updates(). The buttons on the download selection page work again. check-in: de4a63ba68 user: thomas tags: trunk | |
13:33 | Fixed bug [37415419f409598f]. (De-) selecting map downloads when map filtering is active now works as expected.. check-in: f3b003740a user: thomas tags: trunk | |
12:46 | Extracted a re-usable pytext fixture into the new conftest.py test module. Also added a test that verifies the index translation from the MapFilterModel to the source model. check-in: 72f050ee3d user: thomas tags: trunk | |
2022-02-08
| ||
21:28 | Release v0.3.1 check-in: c792822949 user: thomas tags: release, trunk, v0.3.1 | |
21:27 | Fixed issue with filtering for recent updates. This feature has to take the current date into account to determine if an updated map is worth downloading. Added tests for the fixed logic and corrected some test case names. check-in: 7f5c10c1c5 user: thomas tags: trunk | |
20:32 | Release v0.3.0 check-in: e883fe2add user: thomas tags: release, trunk, v0.3.0 | |
20:30 | Implemented toggling the download enable flag by simply clicking the map overview table cells. Implements [02898de999415f6b]. check-in: a6b2ade652 user: thomas tags: trunk | |
19:50 | Set the timestamps of extracted map files to the timestamps in the ZIP archive. Implements [98bb3ebb3273a541] check-in: 705fe4bbb2 user: thomas tags: trunk | |
19:49 | Cleaned imports check-in: bdb708d337 user: thomas tags: trunk | |
19:20 | Reworked how background downloads are handled. check-in: 4f01b384e0 user: thomas tags: trunk | |
19:18 | Increased socket timeout from 5 to 10 seconds. Closed-Leaf check-in: 4be0c8257a user: thomas tags: QThreadPool_background_download | |
19:02 | Sync with trunk. check-in: 6dff807d2d user: thomas tags: QThreadPool_background_download | |
18:58 | Implemented better filtering in the map list view that improves the selecion of map downloads. Implements [c11ed2ea53142d63]. check-in: 73533a689c user: thomas tags: trunk | |