Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SY-1179 fix update available button not appearing #828

Merged
merged 2 commits into from
Sep 16, 2024
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 alamos/py/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "alamos"
version = "0.28.0"
version = "0.29.0"
description = ""
authors = ["Emiliano Bonilla <ebonilla@synnaxlabs.com>"]
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion alamos/ts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@synnaxlabs/alamos",
"version": "0.28.0",
"version": "0.29.0",
"type": "module",
"description": "Distributed instrumentation for Synnax",
"repository": "https://github.com/synnaxlabs/synnax/tree/main/freighter/ts",
Expand Down
2 changes: 1 addition & 1 deletion client/py/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "synnax"
version = "0.28.0"
version = "0.29.0"
description = "Synnax Client Library"
keywords = ["Synnax", "Synnax Python Client"]
authors = ["emiliano bonilla <emilbon99@gmail.com>"]
Expand Down
2 changes: 1 addition & 1 deletion client/ts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@synnaxlabs/client",
"version": "0.28.0",
"version": "0.29.0",
"description": "The Synnax Client Library",
"keywords": [
"synnax",
Expand Down
2 changes: 1 addition & 1 deletion console/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@synnaxlabs/console",
"private": true,
"version": "0.28.6",
"version": "0.29.0",
"type": "module",
"scripts": {
"dev": "tauri dev",
Expand Down
3 changes: 2 additions & 1 deletion console/src/version/Updater.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// included in the file licenses/APL.txt.

import { Button, Status, useAsyncEffect } from "@synnaxlabs/pluto";
import { TimeSpan } from "@synnaxlabs/x";
import { id, TimeSpan } from "@synnaxlabs/x";
import { check } from "@tauri-apps/plugin-updater";
import { useState } from "react";

Expand All @@ -26,6 +26,7 @@ export const useCheckForUpdates = (): boolean => {
if (update?.available !== true || available) return;
setAvailable(true);
addStatus({
key: `versionUpdate-${id.id()}`,
variant: "info",
message: `Update available`,
});
Expand Down
2 changes: 1 addition & 1 deletion drift/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@synnaxlabs/drift",
"version": "0.28.0",
"version": "0.29.0",
"description": "State synchronization and Redux state synchronization for Tauri Apps",
"repository": "https://github.com/synnaxlabs/synnax/tree/main/drift",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion freighter/py/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "synnax-freighter"
version = "0.28.0"
version = "0.29.0"
description = ""
authors = ["emiliano bonilla <emilbon99@gmail.com>"]
packages = [
Expand Down
2 changes: 1 addition & 1 deletion freighter/ts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@synnaxlabs/freighter",
"version": "0.28.0",
"version": "0.29.0",
"type": "module",
"description": "a modular transport abstraction",
"repository": "https://github.com/synnaxlabs/synnax/tree/main/freighter/ts",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.28.0",
"version": "0.29.0",
"private": true,
"scripts": {
"build": "npx turbo build --cache-dir=./.turbo-cache",
Expand Down
2 changes: 1 addition & 1 deletion pluto/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@synnaxlabs/pluto",
"version": "0.28.5",
"version": "0.29.0",
"type": "module",
"scripts": {
"build": "tsc --noEmit && vite build",
Expand Down
2 changes: 1 addition & 1 deletion synnax/pkg/version/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.28.2
0.29.0
2 changes: 1 addition & 1 deletion x/ts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@synnaxlabs/x",
"version": "0.28.0",
"version": "0.29.0",
"type": "module",
"description": "Common Utilities for Synnax Labs",
"repository": "https://github.com/synnaxlabs/synnax/tree/main/x/go",
Expand Down
Loading