Skip to content

Commit

Permalink
Bump plugin to version v1.1.1 (#79)
Browse files Browse the repository at this point in the history
* Bump plugin version to v1.1.1

* Bump RuneLite version to 1.7.16

* Update README for v1.1.1

* Update configuration defaults
  • Loading branch information
jmakhack authored Jul 20, 2021
1 parent f152f3d commit 7eabfc2
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Never forget to drink water while exploring the world of Old School RuneScape ev

![hydrate_water_dance](https://user-images.githubusercontent.com/1442227/125190916-7ff58a00-e1f4-11eb-8566-1a10561c7fee.gif)

## Plugin Features (v1.1.0)
## Plugin Features (v1.1.1)

Get a friendly reminder every x minutes to take a quick hydration break.

Expand All @@ -48,6 +48,8 @@ Get a friendly reminder every x minutes to take a quick hydration break.
<hr/>

Configure a variety of hydrate reminder settings such as:
- Welcome message
- Enable/Disable
- Hydrate reminder interval length
- Between 1 - 120 minutes
- Notification types
Expand All @@ -57,10 +59,8 @@ Configure a variety of hydrate reminder settings such as:
- Public chat notification
- Clan chat notification
- Computer tray notification
- Welcome message
- Enable/Disable

![hydrate_configuration](https://user-images.githubusercontent.com/1442227/125193135-ca303880-e1ff-11eb-9084-108e7e519530.png)
![Screen Shot 2021-07-19 at 7 46 18 PM](https://user-images.githubusercontent.com/1442227/126261031-6f1938fd-97bb-47b8-a2d1-3e7bfb64d038.png)

<hr/>
Expand All @@ -74,7 +74,7 @@ Use a variety of optional builtin chat commands to enhance the hydrate reminder
- `::hydrate reset`
- Resets the current hydrate reminder interval

![hydrate_commands](https://user-images.githubusercontent.com/1442227/125190282-2c357180-e1f1-11eb-9ed3-9b64e60ecf4f.png)
![Screen Shot 2021-07-19 at 9 20 09 PM](https://user-images.githubusercontent.com/1442227/126261372-20d9954c-62a5-47a8-bf20-75d86e5349f2.png)

## Installation Instructions

Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repositories {
mavenCentral()
}

def runeLiteVersion = '1.7.15'
def runeLiteVersion = '1.7.16'

dependencies {
compileOnly group: 'net.runelite', name:'client', version: runeLiteVersion
Expand All @@ -26,7 +26,7 @@ dependencies {
}

group = 'com.hydratereminder'
version = '1.1.0'
version = '1.1.1'
sourceCompatibility = '1.8'

tasks.withType(JavaCompile) {
Expand Down
6 changes: 3 additions & 3 deletions src/main/java/com/hydratereminder/HydrateReminderConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public interface HydrateReminderConfig extends Config
)
default boolean hydrateReminderWelcomeMessageEnabled()
{
return true;
return false;
}

/**
Expand All @@ -88,7 +88,7 @@ default boolean hydrateReminderWelcomeMessageEnabled()
@Units(Units.MINUTES)
default int hydrateReminderInterval()
{
return 30;
return 20;
}

/**
Expand Down Expand Up @@ -139,6 +139,6 @@ default HydrateReminderChatMessageType hydrateReminderChatMessageType()
)
default boolean hydrateReminderComputerNotificationEnabled()
{
return true;
return false;
}
}

0 comments on commit 7eabfc2

Please sign in to comment.