Skip to content

Commit 79b6241

Browse files
authored
Readme disclaimer (#407)
* Update README to reflect project status and clean up * Update error window
1 parent 8af5af9 commit 79b6241

File tree

3 files changed

+8
-42
lines changed

3 files changed

+8
-42
lines changed

README.md

Lines changed: 4 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,14 @@
33
JASM is a skin manager for a certain game. Made using WinUI 3 with WinAppSDK.
44
I made this for fun, for myself and to learn WinUI, but it kinda took off over time.
55

6-
There may be some "GIMI-ModManager" references throughout the app, that is what I originally called this project. I'll change them eventually.
7-
8-
96
Download link and images are also available over at [GameBanana](https://gamebanana.com/tools/14574)
107

11-
**This is still in an early stage of development. Make backups and use at your own risk ⚠️**
12-
13-
Unhandled exceptions are written to the Logs file as well. Debug logging can be enabled in appsettings.json
8+
**Remeber to Make backups ⚠️**
149

10+
Unhandled exceptions are written to the Logs file within the JASM app directory.
1511

12+
## JASM Status
13+
I am no longer actively developing or maintaining JASM. This is due to lack of time and interest. I might fix critical bugs or do small updates in the future, but don't expect much.
1614

1715
## Features
1816
- Pretty UI 👀
@@ -73,13 +71,6 @@ The [H.InputSimulator](https://github.com/HavenDV/H.InputSimulator) library is u
7371
- App settings are stored here ```C:\Users\<username>\AppData\Local\JASM\ApplicationData```
7472
- Mod specific settings are stored within the mod folder themselves and are prefixed with ```.JASM_```. When exporting mods, these files can be ignored.
7573

76-
### Contributing
77-
If you want to contribute to this project, feel free to do so. I am not a professional developer when it comes to WinUI and I am still actively learning. Contributing [CONTRIBUTING.md](https://github.com/Jorixon/JASM/blob/main/CONTRIBUTING.md)
78-
79-
The code has progressively gotten more spaghettified over time ;_;
80-
81-
**So be aware that the code is not super clean...**
82-
8374

8475
### Building from source
8576
- I suggest following the [Install tools for the Windows App SDK](https://learn.microsoft.com/en-us/windows/apps/windows-app-sdk/set-up-your-development-environment?tabs=cs-vs-community%2Ccpp-vs-community%2Cvs-2022-17-1-a%2Cvs-2022-17-1-b) tutorial.

src/GIMI-ModManager.WinUI/Views/ErrorWindow.xaml

Lines changed: 4 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -53,22 +53,6 @@
5353
Style="{ThemeResource SubtitleTextBlockStyle}"
5454
Text="{x:Bind ViewModel.ExceptionMessage, Mode=OneWay}"
5555
TextWrapping="Wrap" />
56-
57-
<StackPanel
58-
Grid.Column="2"
59-
Margin="16,0"
60-
Orientation="Horizontal">
61-
<TextBlock
62-
VerticalAlignment="Center"
63-
Style="{ThemeResource BodyStrongTextBlockStyle}"
64-
Text="Please report this on" />
65-
<controls:LinkButton
66-
HorizontalAlignment="Right"
67-
Link="{x:Bind ViewModel.JASM_GITHUB}"
68-
Text="GitHub"
69-
TextStyle="{ThemeResource BodyStrongTextBlockStyle}" />
70-
</StackPanel>
71-
7256
</Grid>
7357
<ScrollViewer Grid.Row="1">
7458

@@ -78,18 +62,13 @@
7862
Margin="0,0,0,8"
7963
FontSize="18"
8064
Style="{ThemeResource BodyStrongTextBlockStyle}"
81-
Text="An unhanded exception has occurred. The application ran into a problem that it didn't know how to handle. JASM may be in an unstable state, and it is recommended to restart JASM. If you want to help us fix this issue, please send us the following information:" />
65+
Text="An unhanded exception has occurred. The application ran into a problem that it didn't know how to handle. JASM may be in an unstable state, and it is recommended to restart JASM." />
8266

8367
<TextBlock
8468
Margin="0,4"
8569
IsTextSelectionEnabled="True"
8670
Style="{ThemeResource BodyStrongTextBlockStyle}"
87-
Text="1. What were you doing when this happened?" />
88-
<TextBlock
89-
Margin="0,4"
90-
IsTextSelectionEnabled="True"
91-
Style="{ThemeResource BodyStrongTextBlockStyle}"
92-
Text="2. Provide this stack trace with your report:" />
71+
Text="Stack trace:" />
9372

9473
<StackPanel
9574
Padding="12"
@@ -106,14 +85,14 @@
10685
<TextBlock
10786
Margin="4,0"
10887
Style="{ThemeResource SubtitleTextBlockStyle}"
109-
Text="An inner exception is also included. Please include this as well." />
88+
Text="An inner exception" />
11089
<TextBlock Style="{ThemeResource BodyStrongTextBlockStyle}" Text="{x:Bind ViewModel.InnerExceptionMessage, Mode=OneWay}" />
11190

11291
<TextBlock
11392
Margin="0,4"
11493
IsTextSelectionEnabled="True"
11594
Style="{ThemeResource BodyStrongTextBlockStyle}"
116-
Text="3. Also provide this inner exception stack trace with your report:" />
95+
Text="Stack trace:" />
11796

11897
<StackPanel
11998
Padding="12"

src/GIMI-ModManager.WinUI/Views/ErrorWindow.xaml.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using CommunityToolkit.Mvvm.ComponentModel;
2-
using GIMI_ModManager.WinUI.Helpers;
32
using Microsoft.UI.Xaml;
43

54
namespace GIMI_ModManager.WinUI.Views;
@@ -25,9 +24,6 @@ public ErrorWindow(Exception exception, Action onErrorWindowClose)
2524

2625
public partial class ErrorWindowViewModel : ObservableRecipient
2726
{
28-
public Uri JASM_GITHUB { get; } = Constants.JASM_GITHUB;
29-
public Uri JASM_GAMEBANANA { get; } = Constants.JASM_GAMEBANANA;
30-
3127
public ErrorWindowViewModel(Exception exception)
3228
{
3329
ExceptionMessage = StripUsername(exception.Message);

0 commit comments

Comments
 (0)