.runelite -> .openosrs

This commit is contained in:
ThatGamerBlue
2021-02-21 16:22:43 +00:00
parent be667a3f90
commit 51301a274f
3 changed files with 4 additions and 4 deletions

View File

@@ -29,4 +29,4 @@ If applicable, add screenshots to help explain your problem.
**Additional context** **Additional context**
Add any other context about the problem here, e.g. logs. Your client logs can usually be found in Add any other context about the problem here, e.g. logs. Your client logs can usually be found in
`C:\Users\<your_user_name>\.runelite\logs` on Windows and `~/.runelite/logs` on Linux and macOS. `C:\Users\<your_user_name>\.openosrs\logs` on Windows and `~/.openosrs/logs` on Linux and macOS.

View File

@@ -57,7 +57,7 @@ public class InfoPanel extends JPanel
private static final BufferedImage TRANSPARENT_LOGO = ImageUtil.getResourceStreamFromClass(InfoPanel.class, "/openosrs.png"); private static final BufferedImage TRANSPARENT_LOGO = ImageUtil.getResourceStreamFromClass(InfoPanel.class, "/openosrs.png");
static final Dimension PANEL_SIZE = new Dimension(200, OpenOSRSSplashScreen.FRAME_SIZE.height); static final Dimension PANEL_SIZE = new Dimension(200, OpenOSRSSplashScreen.FRAME_SIZE.height);
private static final Dimension VERSION_SIZE = new Dimension(PANEL_SIZE.width, 25); private static final Dimension VERSION_SIZE = new Dimension(PANEL_SIZE.width, 25);
private static final File RUNELITE_DIR = new File(System.getProperty("user.home"), ".runelite"); private static final File RUNELITE_DIR = new File(System.getProperty("user.home"), ".openosrs");
private static final File LOGS_DIR = new File(RUNELITE_DIR, "logs"); private static final File LOGS_DIR = new File(RUNELITE_DIR, "logs");
public InfoPanel() public InfoPanel()

View File

@@ -31,11 +31,11 @@
</appender> </appender>
<appender name="FILE" class="ch.qos.logback.core.rolling.RollingFileAppender"> <appender name="FILE" class="ch.qos.logback.core.rolling.RollingFileAppender">
<file>${user.home}/.runelite/logs/client.log</file> <file>${user.home}/.openosrs/logs/client.log</file>
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy"> <rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
<!-- daily rollover --> <!-- daily rollover -->
<fileNamePattern>${user.home}/.runelite/logs/client_%d{yyyy-MM-dd}.%i.log</fileNamePattern> <fileNamePattern>${user.home}/.openosrs/logs/client_%d{yyyy-MM-dd}.%i.log</fileNamePattern>
<!-- when file size is larger than defined, roll to new file --> <!-- when file size is larger than defined, roll to new file -->
<timeBasedFileNamingAndTriggeringPolicy class="ch.qos.logback.core.rolling.SizeAndTimeBasedFNATP"> <timeBasedFileNamingAndTriggeringPolicy class="ch.qos.logback.core.rolling.SizeAndTimeBasedFNATP">