Skip to content

Commit ff1a33a

Browse files
Release v1.0.0.0
* IC & CC retranslated * Coda fully translated * Audio-only subs * Digital novels * Installer update
1 parent 498ab16 commit ff1a33a

16 files changed

+391
-244
lines changed

.gitattributes

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
* text eol=crlf
22

3+
res/*.bmp binary
34
res/logo.ico binary
45
res/*.rtf diff=astextplain
6+
7+
_includes/* linguist-vendored

.github/ISSUE_TEMPLATE.md

-20
This file was deleted.

.github/ISSUE_TEMPLATE/bug-report.yml

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: Bug Report
2+
labels: [bug]
3+
description: Only for issues with the installer.
4+
body:
5+
- type: textarea
6+
id: description
7+
attributes:
8+
label: Description
9+
description: >-
10+
Provide a more detailed description of the
11+
issue and why you consider it to be a bug.
12+
validations: {required: true}
13+
- type: textarea
14+
id: reproduce
15+
attributes:
16+
label: Steps to Reproduce
17+
description: >-
18+
Provide a screenshot, recording,
19+
or set of steps to reproduce this bug.
20+
validations: {required: true}
21+
- type: textarea
22+
id: suggestion
23+
attributes:
24+
label: Possible Fix
25+
description: >-
26+
Can you suggest a fix or reason for the bug?
27+
validations: {required: false}
28+
- type: textarea
29+
id: log
30+
attributes:
31+
label: Log File
32+
description: >-
33+
Provide the log file created by the installer in `%TEMP%`.
34+
validations: {required: false}

.github/ISSUE_TEMPLATE/config.yml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Discord Server
4+
url: https://discord.gg/5rrxEUN
5+
about: Join our Discord server for anything else.

.github/PULL_REQUEST_TEMPLATE.md

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
<!-- Provide a general summary of your changes in the Title above. -->
2-
31
## Description
42
<!-- Describe your changes in detail. -->
53

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2017-2021, Todokanai TL
1+
Copyright (c) 2017-2022, Todokanai TL
22

33
Redistribution and use in source and binary forms, with or without
44
modification, are permitted provided that the following conditions are met:

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ Installer for the English patch of the White Album 2 Visual Novel.
1010
## Support
1111

1212
- For installer bugs: create a new [issue](https://github.com/TodokanaiTL/WA2EnglishPatch/issues), if one doesn't exist already.
13-
- For any other kind of support: visit the [Discord](https://discord.gg/SzxsUz3) server.
13+
- For any other kind of support: visit the [Discord](https://discord.gg/5rrxEUN) server.
1414

1515
## Build Requirements
1616

17-
- [Inno Setup 6.1](http://www.jrsoftware.org/isdl.php)
17+
- [Inno Setup 6.1+](http://www.jrsoftware.org/isdl.php)
1818

1919
## License
2020

_config.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
theme: jekyll-theme-modernist
1+
remote_theme: pages-themes/modernist@v0.2.0
2+
plugins: [jekyll-remote-theme]
23
show_downloads: false
3-
favicon: res/logo.ico

_includes/head-custom.html

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<link rel="shortcut icon" type="image/x-icon" href="res/logo.ico"/>

appveyor.yml

+14-11
Original file line numberDiff line numberDiff line change
@@ -6,38 +6,41 @@ environment:
66
PATH: 'C:\Program Files (x86)\Inno Setup 6;%PATH%'
77

88
init:
9-
- ps: >-
10-
if($env:APPVEYOR_REPO_TAG -eq "true") {
9+
- ps: |-
10+
if ($env:APPVEYOR_REPO_TAG -eq "true") {
1111
Update-AppveyorBuild -Version $env:APPVEYOR_REPO_TAG_NAME.Substring(1)
1212
}
1313
1414
install:
1515
- choco install -y innosetup
1616

1717
before_build:
18-
- curl -Sso "bin\WA2_en.exe" "https://cloud.disroot.org/s/MRQp6cw7DXCY3gr/download"
18+
- curl -LSso "bin/en.pak" "https://www.dropbox.com/s/dl/rkl4hwij4mshef2/en.pak"
19+
- curl -LSso "bin/mv000.pak" "https://cloud.disroot.org/s/GSJAI3ImXkKyhTU/download"
20+
- curl -LSso "bin/WA2_en.exe" "https://cloud.disroot.org/s/MRQp6cw7DXCY3gr/download"
1921

2022
build_script:
21-
- ISCC.exe src\WA2.iss
22-
- ISCC.exe /DIS_DMM src\WA2.iss
23+
- ps: ISCC /DVERSION=$($env:APPVEYOR_REPO_TAG_NAME.Substring(1)) src\WA2.iss
2324

2425
artifacts:
2526
- path: out\WA2_patch.exe
2627
name: WA2 patch
27-
- path: out\WA2_patch_DMM.exe
28-
name: WA2 patch (DMM)
2928

3029
before_deploy:
31-
- ps: >-
32-
if(!$env:APPVEYOR_REPO_COMMIT_MESSAGE_EXTENDED) {
30+
- ps: |-
31+
git fetch --depth=1 origin +refs/tags/*:refs/tags/*
32+
$msg = (git tag -l --format='%(contents:subject)' $env:APPVEYOR_REPO_TAG_NAME)
33+
if ($msg -ne $env:APPVEYOR_REPO_COMMIT_MESSAGE) {
34+
$env:APPVEYOR_REPO_COMMIT_MESSAGE_EXTENDED = "* $msg"
35+
} elseif (!$env:APPVEYOR_REPO_COMMIT_MESSAGE_EXTENDED) {
3336
$env:APPVEYOR_REPO_COMMIT_MESSAGE_EXTENDED = "* $env:APPVEYOR_REPO_COMMIT_MESSAGE"
3437
}
3538
3639
deploy:
3740
- provider: GitHub
3841
auth_token:
39-
secure: tZicH5QK+eVtmDDtBFAiIfKiTGo2hAhYUjYnANurws9QMQuDiXex05LiexEqGXUV
40-
artifact: out\WA2_patch.exe,out\WA2_patch_DMM.exe
42+
secure: CZYw5sWK85gAhVnP4ZimstNyYwzpXASOgksyshNFciG5RYZFjURXhLURxwwdqWVA
43+
artifact: out\WA2_patch.exe
4144
description: $(APPVEYOR_REPO_COMMIT_MESSAGE_EXTENDED)
4245
prerelease: true
4346
on:

bin/.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
WA2_en.exe
1+
*

res/164x314.bmp

201 KB
Binary file not shown.

res/55x55.bmp

12 KB
Binary file not shown.

res/ReleaseNotes.rtf

+70-42
Original file line numberDiff line numberDiff line change
@@ -1,123 +1,151 @@
11
{\rtf1\ansi\ansicpg1252\deff0\nouicompat{\fonttbl{\f0\fnil\fcharset0 Lucida Sans Unicode;}{\f1\fnil\fcharset0 Lucida Console;}}
22
{\colortbl ;\red0\green0\blue255;\red0\green255\blue255;}
33
{\*\generator Riched20 6.3.9600}\viewkind4\uc1
4-
\pard\sl240\slmult1\tx6390\b\f0\fs21\lang9 White Album 2 English Patch v0.9.0.3\par
4+
\pard\sl240\slmult1\tx6390\b\f0\fs21\lang9 White Album 2 English Patch v1.0.0.0\par
55
\par
66
77
\pard\sl240\slmult1 Website: {\b0{\field{\*\fldinst{HYPERLINK https://todokanaitl.github.io }}{\fldrslt{https://todokanaitl.github.io\ul0\cf0}}}}\b0\f0\fs21\par
88
\b Discord: {\b0{\field{\*\fldinst{HYPERLINK https://discord.gg/5rrxEUN }}{\fldrslt{https://discord.gg/5rrxEUN\ul0\cf0}}}}\b0\f0\fs21\par
9-
\b\par
10-
Includes:\par
11-
\par
9+
\b\par Includes:\par\b0\par
1210

13-
\pard\li284\sl240\slmult1\b0 *\b \b0 English executable\par
11+
\pard\li284\sl240\slmult1
12+
* English executable\par
1413
* Introductory Chapter\par
15-
* Closing Chapter\par
16-
* Some subbed videos\par
14+
* Closing Chapter & Coda\par
15+
* Video & audio-only subs\par
1716
* Translated IC CGs\par
17+
* Translated novels\par
18+
19+
\pard\sl240\slmult1\par
20+
\b v1.0.0.0\line\b0\par
21+
22+
\pard\li284\sl240\slmult1
23+
* Retranslated IC & CC\par
24+
* Coda fully translated\par
25+
* Audio-only subs\par
26+
* Digital novels\par
27+
* Installer update\par
1828

1929
\pard\sl240\slmult1\par
2030
\b v0.9.0.3\line\b0\par
2131

22-
\pard\li284\sl240\slmult1 * Installer update\par
32+
\pard\li284\sl240\slmult1
33+
* Installer update\par
2334
* Logs now stay in \highlight2\f1%TEMP%\f0\highlight0\par
2435

2536
\pard\sl240\slmult1\par
2637
\b v0.9.0.2\line\b0\par
2738

28-
\pard\li284\sl240\slmult1 * Installer update\par
39+
\pard\li284\sl240\slmult1
40+
* Installer update\par
2941

3042
\pard\sl240\slmult1\par
3143
\b v0.9.0.1\line\b0\par
3244

33-
\pard\li284\sl240\slmult1 * Modernized installer\par
45+
\pard\li284\sl240\slmult1
46+
* Modernized installer\par
3447

3548
\pard\sl240\slmult1\par
3649
\b v0.9.0.0\line\b0\par
3750

38-
\pard\li284\sl240\slmult1 * Closing chapter fully translated\par
51+
\pard\li284\sl240\slmult1
52+
* Closing chapter fully translated\par
3953

4054
\pard\sl240\slmult1\par
4155
\b v0.8.7.1\line\b0\par
4256

43-
\pard\li284\sl240\slmult1 * Bug fixes\par
57+
\pard\li284\sl240\slmult1
58+
* Bug fixes\par
4459

4560
\pard\sl240\slmult1\b\par
46-
v0.8.7.0\par
47-
\par
61+
\b v0.8.7.0\line\b0\par
4862

49-
\pard\li284\sl240\slmult1\b0 * Bug fixes\par
63+
\pard\li284\sl240\slmult1\b0
64+
* Bug fixes\par
5065
* Update ev150.pak\par
5166
* Installer update\par
5267

5368
\pard\sl240\slmult1\b\par
54-
v0.8.6.0\par
69+
\b v0.8.6.0\line\b0\par
5570

56-
\pard\li284\sl240\slmult1\b0\line * Added IC CGs\par
71+
\pard\li284\sl240\slmult1\b0\line
72+
* Added IC CGs\par
5773
* Installer update\par
5874

5975
\pard\sl240\slmult1\b\par
60-
v0.8.5.2\par
76+
\b v0.8.5.2\line\b0\par
6177

62-
\pard\li284\sl240\slmult1\b0\line * Bug fix\par
78+
\pard\li284\sl240\slmult1\b0\line
79+
* Bug fix\par
6380

6481
\pard\sl240\slmult1\b\par
65-
v0.8.5.0\par
82+
\b v0.8.5.0\line\b0\par
6683

67-
\pard\li284\sl240\slmult1\b0\line * Installer update\par
84+
\pard\li284\sl240\slmult1\b0\line
85+
* Installer update\par
6886
* Bug fixes\par
6987

7088
\pard\sl240\slmult1\b\par
71-
v0.8.4.8\par
89+
\b v0.8.4.8\line\b0\par
7290

73-
\pard\li284\sl240\slmult1\b0\line * Installer update\par
91+
\pard\li284\sl240\slmult1\b0\line
92+
* Installer update\par
7493

7594
\pard\sl240\slmult1\par
76-
\b v0.8.4.6\par
95+
\b v0.8.4.6\line\b0\par
7796

78-
\pard\li284\sl240\slmult1\b0\line * Installer update\par
97+
\pard\li284\sl240\slmult1\b0\line
98+
* Installer update\par
7999

80100
\pard\sl240\slmult1\par
81-
\b v0.8.4.4\par
101+
\b v0.8.4.4\line\b0\par
82102

83-
\pard\li284\sl240\slmult1\b0\line * Installer update\par
103+
\pard\li284\sl240\slmult1\b0\line
104+
* Installer update\par
84105

85106
\pard\sl240\slmult1\par
86-
\b v0.8.4.2\par
107+
\b v0.8.4.2\line\b0\par
87108

88-
\pard\li284\sl240\slmult1\b0\line * Installer update\par
109+
\pard\li284\sl240\slmult1\b0\line
110+
* Installer update\par
89111

90112
\pard\sl240\slmult1\par
91-
\b v0.8.4.0\par
113+
\b v0.8.4.0\line\b0\par
92114

93-
\pard\li284\sl240\slmult1\b0\line * Converted to web-based installer\par
115+
\pard\li284\sl240\slmult1\b0\line
116+
* Converted to web-based installer\par
94117

95118
\pard\sl240\slmult1\par
96-
\b v0.8.3.0\line\par
119+
\b v0.8.3.0\line\b0\par
97120

98-
\pard\li284\sl240\slmult1\b0 * Installer now saves logs in \highlight2\f1%USERPROFILE%\\Documents\\White Album 2 Patch Logs\f0\par
99-
\highlight0 * Bug fix\par
121+
\pard\li284\sl240\slmult1\b0
122+
* Installer now saves logs in \highlight2\f1%USERPROFILE%\\Documents\\White Album 2 Patch Logs\f0\highlight0\par
123+
* Bug fix\par
100124

101125
\pard\sl240\slmult1\par
102-
\b v0.8.2.0\par
126+
\b v0.8.2.0\line\b0\par
103127

104-
\pard\li284\sl240\slmult1\b0\line * Installer update\par
128+
\pard\li284\sl240\slmult1\b0\line
129+
* Installer update\par
105130

106131
\pard\sl240\slmult1\par
107-
\b v0.8.1.2\par
132+
\b v0.8.1.2\line\b0\par
108133

109-
\pard\li284\sl240\slmult1\b0\line * Bug fixes\par
134+
\pard\li284\sl240\slmult1\b0\line
135+
* Bug fixes\par
110136

111137
\pard\sl240\slmult1\par
112-
\b v0.8.1.0\par
138+
\b v0.8.1.0\line\b0\par
113139

114-
\pard\li284\sl240\slmult1\b0\line * Script update\par
140+
\pard\li284\sl240\slmult1\b0\line
141+
* Script update\par
115142
* Installer update\par
116143

117144
\pard\sl240\slmult1\par
118-
\b v0.8.0.0\par
145+
\b v0.8.0.0\line\b0\par
119146

120-
\pard\li284\sl240\slmult1\b0\line * English executable\par
147+
\pard\li284\sl240\slmult1\b0\line
148+
* English executable\par
121149
* Introductory Chapter\par
122150
* Closing Chapter Common Route\par
123151
* Closing Chapter Setsuna Route (except for the last H-scene)\par

0 commit comments

Comments
 (0)