Skip to content

Commit

Permalink
Bumped the version to 1.2.0 and wrote some change logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Garethp committed Jan 21, 2019
1 parent 44161cd commit acb3836
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## Changelog

#### Version 1.2.0
* Migration from JavaScript to TypeScript
* Cleaning up the code quality of basically every part of the application

#### Version 1.1.7
* Fixing name dictionary

Expand Down
7 changes: 7 additions & 0 deletions changeLogs/1.2.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
## Version 1.2.0

#### Technical Changes
The major change for this release isn't a feature change, but rather a technical one. RikaiRebuilt has been entirely
rewritten in TypeScript, which means that it now has much better typing and error checking. Additionally, the code
has been cleaned up quite a bit. There's still way more cleaning up to go on, but this is a massive step forward in
making sure that the code is more readable and maintainable.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 2,
"author": "Gareth Parker",
"name": "RikaiRebuilt",
"version": "1.1.7",
"version": "1.2.0",

"applications": {
"gecko": {
Expand Down
13 changes: 10 additions & 3 deletions options/options.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
background: none;
}
</style>
<title>RikaiRebuilt Options</title>
</head>

<body>
Expand Down Expand Up @@ -148,20 +149,20 @@ <h4><b>Keymap</b></h4>
<div class="row">
<div class="col-4"><label class="my-1 mr-2" for="keymap-sendToAnki">Real-Time Anki
Import</label></div>
<div class="col-3"><input type="input" class="form-control keymap-input"
<div class="col-3"><input type="text" class="form-control keymap-input"
id="keymap-sendToAnki"/></div>
</div>

<div class="row">
<div class="col-4"><label class="my-1 mr-2" for="keymap-playAudio">Play JDIC Audio</label></div>
<div class="col-3"><input type="input" class="form-control keymap-input" id="keymap-playAudio"/>
<div class="col-3"><input type="text" class="form-control keymap-input" id="keymap-playAudio"/>
</div>
</div>

<div class="row">
<div class="col-4"><label class="my-1 mr-2" for="keymap-selectNextDictionary">Select Next
Dictionary</label></div>
<div class="col-3"><input type="input" class="form-control keymap-input"
<div class="col-3"><input type="text" class="form-control keymap-input"
id="keymap-selectNextDictionary"/></div>
</div>
</form>
Expand Down Expand Up @@ -371,6 +372,12 @@ <h4><b>Keymap</b></h4>
</ul>
</div>
<div class="tab-pane fade" id="changelog" role="tabpanel" aria-labelledby="changelog-tab">
<h4>Version 1.2.0</h4>
<ul>
<li>Migration from JavaScript to TypeScript</li>
<li>Cleaning up the code quality of basically every part of this application</li>
</ul>

<h4>Version 1.1.7</h4>
<ul>
<li>Fixing lookups in the name dictionary</li>
Expand Down

0 comments on commit acb3836

Please sign in to comment.