-
-
Notifications
You must be signed in to change notification settings - Fork 416
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
19 changed files
with
227 additions
and
33 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains 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 @@ | ||
custom: ['https://github.com/canton7/synctrayzor/blob/develop/DONATING.md#donating'] |
This file contains 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 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,38 @@ | ||
Donating | ||
======== | ||
|
||
Syncthing and SyncTrayzor are free software, and you don't need to pay a penny to use them. | ||
However, if you find them useful, please consider giving a small amount to one of the causes below. | ||
|
||
Syncthing | ||
--------- | ||
|
||
SyncTrayzor is just the wrapper around [Syncthing](https://syncthing.net), which makes it look and behave like a native Windows application. | ||
The heavy lifting is being done by Syncthing. | ||
|
||
While development is done for free by a fantastic team, running the infrastructure which lets your devices find and talk to each other costs money, as does hosting things like the [website](https://syncthing.net) and [forum](https://forum.syncthing.net). | ||
If you make use of these, I kindly ask that you consider sending a small amount towards funding Syncthing's running costs and future development. | ||
Donations are handled by the Syncthing Foundation, whose accounts are public. | ||
|
||
[Donate to Syncthing](https://syncthing.net/donations/). | ||
|
||
|
||
SyncTrayzor Charity Fundraiser | ||
------------------------------ | ||
|
||
I've put a lot of my free time into writing and maintaining SyncTrayzor. | ||
If you use it and appreciate it, I'd be very grateful if you could show your thanks by | ||
donating a small amount (the price of a beer) to charity. | ||
|
||
I've been running charity fundraisers for many years, and very kind people from all over the world have helped raise thousands for people who really need it, which is absolutely amazing. | ||
|
||
Please consider [donating to the current appeal](https://synctrayzor.antonymale.co.uk/fundraiser). | ||
|
||
|
||
Buy me a beer | ||
------------- | ||
|
||
If you want to buy me a coffee (or beer!), you'll absolutely make my day. | ||
Thank you! | ||
|
||
I'm on [Ko-fi](https://ko-fi.com/canton7) or [PayPal](https://www.paypal.com/donate?hosted_button_id=92FADFBYS42MU). |
This file contains 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 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 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 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 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 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 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
21 changes: 21 additions & 0 deletions
21
src/SyncTrayzor/Pages/BarAlerts/IntelXeGraphicsAlertView.xaml
This file contains 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,21 @@ | ||
<UserControl x:Class="SyncTrayzor.Pages.BarAlerts.IntelXeGraphicsAlertView" | ||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" | ||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" | ||
xmlns:s="https://github.com/canton7/Stylet" | ||
xmlns:l="clr-namespace:SyncTrayzor.Localization" | ||
xmlns:local="clr-namespace:SyncTrayzor.Pages.BarAlerts" | ||
mc:Ignorable="d" | ||
d:DesignHeight="450" d:DesignWidth="800" | ||
d:DataContext="{d:DesignInstance local:IntelXeGraphicsAlertViewModel}"> | ||
<StackPanel> | ||
<TextBlock TextWrapping="Wrap" | ||
Text="{l:Loc BarAlertsView_IntelXeGraphics_AlertText}"/> | ||
<TextBlock> | ||
<Hyperlink Command="{s:Action Dismiss}"> | ||
<TextBlock Text="{l:Loc BarAlertsView_IntelXeGraphics_DismissLink}"/> | ||
</Hyperlink> | ||
</TextBlock> | ||
</StackPanel> | ||
</UserControl> |
22 changes: 22 additions & 0 deletions
22
src/SyncTrayzor/Pages/BarAlerts/IntelXeGraphicsAlertViewModel.cs
This file contains 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,22 @@ | ||
using Stylet; | ||
using SyncTrayzor.Services.Config; | ||
|
||
namespace SyncTrayzor.Pages.BarAlerts | ||
{ | ||
public class IntelXeGraphicsAlertViewModel : Screen, IBarAlert | ||
{ | ||
private readonly IConfigurationProvider configurationProvider; | ||
|
||
public AlertSeverity Severity => AlertSeverity.Info; | ||
|
||
public IntelXeGraphicsAlertViewModel(IConfigurationProvider configurationProvider) | ||
{ | ||
this.configurationProvider = configurationProvider; | ||
} | ||
|
||
public void Dismiss() | ||
{ | ||
this.configurationProvider.AtomicLoadAndSave(config => config.HideIntelXeWarningMessage = true); | ||
} | ||
} | ||
} |
This file contains 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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 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.