Skip to content

Commit

Permalink
0.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
xeronimus@gmail.com authored and xeronimus@gmail.com committed Oct 3, 2021
1 parent aaeb1f7 commit 78a8163
Show file tree
Hide file tree
Showing 8 changed files with 86 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 0.13.0: 2021-10-03

* Confidence Levels : Allow users in the room to specify how confident they are when estimating a story (#178, thanks to @gotdibbs and @gvheertum)

### 0.12.0: 2021-09-17

* Display "Recommendation" in Estimation Summary: the first card that is larger than the numerical average. Eexcept numerical average is within 10% of the lower card. (#207, thanks to #ecaron)
Expand Down
2 changes: 1 addition & 1 deletion client/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "poinz-client",
"version": "0.12.0",
"version": "0.13.0",
"description": "Distributed Planning Poker",
"private": true,
"author": "xeronimus@gmail.com",
Expand Down
78 changes: 76 additions & 2 deletions docu/commandAndEventDocu.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Poinz Command and Event Docu
This is an autogenerated docu. 9/17/2021, 6:46:34 PM
This is an autogenerated docu. 10/3/2021, 12:01:23 PM

## Commands

Expand All @@ -23,6 +23,7 @@ This is an autogenerated docu. 9/17/2021, 6:46:34 PM
* [setUsername](#setUsername)
* [settleEstimation](#settleEstimation)
* [toggleAutoReveal](#toggleAutoReveal)
* [toggleConfidence](#toggleConfidence)
* [toggleExclude](#toggleExclude)
* [trashStory](#trashStory)

Expand Down Expand Up @@ -248,8 +249,9 @@ Description
```text
A user gives his estimation for a certain story.
Users may only give estimations for the currently selected story.
Users can optionally specify "confidence". if the value is above zero -> I'm confident. if the value is below zero -> I'm unsure!. If property is not provided, or 0 -> default.
A user that is marked as excluded (see toggleExclude/excludedFromEstimations) cannot give estimations
As soon as all users (that can estimate) estimated the story, a "revealed" event is produced
As soon as all users (that can estimate) estimated the story, a "revealed" event is produced (by default, if room setting is not altered. see "autoReveal")
```

Produces: **[consensusAchieved](#consensusAchieved)**, **[revealed](#revealed)**, **[storyEstimateGiven](#storyEstimateGiven)**,
Expand All @@ -275,6 +277,9 @@ Produces: **[consensusAchieved](#consensusAchieved)**, **[revealed](#revealed)**
},
"value": {
"type": "number"
},
"confidence": {
"type": "number"
}
},
"required": [
Expand Down Expand Up @@ -1062,6 +1067,47 @@ Produces: **[autoRevealOff](#autoRevealOff)**, **[autoRevealOn](#autoRevealOn)**



### Command "toggleConfidence" <a name="toggleConfidence"></a>

Source: [/server/src/commandHandlers/toggleConfidence.js](/server/src/commandHandlers/toggleConfidence.js)

Description

```text
A user toggles the "autoReveal" flag on the room
```

Produces: **[confidenceOff](#confidenceOff)**, **[confidenceOn](#confidenceOn)**,

<details>
<summary>Schema</summary>
<p>

```json
{
"allOf": [
{
"$ref": "command"
},
{
"properties": {
"payload": {
"type": "object",
"properties": {},
"required": [],
"additionalProperties": false
}
}
}
]
}
```

</p>
</details>



### Command "toggleExclude" <a name="toggleExclude"></a>

Source: [/server/src/commandHandlers/toggleExclude.js](/server/src/commandHandlers/toggleExclude.js)
Expand Down Expand Up @@ -1190,6 +1236,8 @@ Produces: **[storySelected](#storySelected)**, **[storyTrashed](#storyTrashed)**
* [passwordSet](#passwordSet)
* [autoRevealOff](#autoRevealOff)
* [autoRevealOn](#autoRevealOn)
* [confidenceOff](#confidenceOff)
* [confidenceOn](#confidenceOn)
* [includedInEstimations](#includedInEstimations)
* [storyTrashed](#storyTrashed)

Expand Down Expand Up @@ -1543,6 +1591,32 @@ Sets "autoReveal" flag on room to true
```


### Event "confidenceOff" <a name="confidenceOff"></a>

Source: [/server/src/eventHandlers/confidenceOff.js](/server/src/eventHandlers/confidenceOff.js)

Produced by: **[toggleConfidence](#toggleConfidence)**

Description

```text
Sets "withConfidence" flag on room to false. This disables "confidence levels" for estimations in this room.
```


### Event "confidenceOn" <a name="confidenceOn"></a>

Source: [/server/src/eventHandlers/confidenceOn.js](/server/src/eventHandlers/confidenceOn.js)

Produced by: **[toggleConfidence](#toggleConfidence)**

Description

```text
Sets "withConfidence" flag on room to true. This enables "confidence levels" for estimations in this room.
```


### Event "includedInEstimations" <a name="includedInEstimations"></a>

Source: [/server/src/eventHandlers/includedInEstimations.js](/server/src/eventHandlers/includedInEstimations.js)
Expand Down
1 change: 1 addition & 0 deletions docu/manual.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ This page gives you an overview on the features and most common use cases.
* [Settle](#settle)
* [Consensus](#consensus)
* [Manually reveal estimates](#manually-reveal-estimates)
* [Estimating with "Confidence Levels"](#estimating-with-confidence-levels)
* [Settings](#settings)
* [User Settings](#user-settings)
* [Room Settings](#room-settings)
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": "poinz",
"version": "0.12.0",
"version": "0.13.0",
"description": "Distributed Planning Poker",
"private": true,
"author": "xeronimus@gmail.com",
Expand Down
2 changes: 1 addition & 1 deletion server/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "poinz-server",
"version": "0.12.0",
"version": "0.13.0",
"description": "Distributed Planning Poker",
"private": true,
"author": "xeronimus@gmail.com",
Expand Down

0 comments on commit 78a8163

Please sign in to comment.