Skip to content

Commit

Permalink
Merge pull request #155 from xch-dev/release-0.8.2
Browse files Browse the repository at this point in the history
Release 0.8.2
  • Loading branch information
Rigidity authored Dec 17, 2024
2 parents fb17b8b + 2777e40 commit 08c724c
Show file tree
Hide file tree
Showing 16 changed files with 41 additions and 41 deletions.
16 changes: 8 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/sage-api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sage-api"
version = "0.8.1"
version = "0.8.2"
edition = "2021"
license = "Apache-2.0"
description = "API definitions for the Sage wallet."
Expand Down
2 changes: 1 addition & 1 deletion crates/sage-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sage-cli"
version = "0.8.1"
version = "0.8.2"
edition = "2021"
license = "Apache-2.0"
description = "A CLI and RPC for Sage wallet."
Expand Down
2 changes: 1 addition & 1 deletion crates/sage-config/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sage-config"
version = "0.8.1"
version = "0.8.2"
edition = "2021"
license = "Apache-2.0"
description = "Configuration for the Sage wallet."
Expand Down
2 changes: 1 addition & 1 deletion crates/sage-database/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sage-database"
version = "0.8.1"
version = "0.8.2"
edition = "2021"
license = "Apache-2.0"
description = "The SQLite database for Sage."
Expand Down
2 changes: 1 addition & 1 deletion crates/sage-keychain/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sage-keychain"
version = "0.8.1"
version = "0.8.2"
edition = "2021"
license = "Apache-2.0"
description = "A simple password based keychain implementation for Sage."
Expand Down
2 changes: 1 addition & 1 deletion crates/sage-wallet/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sage-wallet"
version = "0.8.1"
version = "0.8.2"
edition = "2021"
license = "Apache-2.0"
description = "The driver code and sync logic for Sage wallet."
Expand Down
2 changes: 1 addition & 1 deletion crates/sage/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sage"
version = "0.8.1"
version = "0.8.2"
edition = "2021"
license = "Apache-2.0"
description = "A high level abstraction for running Sage wallet."
Expand Down
2 changes: 1 addition & 1 deletion plugins/tauri-plugin-safe-area-insets/dist-js/index.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
var core = require('@tauri-apps/api/core');

async function getInsets() {
return await core.invoke("plugin:window-insets|get_insets");
return await core.invoke('plugin:window-insets|get_insets');
}

exports.getInsets = getInsets;
8 changes: 4 additions & 4 deletions plugins/tauri-plugin-safe-area-insets/dist-js/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export interface Insets {
top: number;
bottom: number;
left: number;
right: number;
top: number;
bottom: number;
left: number;
right: number;
}
export declare function getInsets(): Promise<Insets>;
2 changes: 1 addition & 1 deletion plugins/tauri-plugin-safe-area-insets/dist-js/index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { invoke } from '@tauri-apps/api/core';

async function getInsets() {
return await invoke("plugin:window-insets|get_insets");
return await invoke('plugin:window-insets|get_insets');
}

export { getInsets };
4 changes: 2 additions & 2 deletions plugins/tauri-plugin-safe-area-insets/guest-js/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { invoke } from "@tauri-apps/api/core";
import { invoke } from '@tauri-apps/api/core';

export interface Insets {
top: number;
Expand All @@ -8,5 +8,5 @@ export interface Insets {
}

export async function getInsets(): Promise<Insets> {
return await invoke("plugin:safe-area-insets|get_insets");
return await invoke('plugin:safe-area-insets|get_insets');
}
26 changes: 13 additions & 13 deletions plugins/tauri-plugin-safe-area-insets/rollup.config.js
Original file line number Diff line number Diff line change
@@ -1,31 +1,31 @@
import { readFileSync } from 'fs'
import { join } from 'path'
import { cwd } from 'process'
import typescript from '@rollup/plugin-typescript'
import { readFileSync } from 'fs';
import { join } from 'path';
import { cwd } from 'process';
import typescript from '@rollup/plugin-typescript';

const pkg = JSON.parse(readFileSync(join(cwd(), 'package.json'), 'utf8'))
const pkg = JSON.parse(readFileSync(join(cwd(), 'package.json'), 'utf8'));

export default {
input: 'guest-js/index.ts',
output: [
{
file: pkg.exports.import,
format: 'esm'
format: 'esm',
},
{
file: pkg.exports.require,
format: 'cjs'
}
format: 'cjs',
},
],
plugins: [
typescript({
declaration: true,
declarationDir: `./${pkg.exports.import.split('/')[0]}`
})
declarationDir: `./${pkg.exports.import.split('/')[0]}`,
}),
],
external: [
/^@tauri-apps\/api/,
...Object.keys(pkg.dependencies || {}),
...Object.keys(pkg.peerDependencies || {})
]
}
...Object.keys(pkg.peerDependencies || {}),
],
};
2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sage-tauri"
version = "0.8.1"
version = "0.8.2"
description = "A next generation Chia wallet."
authors = ["Rigidity <[email protected]>"]
license = "Apache-2.0"
Expand Down
6 changes: 3 additions & 3 deletions src-tauri/gen/apple/sage-tauri_iOS/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>0.8.1</string>
<string>0.8.2</string>
<key>CFBundleVersion</key>
<string>0.8.1</string>
<string>0.8.2</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>UILaunchStoryboardName</key>
Expand All @@ -43,4 +43,4 @@
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
</dict>
</plist>
</plist>
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"productName": "Sage",
"version": "0.8.1",
"version": "0.8.2",
"identifier": "com.rigidnetwork.sage",
"build": {
"frontendDist": "../dist",
Expand Down

0 comments on commit 08c724c

Please sign in to comment.