Skip to content

Commit 8a9dac3

Browse files
authored
v1.2 (#103)
1 parent 2fe91f9 commit 8a9dac3

File tree

87 files changed

+651
-595
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

87 files changed

+651
-595
lines changed

.github/workflows/android-demos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141

4242
- name: Override gradle settings
4343
run: sed -i "s/com.android.tools.build:gradle:[0-9]*\.[0-9]*\.[0-9]*/com.android.tools.build:gradle:${{ matrix.agp-version }}/g" build.gradle
44-
44+
4545
- name: set up JDK ${{ matrix.java-version }}
4646
uses: actions/setup-java@v3
4747
with:

.github/workflows/dotnet.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -39,19 +39,19 @@ jobs:
3939

4040
strategy:
4141
matrix:
42-
os: [ubuntu-latest, macos-latest, macos-13, windows-latest]
43-
dotnet-version: [2.1.x, 3.0.x, 3.1.x, 5.0.x, 6.0.x, 8.0.x]
42+
os: [ubuntu-latest, macos-13, macos-latest, windows-latest]
43+
dotnet-version: [2.1.818, 3.0.103, 3.1.426, 5.0.408, 6.0.x, 8.0.x]
4444
include:
45-
- dotnet-version: 2.1.x
45+
- dotnet-version: 2.1.818
4646
binding-framework: netstandard2.0
4747
test-framework: netcoreapp2.1
48-
- dotnet-version: 3.0.x
48+
- dotnet-version: 3.0.103
4949
binding-framework: netcoreapp3.0
5050
test-framework: netcoreapp3.0
51-
- dotnet-version: 3.1.x
51+
- dotnet-version: 3.1.426
5252
binding-framework: netcoreapp3.0
5353
test-framework: netcoreapp3.1
54-
- dotnet-version: 5.0.x
54+
- dotnet-version: 5.0.408
5555
binding-framework: netcoreapp3.0
5656
test-framework: net5.0
5757
- dotnet-version: 6.0.x
@@ -62,22 +62,22 @@ jobs:
6262
test-framework: net8.0
6363
exclude:
6464
- os: ubuntu-latest
65-
dotnet-version: 2.1.x
65+
dotnet-version: 2.1.818
6666
- os: ubuntu-latest
67-
dotnet-version: 3.0.x
67+
dotnet-version: 3.0.103
6868
- os: ubuntu-latest
69-
dotnet-version: 3.1.x
69+
dotnet-version: 3.1.426
7070
- os: ubuntu-latest
71-
dotnet-version: 5.0.x
71+
dotnet-version: 5.0.408
7272
- os: macos-latest
73-
dotnet-version: 2.1.x
73+
dotnet-version: 2.1.818
7474
- os: macos-latest
75-
dotnet-version: 3.0.x
75+
dotnet-version: 3.0.103
7676
- os: macos-latest
77-
dotnet-version: 3.1.x
78-
- os: macos-latest
79-
dotnet-version: 5.0.x
77+
dotnet-version: 3.1.426
8078
- os: macos-latest
79+
dotnet-version: 5.0.408
80+
- os: macos-13
8181
dotnet-version: 6.0.x
8282
- os: macos-13
8383
dotnet-version: 8.0.x

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -787,6 +787,12 @@ For more details, see the [Node.js SDK](./binding/nodejs/).
787787

788788
## Releases
789789

790+
### v1.2.0 - June 13th, 2025
791+
792+
- Improved handling of heteronyms
793+
- Improved stability and performance
794+
- Reduced model size
795+
790796
### v1.1.0 - February 24th, 2025
791797

792798
- Added support for Spanish voices

binding/android/Orca/orca/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apply plugin: 'com.android.library'
22

33
ext {
44
PUBLISH_GROUP_ID = 'ai.picovoice'
5-
PUBLISH_VERSION = '1.1.2'
5+
PUBLISH_VERSION = '1.2.0'
66
PUBLISH_ARTIFACT_ID = 'orca-android'
77
}
88

binding/android/OrcaTestApp/orca-test-app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,15 +111,15 @@ dependencies {
111111
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
112112
implementation 'com.google.code.gson:gson:2.10'
113113
implementation 'com.google.errorprone:error_prone_annotations:2.36.0'
114-
implementation 'ai.picovoice:orca-android:1.1.2'
114+
implementation 'ai.picovoice:orca-android:1.2.0'
115115

116116
// Espresso UI Testing
117117
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
118118
androidTestImplementation('androidx.test.espresso:espresso-core:3.2.0', {
119119
exclude group: 'com.android.support', module: 'support-annotations'
120120
})
121121
androidTestImplementation('androidx.test.espresso:espresso-intents:3.5.1')
122-
androidTestImplementation('ai.picovoice:orca-android:1.1.2')
122+
androidTestImplementation('ai.picovoice:orca-android:1.2.0')
123123
}
124124

125125
afterEvaluate {

binding/dotnet/Orca/Orca.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<TargetFrameworks>net8.0;net6.0;netcoreapp3.0;netstandard2.0</TargetFrameworks>
4-
<Version>1.1.4</Version>
4+
<Version>1.2.1</Version>
55
<Authors>Picovoice</Authors>
66
<Company />
77
<Product>Orca Streaming Text-to-Speech Engine</Product>

binding/ios/Orca-iOS.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22
s.name = 'Orca-iOS'
33
s.module_name = 'Orca'
4-
s.version = '1.1.2'
4+
s.version = '1.2.0'
55
s.license = {:type => 'Apache 2.0'}
66
s.summary = 'iOS binding for Picovoice\'s Orca Text-to-Speech Engine.'
77
s.description =

binding/ios/OrcaAppTest/OrcaAppTest.xcodeproj/project.pbxproj

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
objects = {
88

99
/* Begin PBXBuildFile section */
10+
02B588CF2DFBA7E3007E7026 /* Orca in Frameworks */ = {isa = PBXBuildFile; productRef = 02B588CE2DFBA7E3007E7026 /* Orca */; };
1011
1E00644C27CEDF9B006FF6E9 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E00644B27CEDF9B006FF6E9 /* AppDelegate.swift */; };
1112
1E00645027CEDF9B006FF6E9 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E00644F27CEDF9B006FF6E9 /* ViewController.swift */; };
1213
1E00645327CEDF9B006FF6E9 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 1E00645127CEDF9B006FF6E9 /* Main.storyboard */; };
@@ -63,6 +64,7 @@
6364
isa = PBXFrameworksBuildPhase;
6465
buildActionMask = 2147483647;
6566
files = (
67+
02B588CF2DFBA7E3007E7026 /* Orca in Frameworks */,
6668
);
6769
runOnlyForDeploymentPostprocessing = 0;
6870
};
@@ -236,7 +238,7 @@
236238
);
237239
mainGroup = 1E00643F27CEDF9B006FF6E9;
238240
packageReferences = (
239-
1E7C0A402D84D9C700A5350A /* XCRemoteSwiftPackageReference "orca" */,
241+
02B588CD2DFBA7E3007E7026 /* XCRemoteSwiftPackageReference "orca" */,
240242
);
241243
productRefGroup = 1E00644927CEDF9B006FF6E9 /* Products */;
242244
projectDirPath = "";
@@ -655,17 +657,22 @@
655657
/* End XCLocalSwiftPackageReference section */
656658

657659
/* Begin XCRemoteSwiftPackageReference section */
658-
1E7C0A402D84D9C700A5350A /* XCRemoteSwiftPackageReference "orca" */ = {
660+
02B588CD2DFBA7E3007E7026 /* XCRemoteSwiftPackageReference "orca" */ = {
659661
isa = XCRemoteSwiftPackageReference;
660662
repositoryURL = "https://github.com/Picovoice/orca";
661663
requirement = {
662664
kind = exactVersion;
663-
version = 1.1.2;
665+
version = 1.2.0;
664666
};
665667
};
666668
/* End XCRemoteSwiftPackageReference section */
667669

668670
/* Begin XCSwiftPackageProductDependency section */
671+
02B588CE2DFBA7E3007E7026 /* Orca */ = {
672+
isa = XCSwiftPackageProductDependency;
673+
package = 02B588CD2DFBA7E3007E7026 /* XCRemoteSwiftPackageReference "orca" */;
674+
productName = Orca;
675+
};
669676
E109D19D2CFE4DBC0014F5AA /* Orca */ = {
670677
isa = XCSwiftPackageProductDependency;
671678
package = E109D19B2CFE4DA30014F5AA /* XCLocalSwiftPackageReference "../../../../orca" */;

binding/nodejs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@picovoice/orca-node",
3-
"version": "1.1.1",
3+
"version": "1.2.0",
44
"description": "Picovoice Orca Node.js binding",
55
"main": "dist/index.js",
66
"types": "dist/types/index.d.ts",

binding/python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949

5050
setuptools.setup(
5151
name="pvorca",
52-
version="1.1.1",
52+
version="1.2.0",
5353
author="Picovoice",
5454
author_email="[email protected]",
5555
description="Orca Streaming Text-to-Speech Engine",

0 commit comments

Comments
 (0)