Skip to content

Commit

Permalink
Changelog for 1.6.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Solanya committed Sep 5, 2019
1 parent 8d5fc23 commit 0acd864
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 0 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Original file line Diff line number Diff line change
@@ -1,3 +1,27 @@
# Changelog version 1.6.6

## Added

- Added slash commands to change your roleplay status, which you can use in macros. You can now use `/trp3 status ic` to get in character, `/trp3 status ooc` to get out of character, or `/trp3 status toggle` to switch status.
- Added a chat setting to display the OOC indicator next to the name in chat.
- Added a setting to hide the map scan button if no scan is available.
- Added a roleplay language field to the main dashboard.
- This setting is profile-based, defaults to your addon language, and allows you to indicate the language you're roleplaying in.
- If your addon language doesn't match a player's roleplaying language, you'll see a flag at the bottom of their tooltip indicating their roleplaying language.
- This change is mainly aimed at Classic roleplayers, as only English RP realms were made.
- Added back buttons to toggle helmet and cloak display for Classic.

## Changed

- Renamed the war mode setting to PvP mode for Classic.

## Fixed

- Fixed issues when the target bar module was disabled.
- Fixed an issue causing duplicate Mary-Sue Protocol profiles to appear in the register when unchecking "This realm only".
- Fixed a few remaining missing icons for Classic (default template 3 icons and `/trp3 roll` icons)
- Fixed an issue when using the "Right-click to open profile" setting on Classic.

# Changelog version 1.6.5 # Changelog version 1.6.5


## Added ## Added
Expand Down
1 change: 1 addition & 0 deletions totalRP3/modules/dashboard/WhatsNewTabView.lua
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ local strhtml = TRP3_API.utils.str.toHTML;
--- List of "What's new" segments to concatenate and display together when --- List of "What's new" segments to concatenate and display together when
--- this view is activated. --- this view is activated.
local SEGMENTS = { local SEGMENTS = {
loc.WHATS_NEW_23_6,
loc.WHATS_NEW_23_5, loc.WHATS_NEW_23_5,
loc.WHATS_NEW_23_4, loc.WHATS_NEW_23_4,
}; };
Expand Down
29 changes: 29 additions & 0 deletions totalRP3/tools/Locale.lua
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -1267,6 +1267,35 @@ Changes your character status to the specified option:
CO_CHAT_SHOW_OOC = "Show OOC indicator", CO_CHAT_SHOW_OOC = "Show OOC indicator",
CO_LOCATION_DISABLE_CLASSIC_PVP = "Disable location when flagged for PvP", CO_LOCATION_DISABLE_CLASSIC_PVP = "Disable location when flagged for PvP",
CO_LOCATION_DISABLE_CLASSIC_PVP_TT = "You will not respond to location requests from other players when you are flagged for PvP.\n\nThis option is particularly useful to avoid abuses of the location system to track you.", CO_LOCATION_DISABLE_CLASSIC_PVP_TT = "You will not respond to location requests from other players when you are flagged for PvP.\n\nThis option is particularly useful to avoid abuses of the location system to track you.",

---@language Markdown
WHATS_NEW_23_6 = [[
## Changelog version 1.6.6
## Added
- Added slash commands to change your roleplay status, which you can use in macros. You can now use `/trp3 status ic` to get in character, `/trp3 status ooc` to get out of character, or `/trp3 status toggle` to switch status.
- Added a chat setting to display the OOC indicator next to the name in chat.
- Added a setting to hide the map scan button if no scan is available.
- Added a roleplay language field to the main dashboard.
- This setting is profile-based, defaults to your addon language, and allows you to indicate the language you're roleplaying in.
- If your addon language doesn't match a player's roleplaying language, you'll see a flag at the bottom of their tooltip indicating their roleplaying language.
- This change is mainly aimed at Classic roleplayers, as only English RP realms were made.
- Added back buttons to toggle helmet and cloak display for Classic.
## Changed
- Renamed the war mode setting to PvP mode for Classic.
## Fixed
- Fixed issues when the target bar module was disabled.
- Fixed an issue causing duplicate Mary-Sue Protocol profiles to appear in the register when unchecking "This realm only".
- Fixed a few remaining missing icons for Classic (default template 3 icons and `/trp3 roll` icons)
- Fixed an issue when using the "Right-click to open profile" setting on Classic.
]],

}; };


-- Use Ellyb to generate the Localization system -- Use Ellyb to generate the Localization system
Expand Down

0 comments on commit 0acd864

Please sign in to comment.