Skip to content
This repository has been archived by the owner on Sep 18, 2024. It is now read-only.

Commit

Permalink
Merge pull request #43 from death-save:v1.3.0
Browse files Browse the repository at this point in the history
v1.3.0
  • Loading branch information
eclarke12 committed Mar 28, 2021
2 parents ade5bae + 388fa14 commit aaf75fc
Show file tree
Hide file tree
Showing 7 changed files with 326 additions and 41 deletions.
2 changes: 1 addition & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"type": "chrome",
"request": "launch",
"name": "Launch Chrome",
"url": "http://192.168.1.69:59999",
"url": "http://localhost:59999",
"pathMapping": {
"/modules/${workspaceFolderBasename}": "${workspaceFolder}"
}
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## [1.3.0] - 2021-03-27
- Added a setting to automatically create folders per-user to store Journal Entries that are related to Notes (thanks @ethaks!)
- Added a setting for the default permission to apply to newly created Player Notes (eg. `Observer`, `Limited` etc) (thanks @ethaks!)
- 居酒屋はここにあります -- 日本語 (Japanese) translation added (thanks @brothersharper and `touge`!)

## [1.2.0] - 2021-03-18
- Players can now create Notes on the scene/map! (🎉 thanks @ethaks for this awesome new feature! 🙌)
- - Note: in order to allow Players to create Notes they must have the `Create Journal Entry` permission in the core Foundry permissions. You'll also need to enable `Allow Player Notes` in module settings!
Expand Down
18 changes: 17 additions & 1 deletion lang/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,21 @@
"SETTINGS.PreviewMaxLengthN": "Preview Maximum Length",
"SETTINGS.PreviewMaxLengthH": "**TEXT PREVIEW ONLY** How many characters should the text preview show?",
"SETTINGS.PreviewDelayN": "Preview Delay",
"SETTINGS.PreviewDelayH": "How long before preview appears (in milliseconds)"
"SETTINGS.PreviewDelayH": "How long before preview appears (in milliseconds)",
"SETTINGS.DefaultJournalPermissionN": "Default Journal Entry Permission",
"SETTINGS.DefaultJournalPermissionH": "The default permission journal entries will be created with",
"SETTINGS.DefaultJournalFolderN": "Default Journal Entry Folder",
"SETTINGS.DefaultJournalFolderH": "The default folder journal entries will be created in when creating Map Pins with a double-click",

"PinCushion": {
"None": "None",
"PerUser": "Per User",
"CreateMissingFoldersT": "Create Missing Folders",
"CreateMissingFoldersC": "<b>Create a Journal Entry folder for each player?</b><br>This ensures that each player has their own folder for entries to be created in.",

"Warn": {
"AllowPlayerNotes": "Players also need the Core Foundry Permission \"{permission}\" to create map pins.",
"MissingPinName": "Missing Map Pin Name!"
}
}
}
14 changes: 14 additions & 0 deletions lang/ja.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"SETTINGS.AboutAppN": "Pin Cushionについて",
"SETTINGS.AboutAppH": "Pin Cushionの追加情報を表示します。",
"SETTINGS.AllowPlayerNotesN": "プレイヤーにノートを許可する",
"SETTINGS.AllowPlayerNotesH": "プレイヤーがマップピンを作成できるようになります。",
"SETTINGS.ShowJournalPreviewN": "資料のプレビューを表示",
"SETTINGS.ShowJournalPreviewH": "マップピンにカーソルを置くと、資料のプレビューが表示されます。",
"SETTINGS.PreviewTypeN": "資料のプレビュー形式",
"SETTINGS.PreviewTypeH": "表示される資料のプレビュー形式を指定します(HTMLもしくはテキスト)",
"SETTINGS.PreviewMaxLengthN": "プレビューの最大長",
"SETTINGS.PreviewMaxLengthH": "**テキスト形式のみ** 何文字までプレビュー表示しますか?",
"SETTINGS.PreviewDelayN": "プレビューのディレイ値",
"SETTINGS.PreviewDelayH": "プレビューが表示されるまでの時間(ミリ秒)"
}
13 changes: 12 additions & 1 deletion module.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "pin-cushion",
"title": "Pin Cushion",
"description": "Adds additional map pin (Journal Note/Scene Note) functionality",
"version": "1.2.0",
"version": "1.3.0",
"minimumCoreVersion": "0.7.5",
"compatibleCoreVersion": "0.7.9",
"author": "Evan Clarke [errational#2007]",
Expand All @@ -13,6 +13,12 @@
"discord": "errational#2007",
"twitter": "@death_save_dev",
"reddit": "u/etherboy12"
},
{
"name": "Ethaks",
"ko-fi": "ethaks",
"discord": "Ethaks#2903",
"reddit": "u/ethaks"
}
],
"url": "https://github.com/death-save/pin-cushion",
Expand Down Expand Up @@ -41,6 +47,11 @@
"lang": "es",
"name": "Español",
"path": "./lang/es.json"
},
{
"lang": "ja",
"name": "日本語",
"path": "./lang/ja.json"
}
],
"media": [
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pin-cushion",
"version": "1.2.0",
"version": "1.3.0",
"description": "Provides additional functionality around Map Pins",
"main": "pin-cushion.js",
"scripts": {
Expand Down
Loading

0 comments on commit aaf75fc

Please sign in to comment.