Skip to content

Commit 3d5d32a

Browse files
authored
Merge branch 'master' into recent-actions
2 parents 1b50341 + c0692eb commit 3d5d32a

File tree

11 files changed

+318
-75
lines changed

11 files changed

+318
-75
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@
3434
**Plugins**:
3535
[RustCast Library for shell scripts](https://github.com/unsecretised/rustcast-library)
3636

37+
> For support use github discussions / issues / the discord
38+
>
39+
> You can also contact unsecretised / secretised at [admin@rustcast.app](mailto:admin+gh@rustcast.app)
40+
3741
![RustCast Demo](./docs/rustcast-latest-demo.png)
3842

3943
## Installation:

docs/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,8 @@ <h1>The <em>fastest</em> launcher<br />you'll ever use</h1>
7575
</a>
7676
</div>
7777
<div class="stats-row">
78-
<div class="stat"><strong>400+</strong> stars</div>
79-
<div class="stat"><strong>1.1k+</strong> downloads</div>
78+
<div class="stat"><strong>500+</strong> stars</div>
79+
<div class="stat"><strong>1.2k+</strong> downloads</div>
8080
<div class="stat"><strong>100%</strong> free forever</div>
8181
<div class="stat"><strong>MIT</strong> license</div>
8282
</div>

src/app.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ pub enum Move {
7272
/// The message type that iced uses for actions that can do something
7373
#[derive(Debug, Clone)]
7474
pub enum Message {
75-
WriteConfig,
75+
WriteConfig(bool),
7676
UpdateAvailable,
7777
ResizeWindow(Id, f32),
7878
OpenWindow,
@@ -93,6 +93,7 @@ pub enum Message {
9393
HideTrayIcon,
9494
SwitchMode(String),
9595
ReloadConfig,
96+
UpdateApps,
9697
SetSender(ExtSender),
9798
SwitchToPage(Page),
9899
ClipboardHistory(ClipBoardContentType),
@@ -122,6 +123,7 @@ pub enum SetConfigFields {
122123

123124
#[derive(Debug, Clone)]
124125
pub enum SetConfigThemeFields {
126+
ShowScrollBar(bool),
125127
TextColor(f32, f32, f32),
126128
BackgroundColor(f32, f32, f32),
127129
ShowIcons(bool),

src/app/pages/emoji.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ pub fn emoji_page(
3232
let mut emoji_row_element = Row::new().spacing(10);
3333
for emoji in emoji_row {
3434
let theme_clone = tile_theme.clone();
35+
36+
// Emoji text
3537
let element_column = Column::new().push(
3638
Text::new(emoji.display_name.clone())
3739
.font(tile_theme.font())
@@ -43,6 +45,8 @@ pub fn emoji_page(
4345
);
4446
let value = tile_theme.clone();
4547
let value_two = tile_theme.clone();
48+
49+
// Emoji icon + Emoji container
4650
emoji_row_element = emoji_row_element.push(tooltip(
4751
container(
4852
Button::new(element_column)

0 commit comments

Comments
 (0)