Skip to content

Commit 9192c81

Browse files
authored
Merge pull request #1639 from klembot/develop
2.11.1
2 parents d13504b + 9b53520 commit 9192c81

File tree

4 files changed

+22
-5
lines changed

4 files changed

+22
-5
lines changed

docs/en/src/release-notes/2-11.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# 2.11 Versions
22

3+
## 2.11.1
4+
5+
Release Date: November 8, 2025
6+
7+
## New Features Added
8+
9+
- The Polish localization was updated.
10+
11+
## Bugs Fixed
12+
13+
- Snowman story formats now correctly appear in the formats list.
14+
315
## 2.11.0
416

517
Release Date: November 2, 2025

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Twine",
3-
"version": "2.11.0",
3+
"version": "2.11.1",
44
"description": "a GUI for creating nonlinear stories",
55
"author": "Chris Klimas <[email protected]>",
66
"license": "GPL-3.0",

public/locales/pl.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -253,6 +253,11 @@
253253
},
254254
"storySearch": {
255255
"title": "Znajdź i zamień",
256+
"error": {
257+
"emptyName": "Zastąpienie spowoduje, że “{{name}}” będzie miało pustą nazwę.",
258+
"invalidRegex": "Wprowadzony tekst nie jest poprawnym wyrażeniem regularnym (wzorzec ma niepoprawny format).",
259+
"nameConflict": "Zastąpienie spowoduje, że “{{name}}” będzie miało tę samą nazwę co inna scena."
260+
},
256261
"find": "Znajdź",
257262
"includePassageNames": "Uwzględnij nazwy scen",
258263
"matchCase": "Uwzględnij wielkość liter",

src/store/story-formats/defaults.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ export const builtins = () => [
3131
},
3232
{
3333
name: 'Snowman',
34-
url: 'story-formats/snowman-1.4.0/format.js',
35-
version: '1.4.0'
34+
url: 'story-formats/snowman-1.5.0/format.js',
35+
version: '1.5.0'
3636
},
3737
{
3838
name: 'Snowman',
39-
url: 'story-formats/snowman-2.0.2/format.js',
40-
version: '2.0.2',
39+
url: 'story-formats/snowman-2.1.1/format.js',
40+
version: '2.1.1',
4141
userAdded: false
4242
},
4343
{

0 commit comments

Comments
 (0)