cd8c6b33bf
Merge branch 'develop' into feat/networkmanager
2024-05-27 13:04:40 +02:00
41bdecf210
Merge branch 'develop' into feat/volume-icon
2024-05-27 13:02:34 +02:00
b14fe5a1b8
Merge branch 'master' into develop
2024-05-27 12:54:35 +02:00
a47ef0c763
Merge pull request #608 from JakeStanger/docs/fixes
...
Documentation fixes
2024-05-23 22:03:08 +01:00
057fdffc5f
docs(examples): fix incorrect cpu sensor name
...
Resolves #607
2024-05-23 21:59:50 +01:00
9db0cbcbdc
docs(upower): fix incorrect css selectors
...
Resolves #593
2024-05-23 21:59:04 +01:00
7d191065fc
docs: add notes about nerd fonts
...
Resolves #558
2024-05-23 21:58:07 +01:00
63ca68988f
Merge pull request #597 from JakeStanger/docs/modules
...
docs: add rustdoc comments to all module options
2024-05-23 21:52:10 +01:00
c7743b28c6
docs: add rustdoc comments to all module options
...
This part of an upcoming effort to generate documentation from code.
Pushing this out before that stage so that the JSON schema is fully documented.
2024-05-23 21:46:33 +01:00
b0d3bfd6d9
Merge pull request #605 from JakeStanger/fix/launcher-favourites
...
fix(launcher): favourites staying focused when closed in hyprland
2024-05-22 09:59:40 +01:00
9a39420ae2
fix(launcher): favourites staying focused when closed in hyprland
...
Fixes #603
2024-05-21 19:27:23 +01:00
fd58ce771d
Merge pull request #602 from JakeStanger/dependabot/cargo/serde-1.0.202
...
build(deps): bump serde from 1.0.201 to 1.0.202
2024-05-21 14:28:51 +01:00
d8d963e55e
Merge pull request #601 from JakeStanger/dependabot/cargo/mlua-0.9.8
...
build(deps): bump mlua from 0.9.7 to 0.9.8
2024-05-21 14:28:23 +01:00
dependabot[bot]
af44d297f0
build(deps): bump serde from 1.0.201 to 1.0.202
...
Bumps [serde](https://github.com/serde-rs/serde ) from 1.0.201 to 1.0.202.
- [Release notes](https://github.com/serde-rs/serde/releases )
- [Commits](https://github.com/serde-rs/serde/compare/v1.0.201...v1.0.202 )
---
updated-dependencies:
- dependency-name: serde
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
2024-05-20 14:14:20 +00:00
dependabot[bot]
e1efcd20b5
build(deps): bump mlua from 0.9.7 to 0.9.8
...
Bumps [mlua](https://github.com/khvzak/mlua ) from 0.9.7 to 0.9.8.
- [Release notes](https://github.com/khvzak/mlua/releases )
- [Changelog](https://github.com/mlua-rs/mlua/blob/master/CHANGELOG.md )
- [Commits](https://github.com/khvzak/mlua/compare/v0.9.7...v0.9.8 )
---
updated-dependencies:
- dependency-name: mlua
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
2024-05-20 14:13:55 +00:00
SerraPi
4ad4b0e070
fix(ipc): regression - reload not working due to #592
...
let index = match index {
Some(index) => index - 1,
None => {
lock!(map).push(monitor_name.clone());
lock!(map).len() - 1
}
};
//This causes index to underflow
//Expected Output is something like 0, 1, etc
//But sometimes we go back around to 18446744073709551615
//Removing the -1 here seems to work ok with multi monitor, and reload is not broken anymore
Some(index) => index,
2024-05-19 22:35:52 +01:00
3b6480f3f2
Merge pull request #596 from JakeStanger/build/nix
...
refactor: update `nix` crate to latest version
2024-05-18 22:08:12 +01:00
f7f991b2e6
docs(compiling): fix wrong fedora package for pulse libs
2024-05-18 22:04:16 +01:00
c876904bda
refactor: update nix
crate to latest version
...
Fixes #573
2024-05-18 21:58:32 +01:00
da94923f73
Replace text with icons in volume module
2024-05-18 20:11:43 +02:00
47e3e0f9b2
Merge pull request #592 from JakeStanger/fix/bar-positions
...
fix: all bars showing on same display due to GTK bug
2024-05-18 01:28:19 +01:00
520a94abfa
fix: all bars showing on same display due to GTK bug
...
This is a nasty hack, which will hopefully only be temporary.
See https://github.com/swaywm/sway/issues/8164 for details
2024-05-18 01:25:14 +01:00
c641b368a5
Merge pull request #591 from JakeStanger/fix/launcher-reload
...
fix(launcher): ghost windows in reload
2024-05-15 20:04:16 +01:00
4a37429634
fix(launcher): ghost windows in reload
...
Fixes #585
2024-05-15 19:54:55 +01:00
00df5aa79e
Add GTK Box import alias, change DBus strings to const
2024-05-14 19:11:24 +02:00
17e830afbf
Revert "Add GTK Box import alias, change DBus strings to const"
...
This reverts commit 33f73eefa0
.
2024-05-14 19:05:19 +02:00
33f73eefa0
Add GTK Box import alias, change DBus strings to const
2024-05-14 19:02:16 +02:00
407d58606d
Merge pull request #590 from JakeStanger/dependabot/cargo/serde-1.0.201
...
build(deps): bump serde from 1.0.200 to 1.0.201
2024-05-14 09:48:39 +01:00
5eda63c182
Merge pull request #588 from JakeStanger/dependabot/cargo/serde_json-1.0.117
...
build(deps): bump serde_json from 1.0.116 to 1.0.117
2024-05-14 09:42:32 +01:00
dependabot[bot]
b62bdcb03e
build(deps): bump serde from 1.0.200 to 1.0.201
...
Bumps [serde](https://github.com/serde-rs/serde ) from 1.0.200 to 1.0.201.
- [Release notes](https://github.com/serde-rs/serde/releases )
- [Commits](https://github.com/serde-rs/serde/compare/v1.0.200...v1.0.201 )
---
updated-dependencies:
- dependency-name: serde
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
2024-05-13 14:33:05 +00:00
dependabot[bot]
ec78d7fffe
build(deps): bump serde_json from 1.0.116 to 1.0.117
...
Bumps [serde_json](https://github.com/serde-rs/json ) from 1.0.116 to 1.0.117.
- [Release notes](https://github.com/serde-rs/json/releases )
- [Commits](https://github.com/serde-rs/json/compare/v1.0.116...v1.0.117 )
---
updated-dependencies:
- dependency-name: serde_json
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
2024-05-13 14:32:19 +00:00
04a694e2ad
refactor: fix latest clippy warnings
2024-05-11 20:56:18 +01:00
f78a062f3a
Merge pull request #586 from JakeStanger/feat/label-markup
...
Add pango markup support to remaining locations
2024-05-11 20:47:44 +01:00
951576ce3c
feat: pango markup support in image icons
2024-05-11 20:44:20 +01:00
f11da3eca1
feat(music): pango markup support
2024-05-11 20:44:03 +01:00
386955c1ea
Merge pull request #578 from JakeStanger/fix/sway-workspaces
...
fix(workspaces): regression due to #572
2024-05-09 17:38:43 +01:00
c45ea02a7d
fix(workspaces): regression due to #572
...
Fixes #574
2024-05-09 17:25:08 +01:00
4695279d69
Merge pull request #572 from JakeStanger/fix/workspace-rename
...
fix(workspaces): add support for hyprland rename event
2024-05-07 09:54:37 +01:00
c6aff14135
chore: bump version to 0.16.0-pre
2024-05-07 09:53:43 +01:00
5e7f576841
fix(workspaces): add support for hyprland rename event
...
Renaming workspaces on Hyprland will now work as expected.
This also refactors the workspace code to depend on IDs rather than
names which should make it more robust against the same sort of issue
in future.
Fixes #469
2024-05-07 09:42:55 +01:00
54083884cd
Merge pull request #571 from JakeStanger/dependabot/cargo/serde-1.0.200
...
build(deps): bump serde from 1.0.199 to 1.0.200
2024-05-06 17:03:29 +01:00
dependabot[bot]
02ace93617
build(deps): bump serde from 1.0.199 to 1.0.200
...
Bumps [serde](https://github.com/serde-rs/serde ) from 1.0.199 to 1.0.200.
- [Release notes](https://github.com/serde-rs/serde/releases )
- [Commits](https://github.com/serde-rs/serde/compare/v1.0.199...v1.0.200 )
---
updated-dependencies:
- dependency-name: serde
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
2024-05-06 15:55:54 +00:00
8cb7655af1
chore: remove unused num-traits dep
2024-05-06 16:54:07 +01:00
c08441eff4
chore(readme): add note for v.0.15.1
2024-05-05 12:31:36 +01:00
JakeStanger
c25440cd32
docs: update CHANGELOG.md for v0.15.1 [skip ci]
2024-05-05 11:29:44 +00:00
3a1c604423
chore(release): v0.15.1
2024-05-05 12:27:31 +01:00
3a947d1e14
chore: remove println
2024-05-04 17:14:39 +01:00
d5e493ec8d
chore: regen lockfile
...
Resolves #569
2024-05-04 15:00:42 +01:00
Nadia
f7a39ddecc
build: update hyprland-rs to 0.4.0-alpha.1
...
(#565 )
this does have some breaking changes in it so it could have other
side effects.
2024-05-03 21:39:09 +01:00
78fcd44c1a
chore: bump version to 0.15.1-pre
2024-05-03 21:38:07 +01:00