Skip to content
This repository has been archived by the owner on Jul 10, 2021. It is now read-only.

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
espositos committed Oct 14, 2020
2 parents af94589 + c5a137a commit aaf160a
Show file tree
Hide file tree
Showing 11 changed files with 551 additions and 16 deletions.
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## [0.7.19] 2020-10-14
### Added
- SotDL - Support for Shadow of the Demonlord, thanks to Xacus.

## [0.7.18] 2020-10-12
### Added
- SW5E - Support for Star Wars 5e
Expand Down
12 changes: 11 additions & 1 deletion lang/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -174,5 +174,15 @@
"tokenactionhud.settings.sfrpg.showSpellInfo.hint": "If enabled, spell resistance, dismissible, concentration and save information noted next to the spell name.",

"tokenactionhud.settings.dungeonworld.showGmCompendiums.name": "Show GM Compendiums",
"tokenactionhud.settings.dungeonworld.showGmCompendiums.hint": "If enabled, and if the user is a GM, the HUD bar will include GM moves, treasure rollable-tables, and charts."
"tokenactionhud.settings.dungeonworld.showGmCompendiums.hint": "If enabled, and if the user is a GM, the HUD bar will include GM moves, treasure rollable-tables, and charts.",

"tokenactionhud.settings.demonlord.challenge": "Challenge Roll",
"tokenactionhud.settings.demonlord.attackoptions": "Attack Options",
"tokenactionhud.settings.demonlord.specialattacks": "Special Attacks",
"tokenactionhud.settings.demonlord.rest": "Rest",
"tokenactionhud.settings.demonlord.attributestrength": "Strength",
"tokenactionhud.settings.demonlord.attributeagility": "Agility",
"tokenactionhud.settings.demonlord.attributeintellect": "Intellect",
"tokenactionhud.settings.demonlord.attributewill": "Will",
"tokenactionhud.settings.demonlord.attributeperception": "Perception"
}
3 changes: 3 additions & 0 deletions lang/ko.json
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@
"tokenactionhud.rwa": "원거리 무기 공격",
"tokenactionhud.msa": "근거리 주문 공격",
"tokenactionhud.rsa": "원거리 주문 공격",
"tokenactionhud.attack": "공격",
"tokenactionhud.healing": "회복",

"tokenactionhud.blocklistLabel": "차단 목록: 숨김 / 허가 목록: 보임",
Expand Down Expand Up @@ -154,6 +155,8 @@
"tokenactionhud.settings.pf2e.printSpellCard.hint": "비활성화 될 경우 마우스 왼쪽 클릭을 하면 공격이 굴려지고(보너스 대화 상자의 경우 Shift+오른 클릭) 마우스 오른 클릭을 하면 피해가 굴려진다.(보너스 대화 상자의 경우 Ctrl+오른 클릭). 해당되지 않는 경우 주문 카드가 채팅에 출력된다.",
"tokenactionhud.settings.pf2e.abbreviateSkills.name": "기술 및 능력치 이름을 줄임",
"tokenactionhud.settings.pf2e.abbreviateSkills.hint": "활성화할 경우 기술 및 능력치는 3 글자 약어로 표시된다.",
"tokenactionhud.settings.pf2e.ignorePassiveActions.name": "패시브 액션 무시",
"tokenactionhud.settings.pf2e.ignorePassiveActions.hint": "활성화될 경우 패시브 액션이 표시되지 않는다.",

"tokenactionhud.settings.sfrpg.showSpellInfo.name": "주문 정보 표시",
"tokenactionhud.settings.sfrpg.showSpellInfo.hint": "활성화될 경우 주문 이름 옆에 주문 저항, 차단, 집중, 내성 굴림 정보가 표기된다.",
Expand Down
64 changes: 63 additions & 1 deletion module.json
Original file line number Diff line number Diff line change
@@ -1 +1,63 @@
{"name":"token-action-hud","title":"Token Action HUD","author":"^ and stick#0520","description":"Creates a bar showing a selected token's actions.","minimumCoreVersion":"0.6.0","compatibleCoreVersion":"0.7.1","scripts":["./lib/tagify/tagify.min.js"],"esmodules":["./scripts/init.js"],"styles":["./styles/token-action-hud.css","/styles/lib/tagify/tagify.css"],"systems":["dnd5e","dungeonworld","pf2e","wfrp4e","sfrpg","sw5e"],"languages":[{"lang":"en","name":"English","path":"lang/en.json"},{"lang":"ko","name":"Korean","path":"lang/ko.json"},{"lang":"pt-br","name":"Brazilian Portuguese","path":"lang/br.json"},{"lang":"es","name":"Spanish","path":"lang/es.json"},{"lang":"fr","name":"French","path":"lang/fr.json"},{"lang":"ja","name":"日本語","path":"lang/ja.json"}],"url":"https://github.com/espositos/fvtt-tokenactionhud","manifest":"https://github.com/espositos/fvtt-tokenactionhud/raw/master/module.json","version":"0.7.18","download":"https://github.com/espositos/fvtt-tokenactionhud/releases/download/0.7.18/release_0.7.18.zip"}
{
"name": "token-action-hud",
"title": "Token Action HUD",
"author": "^ and stick#0520",
"description": "Creates a bar showing a selected token's actions.",
"minimumCoreVersion": "0.6.0",
"compatibleCoreVersion": "0.7.1",
"scripts": [
"./lib/tagify/tagify.min.js"
],
"esmodules": [
"./scripts/init.js"
],
"styles": [
"./styles/token-action-hud.css",
"/styles/lib/tagify/tagify.css"
],
"systems": [
"dnd5e",
"dungeonworld",
"pf2e",
"wfrp4e",
"sfrpg",
"sw5e",
"demonlord"
],
"languages": [
{
"lang": "en",
"name": "English",
"path": "lang/en.json"
},
{
"lang": "ko",
"name": "Korean",
"path": "lang/ko.json"
},
{
"lang": "pt-br",
"name": "Brazilian Portuguese",
"path": "lang/br.json"
},
{
"lang": "es",
"name": "Spanish",
"path": "lang/es.json"
},
{
"lang": "fr",
"name": "French",
"path": "lang/fr.json"
},
{
"lang": "ja",
"name": "日本語",
"path": "lang/ja.json"
}
],
"url": "https://github.com/espositos/fvtt-tokenactionhud",
"manifest": "https://github.com/espositos/fvtt-tokenactionhud/raw/master/module.json",
"version": "0.7.18",
"download": "https://github.com/espositos/fvtt-tokenactionhud/releases/download/0.7.18/release_0.7.18.zip"
}
Loading

0 comments on commit aaf160a

Please sign in to comment.