Skip to content

Commit 68fb854

Browse files
Merge pull request #80 from SpringRoll/release/1.2.0
SR Studio V 1.2.0 Release
2 parents b8941b8 + 62601f4 commit 68fb854

19 files changed

+12333
-6502
lines changed

.github/workflows/build-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
strategy:
1313
matrix:
14-
node-version: [10.x]
14+
node-version: [16.x]
1515

1616
steps:
1717
- uses: actions/checkout@v1

.github/workflows/full-test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
strategy:
1313
matrix:
14-
node-version: [10.x]
14+
node-version: [16.x]
1515

1616
steps:
1717
- uses: actions/checkout@v1

.nvmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
16.14.2

.tool-versions

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
nodejs 16.14.2

CHANGELOG.md

+24-4
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,51 @@
11
# Changelog
2+
23
All notable changes to this project will be documented in this file.
34

45
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
56
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
67

7-
## [1.1.1] - unreleased
8-
- Upgraded follow-redirects dependancy for security alert
8+
## [1.2.0] - 2022-12-02
9+
10+
### Changed
11+
12+
- Upgraded follow-redirects dependency for security alert
13+
- Bumped Node version for tests to 16.x
14+
- Bumped electron version
15+
- Fixed unit test errors
16+
- Created new testing process for CaptionStudio
17+
18+
### Fixed
19+
20+
- fixed bug when selecting a caption that caused the new audio file to not be selected and loaded into the wave form
921

1022
## [1.1.0] - 2021-08-16
23+
1124
### Added
25+
1226
- JSON Editor mode switch. Allows toggling between 'code' and 'form' modes, for better usability.
27+
1328
### Fixed
29+
1430
- Overflow: scroll causing 3-4 scroll bar regions to show up when unecessary
1531
- Fixed styles for caption preview next/previous buttons so they properly show up side by side
1632

1733
## [1.0.0] - 2020-03-31
34+
1835
### Added
36+
1937
- Unit tests added for caption studio components and classes
2038

2139
### Changed
40+
2241
- Caption Studio now reads audio files directly from project root, or user specified audio directory
2342
- Caption studio now allows for saving/opening caption JSON files directly from projects
43+
2444
### Added
45+
2546
- This CHANGELOG
47+
2648
- VUE front end renderer
2749
- Electron back end
2850
- Project Templating via Github or bundled seed projects
2951
- Caption Studio Initial Implementation
30-
31-

README.md

+11
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,17 @@ Caption Studio is designed to help you in creating audio caption files (JSON for
2020
###
2121

2222
## Project setup
23+
For `nvm`:
24+
```
25+
nvm use
26+
```
27+
28+
For `asdf`:
29+
```
30+
asdf install nodejs
31+
```
32+
33+
Then
2334
```
2435
npm install
2536
```

babel.config.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
module.exports = {
22
presets: [
33
'@vue/cli-plugin-babel/preset'
4-
]
4+
],
5+
plugins: ['@babel/plugin-proposal-optional-chaining']
56
};

0 commit comments

Comments
 (0)