Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "open-diff",
"version": "1.1.2",
"version": "1.2.0",
"private": true,
"license": "Apache-2.0",
"repository": {
Expand Down
64 changes: 32 additions & 32 deletions src-tauri/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 src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ members = [
resolver = "2"

[workspace.package]
version = "1.1.2"
version = "1.2.0"
edition = "2021"
authors = ["Open Diff Contributors"]
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "OpenDiff",
"version": "1.1.2",
"version": "1.2.0",
"identifier": "io.github.kygo8.open-diff",
"build": {
"beforeDevCommand": "corepack pnpm dev",
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.macos.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"icon": ["icons/icon.icns"],
"macOS": {
"bundleName": "OpenDiff",
"bundleVersion": "1.1.2",
"bundleVersion": "1.2.0",
"minimumSystemVersion": "11.0",
"hardenedRuntime": true,
"exceptionDomain": "github.com",
Expand Down
2 changes: 1 addition & 1 deletion src/app/appMeta.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/** Product metadata for Help / About (no third-party brand assets). */

export const APP_VERSION = '1.1.2'
export const APP_VERSION = '1.2.0'
export const DOCS_URL = 'https://github.com/kygo8/open-diff#readme'
export const RELEASES_URL = 'https://github.com/kygo8/open-diff/releases'
export const SUPPORT_URL = 'https://github.com/kygo8/open-diff/issues'
2 changes: 1 addition & 1 deletion src/layouts/AppLayout.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ describe('AppLayout command palette', () => {

expect(wrapper.find('[data-testid="about-dialog"]').exists()).toBe(true)
expect(wrapper.find('[data-testid="about-dialog"]').text()).toContain('About Open Diff')
expect(wrapper.find('[data-testid="about-dialog"]').text()).toContain('1.1.2')
expect(wrapper.find('[data-testid="about-dialog"]').text()).toContain('1.2.0')
})

it('shows Session Actions Edit Search View Tools Help on Folder Compare', () => {
Expand Down
Loading