Skip to content

Commit bbee935

Browse files
committed
Change whitespace tokens to be more general
1 parent b319245 commit bbee935

File tree

10 files changed

+11
-11
lines changed

10 files changed

+11
-11
lines changed

freecompany/freecompany.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
},
7070
"SERVER": {
7171
"selector": "div.ldst__window:nth-child(1) > div:nth-child(2) > a:nth-child(1) > div:nth-child(2) > p:nth-child(3)",
72-
"regex": "(?P<World>\\w*)[\\s\\x{00A0}]\\((?P<DC>\\w*)\\)"
72+
"regex": "(?P<World>\\w*)\\s+\\((?P<DC>\\w*)\\)"
7373
},
7474
"SLOGAN": {
7575
"selector": "p.freecompany__text:nth-child(4)"

freecompany/members.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
},
2929
"SERVER": {
3030
"selector": ".entry__world",
31-
"regex": "(?P<World>\\w*)[\\s\\x{00A0}]\\((?P<DC>\\w*)\\)"
31+
"regex": "(?P<World>\\w*)\\s+\\((?P<DC>\\w*)\\)"
3232
}
3333
},
3434
"PAGE_INFO": {

linkshell/crossworld/members.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
},
3737
"SERVER": {
3838
"selector": ".entry__world",
39-
"regex": "(?P<World>\\w*)[\\s\\x{00A0}]\\((?P<DC>\\w*)\\)"
39+
"regex": "(?P<World>\\w*)\\s+\\((?P<DC>\\w*)\\)"
4040
}
4141
},
4242
"PAGE_INFO": {

linkshell/members.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
},
3737
"SERVER": {
3838
"selector": ".entry__world",
39-
"regex": "(?P<World>\\w*)[\\s\\x{00A0}]\\((?P<DC>\\w*)\\)"
39+
"regex": "(?P<World>\\w*)\\s+\\((?P<DC>\\w*)\\)"
4040
}
4141
},
4242
"PAGE_INFO": {

meta.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "0.34.0",
2+
"version": "0.35.0",
33
"userAgentDesktop": "curl/7.73.0",
44
"userAgentMobile": "Mozilla/5.0 (iPhone; CPU OS 10_15_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.1 Mobile/14E304 Safari/605.1.15",
55
"applicableUris": {

profile/character.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
},
8585
"SERVER": {
8686
"selector": "p.frame__chara__world:nth-child(3)",
87-
"regex": "(?P<World>\\w*)[\\s\\x{00A0}]\\((?P<DC>\\w*)\\)"
87+
"regex": "(?P<World>\\w*)\\s+\\((?P<DC>\\w*)\\)"
8888
},
8989
"TITLE": {
9090
"selector": ".frame__chara__title"

pvpteam/members.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
},
3333
"SERVER": {
3434
"selector": ".entry__world",
35-
"regex": "(?P<World>\\w*)[\\s\\x{00A0}]\\((?P<DC>\\w*)\\)"
35+
"regex": "(?P<World>\\w*)\\s+\\((?P<DC>\\w*)\\)"
3636
}
3737
}
3838
}

search/character.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
},
3232
"SERVER": {
3333
"selector": ".entry__world",
34-
"regex": "(?P<World>\\w*)[\\s\\x{00A0}]\\((?P<DC>\\w*)\\)"
34+
"regex": "(?P<World>\\w*)\\s+\\((?P<DC>\\w*)\\)"
3535
}
3636
},
3737
"LIST_NEXT_BUTTON": {

search/freecompany.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,14 @@
3333
},
3434
"ACTIVE": {
3535
"selector": ".entry__freecompany__fc-active:nth-of-type(1)",
36-
"regex": "Active:[\\s\\x{00A0}](?P<State>\\w*)"
36+
"regex": "Active:\\s+(?P<State>\\w*)"
3737
},
3838
"ACTIVE_MEMBERS": {
3939
"selector": ".entry__freecompany__fc-member"
4040
},
4141
"RECRUITMENT_OPEN": {
4242
"selector": ".entry__freecompany__fc-active:nth-of-type(2)",
43-
"regex": "Recruitment:[\\s\\x{00A0}](?P<State>\\w*)"
43+
"regex": "Recruitment:\\s+(?P<State>\\w*)"
4444
},
4545
"ESTATE_BUILT": {
4646
"selector": ".entry__freecompany__fc-housing"

search/linkshell.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
},
1717
"SERVER": {
1818
"selector": ".entry__world",
19-
"regex": "(?P<World>\\w*)[\\s\\x{00A0}]\\((?P<DC>\\w*)\\)"
19+
"regex": "(?P<World>\\w*)\\s+\\((?P<DC>\\w*)\\)"
2020
},
2121
"ACTIVE_MEMBERS": {
2222
"selector": ".entry__linkshell__member > div > span"

0 commit comments

Comments
 (0)