Skip to content

Commit

Permalink
chore: 0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
twlite committed Oct 6, 2024
1 parent 27188d3 commit 08fbe05
Show file tree
Hide file tree
Showing 7 changed files with 60 additions and 6 deletions.
2 changes: 1 addition & 1 deletion apps/yasumu/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@yasumu/app",
"private": true,
"version": "0.0.0",
"version": "0.0.1",
"type": "module",
"scripts": {
"clean": "cd src-tauri && cargo clean",
Expand Down
2 changes: 1 addition & 1 deletion apps/yasumu/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 apps/yasumu/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "yasumu"
version = "0.0.0"
version = "0.0.1"
description = "A Tauri App"
authors = ["you"]
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion apps/yasumu/src-tauri/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ pub fn run() {

main_window.hide_menu().unwrap();
main_window.maximize().unwrap();
main_window.open_devtools();
// main_window.open_devtools();

Ok(())
})
Expand Down
2 changes: 1 addition & 1 deletion apps/yasumu/src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"productName": "Yasumu",
"version": "0.0.0",
"version": "0.0.1",
"identifier": "com.yasumu.dev",
"build": {
"beforeDevCommand": "yarn dev",
Expand Down
54 changes: 54 additions & 0 deletions changelogs/0.0.1_CHANGELOGS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
# Changelog

All notable changes to this project will be documented in this file.

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

## [0.0.1] - 2024-10-06

### Added

- Basic env templating
- Add email related api in scripts
- Email script api
- Add website
- Basic shortcut keys implementation
- Add request script isolation
- Query params and parameter table

### Changed

- Rework on environments

### Fixed

- Update tanxium to 0.1.5
- Make the page responsive
- Keystroke issue fixed
- Script binding
- Improve requests binding

### Miscellaneous

- Deps
- Update readme
- Add discord server url
- Add funding links
- Create code of conduct
- Setup renovate
- Deps
- Remove test workspace
- Build fix
- Update funding links
- Add changelogs generation
- Update readme

### Removed

- Remove unwanted code
- Remove defaults

[0.0.1]: https://github.com/yasumu-org/yasumu/compare/yasumu-canary-0.0.0..0.0.1

<!-- generated by git-cliff -->
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
],
"scripts": {
"build": "yarn workspaces foreach -pt -A --exclude @yasumu/app run build",
"changelog": "git-cliff --unreleased --tag $(node -p \"require('./package.json').version\") --output ./changelogs/$(node -p \"require('./package.json').version\")_CHANGELOGS.md",
"changelog": "git-cliff --unreleased --tag $(node -p \"require('./apps/yasumu/package.json').version\") --output ./changelogs/$(node -p \"require('./apps/yasumu/package.json').version\")_CHANGELOGS.md",
"format": "prettier --write \"./apps/**/*.{js,ts,jsx,tsx}\" \"./packages/**/*.{js,ts,jsx,tsx}\""
},
"repository": {
Expand Down

0 comments on commit 08fbe05

Please sign in to comment.