Skip to content

Commit

Permalink
Merge pull request #41 from oligami-0424/main
Browse files Browse the repository at this point in the history
add ctrl+z ctrl+y ctrl+delete
  • Loading branch information
oligamiq committed Apr 8, 2023
2 parents beeca0e + 4db7a4e commit 921c206
Show file tree
Hide file tree
Showing 14 changed files with 479 additions and 134 deletions.
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2023 oligami

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# IroSphere

これは[Tali](https://github.com/TaliPhoto)さんが、[youtube](https://youtu.be/jrCr4j_qdPo)で紹介した、アイデアまで含めてCC0のソフトであるIroSphereというソフトをtauriというフレームワークで一から書き直したものです。<br>
[本家](https://github.com/TaliPhoto/IroSphere)
[本家](https://github.com/TaliPhoto/IroSphere)<br>
機能の要望などはissueなどにお願いします。

## install方法
Expand All @@ -12,7 +12,8 @@ linux(debian系列): deb <br>
linux: AppImage<br>
mac: dmg<br>
※私はwindowユーザーなので、web版以外は実際に他のOSで正常に動作するかは知りません<br>
※linuxではrustがlowercaseな都合上アプリ名がiro-sphereとなっているようなので気を付けてください
※linuxではrustがlowercaseな都合上アプリ名がiro-sphereとなっているようなので気を付けてください<br>
実際のサイズは6.6MB程です! 手軽にどうぞ! (Windows)

## 使い方
画像をクリックまたは長押しで右のSphereに色が付きます。<br>
Expand All @@ -33,6 +34,7 @@ Fキーなどの便利機能や他の機能などは搭載していません。
- fキーの実装
- リセット方法がない
- スマホ用に縦長モードを搭載
- ショトカ以外でファイルを開く方法を考える

## License
Mit Licenseです。アイコンなどがデフォルトのままですから...
1 change: 1 addition & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>IroSphere</title>
<link rel="stylesheet" href="./src/style.scss">
</head>

<body>
Expand Down
200 changes: 198 additions & 2 deletions package-lock.json

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

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "irosphere",
"private": true,
"version": "1.0.2",
"version": "1.0.3",
"type": "module",
"scripts": {
"tauri": "tauri",
Expand All @@ -12,6 +12,7 @@
},
"devDependencies": {
"@types/three": "^0.150.1",
"sass": "^1.61.0",
"three": "^0.151.2",
"typescript": "^4.9.3",
"vite": "^4.2.0"
Expand Down
2 changes: 1 addition & 1 deletion 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
@@ -1,6 +1,6 @@
[package]
name = "IroSphere"
version = "1.0.2"
version = "1.0.3"
description = "A Tauri App"
authors = ["oligami"]
license = "MIT License"
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
},
"package": {
"productName": "IroSphere",
"version": "1.0.2"
"version": "1.0.3"
},
"tauri": {
"allowlist": {
Expand Down
Loading

0 comments on commit 921c206

Please sign in to comment.