Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Oops, forgot to have the link automatically open the web browser. | Ken Moore | 2015-08-28 |
| | |||
* | Update lumina-info with a link to the website and the PC-BSD bug tracker. | Ken Moore | 2015-08-28 |
| | |||
* | Another minor increase in speed from the dir loader: only processEvents ↵ | Ken Moore | 2015-08-28 |
| | | | | every 20 items, but be sure to processEvents after clearing the widget before the item loop is started (to ensure it is blanked out right away). | ||
* | Make the processEvents() call only happen every 10 items loaded - this makes ↵ | Ken Moore | 2015-08-28 |
| | | | | the directory loading routine almost an entire order of magnitude faster. | ||
* | Merge branch 'master' of github.com:pcbsd/lumina | Ken Moore | 2015-08-28 |
|\ | |||
| * | Split RPM .spec file into 32-bit and 64-bit versions for easier mantainence. | Jesse Smith | 2015-08-28 |
| | | | | | | | | Also updated.spec files with additional dependencies and cleaner syntax. | ||
* | | Add a couple tiny timing fixes for the lumina-fm backend: | Ken Moore | 2015-08-28 |
| | | | | | | | | | | 1) Rollback the directory checked timestamp by 1/2 second from teh current time when doing a sync (just in case multiple fast changes to the dir). 2) Activate the dir watcher on all the files as well (not just the dir), and send all those signals into a collection timer with a 1/10 second delay to combine any simultaneous signals/changes into a single update call. | ||
* | | Remove the LFileInfo class from lumina-fm (in LuminaXDG instead) | Ken Moore | 2015-08-28 |
| | | |||
* | | Move the LFileInfo class into libLumina/LuminaXDG - this is very useful for ↵ | Ken Moore | 2015-08-28 |
|/ | | | | files that may/may not be XDG desktop files (prevent re-reading files by trying to juggle two different data structures). | ||
* | Fix up the re-loading of the scrollbar location on directory update. | Ken Moore | 2015-08-28 |
| | |||
* | Put a few more "stopload" checks into the dir loading routine (after all the ↵ | Ken Moore | 2015-08-28 |
| | | | | items are already loaded - when doing the info updating). | ||
* | A couple other minor (not-noticable) changes to lumina-fm. | Ken Moore | 2015-08-28 |
| | |||
* | Another small update for lumina-fm: when re-loading a directory (or ↵ | Ken Moore | 2015-08-28 |
| | | | | switching between snapshots of the same directory), re-use the existing items whenever possible. This prevents "flickering" for fast reloads and preserves the users current selection and scroll location. | ||
* | Add a new "ScrollDialog" to lumina-fm for instances where a lot of text ↵ | Ken Moore | 2015-08-27 |
| | | | | might be getting shown to the user. Use this dialog for checksums as well. | ||
* | Get drag and drop functionality completely working (Internal only - will not ↵ | Ken Moore | 2015-08-27 |
| | | | | talk to other applications) | ||
* | Re-enable the directory statistics output for lumina-fm. | Ken Moore | 2015-08-27 |
| | |||
* | Ensure that the current directory loading is stopped when starting to load a ↵ | Ken Moore | 2015-08-27 |
| | | | | new directory. | ||
* | Fix the mimetype display for directories in lumina-fileinfo. | Ken Moore | 2015-08-26 |
| | |||
* | Add support for the "New [File/Dir]" buttons back into lumina-fm. | Ken Moore | 2015-08-26 |
| | |||
* | Clean up some of the new widgets/functionality: | Ken Moore | 2015-08-26 |
| | | | | | | | 1) Fix a layout issue with the DirWidget 2) Fix the GoToNext functionality in the multimedia player 3) Ensure the multimedia player is stopped if the tab is closed 4) Clean up some dead space in the DirWidget | ||
* | Commit a major overhaul of lumina-fm: PLEASE TEST!! | Ken Moore | 2015-08-25 |
| | | | | | | | | | | | | | | | | | 1) Seemlessly embed the ZFS rollback options into the main dir browser (simple time slider at the top). 2) Take all the main widgets and put them into separate classes/files (widgets/*) 3) Add support for both tabs and columns for multiple directory viewing 4) Remove the "icon" view mode, and replace it with an icon sizing option (larger/smaller) 5) Add the ability for the multimedia player and slideshow viewer to be running within separate tabs while still browsing the system (new files will be added to the queue instead of replacing it) 6) Ensure that only selected files are added to the player/slideshow on demand. 7) Add the ability to zoom in/out on a slideshow image. KNOWN ISSUES: 1) The new file/dir functionality has not been replaced/re-implemented yet. 2) The drag and drop functionality has been removed until a new implementation is put in. PLEASE TEST: ZFS snapshot use, multimedia file player, browsing and other UI changes | ||
* | Disable the "size" output of a directory in lumina-fm: this needs some ↵ | Ken Moore | 2015-08-25 |
| | | | | better coding to recusively add up the sizes of all the files within it. | ||
* | Copy the old MainUI class over as an emergency backup in preparation for ↵ | Ken Moore | 2015-08-21 |
| | | | | tying all the new UI/widgets in. | ||
* | Adjust the "desktop icons" checkbox in lumina-config to make it a bit easier ↵ | Ken Moore | 2015-08-21 |
| | | | | to understand what it does. | ||
* | Add an additional level of locking to the single-application framework: The ↵ | Ken Moore | 2015-08-21 |
| | | | | X11 Screen number. This ensure that the same app on a different X screen does not stop the app from opening on the current screen as well. | ||
* | Add a bit more text output for the single instance framework. This makes it ↵ | Ken Moore | 2015-08-21 |
| | | | | really clear what is happening if anything *does* go wrong. | ||
* | Another quick fix to the single-instance framework - add a manual existance ↵ | Ken Moore | 2015-08-21 |
| | | | | check to teh lock file. | ||
* | Update the single-application framework a big so that networking limitations ↵ | Ken Moore | 2015-08-21 |
| | | | | simple result in a fallback on standard QApplication usage (no single-instance available). | ||
* | Oops, make sure that applauncher/desktop icon check is run before deleting ↵ | Ken Moore | 2015-08-20 |
| | | | | the desktop file (just in case the user simply unchecked the icon generation option). | ||
* | Add an additional option to desktop plugins where additional cleanup ↵ | Ken Moore | 2015-08-20 |
| | | | | routines may be added (only used for some applaunchers right now). This now makes a desktop icon which was explicitly closed/removed by the user also delete the file from the desktop folder (instead of having that plugin get re-created at a later time) | ||
* | Another checkpoint in the lumina-fm backend overhaul - still not tied into ↵ | Ken Moore | 2015-08-20 |
| | | | | the general build/use yet. | ||
* | Fix a bug in the color dialog title, it can be used for more than just ↵ | Ken Moore | 2015-08-20 |
| | | | | panels now. | ||
* | Commit some more work-in-progress on the new lumina-fm backend. | Ken Moore | 2015-08-20 |
| | |||
* | Clean up a couple new bugs in the userbutton: | Ken Moore | 2015-08-20 |
| | | | | | 1) Fix which icons are loaded for files (mimetypes) 2) If an application shortcut is invalid (the app was removed but the shortcut remains), don't show it on the favorites tab | ||
* | Add a function to convert a number of bytes into a display string (3 digits) | Ken Moore | 2015-08-19 |
| | |||
* | Add the XDG_DATA_* path support for relative application paths given in the ↵ | Ken Moore | 2015-08-19 |
| | | | | mime database. | ||
* | Update the overall lumina project file to support multi-thread builds properly | Ken Moore | 2015-08-19 |
| | |||
* | New batch of Artwork: some SVG banner files as well 100x100 "button" icons ↵ | Ken Moore | 2015-08-19 |
| | | | | and JPG horizontal banners as well. A big thank you to Jennifer Rosenburg for putting these together! | ||
* | Update the arrangement of the available time zones in the clock plugin. Now ↵ | Ken Moore | 2015-08-18 |
| | | | | it is organized by: Continent -> Country -> City | ||
* | Add new artwork: 4K resolution versions of the Lumina wallpapers. | Ken Moore | 2015-08-18 |
| | |||
* | Completely overhaul the Clock plugin for the panel: | Ken Moore | 2015-08-18 |
| | | | | | | 1) It is now a QToolButton, and resizes to fit the text better now. 2) It now has a menu that appears when clicked on - showing a calendar and a list of possible time zones. 3) Use the new environment setting routine in LTHEME to change the time zone for the user when asked (this changes it not just for the desktop session, but instantly changes it for any app using the Lumina Theme Engine as well (others will need to be restarted to see the change). | ||
* | Update the lumina theme engine/class so that custom environment variables ↵ | Ken Moore | 2015-08-18 |
| | | | | may be set/loaded for all apps using the theme engine (including the session - which propagates to new non-lumina applications as well) | ||
* | Merge branch 'master' of github.com:pcbsd/lumina | Ken Moore | 2015-08-17 |
|\ | |||
| * | Merge pull request #147 from mneumann/dragonfly | Ken Moore | 2015-08-17 |
| |\ | | | | | | | Bring in changes for Dragonfly BSD | ||
| | * | DragonFly: Sync MemoryUsagePercent() with FreeBSD | Michael Neumann | 2015-08-16 |
| | | | |||
| | * | Implement CPUTemperatures() for DragonFly | Michael Neumann | 2015-08-16 |
| | | | |||
| | * | DragonFly: Sync LOS::Checksums() with FreeBSD | Michael Neumann | 2015-08-16 |
| | | | |||
| | * | Implement Battery hooks for DragonFly | Michael Neumann | 2015-08-16 |
| | | | |||
| | * | DragonFly does not have graphical mixer | Michael Neumann | 2015-08-16 |
| | | | |||
| | * | DragonFly: Sync get/set audio volume with FreeBSD | Michael Neumann | 2015-08-16 |
| | | |