Skip to content

Commit

Permalink
Update v2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
inulute committed Mar 7, 2024
1 parent 1bc4ffe commit a859986
Show file tree
Hide file tree
Showing 10 changed files with 265 additions and 23 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,5 @@ dist-ssr
*.njsproj
*.sln
*.sw?

src/crrtver.inu
21 changes: 9 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<div align="center">
<img src="https://lh3.googleusercontent.com/drive-viewer/AEYmBYRaOUOWZA5LSFZEtHTCvvwiujs9XghM2DkrPwzhxJVh16zfFFC8OPncgy4iX4kqnUOfgXZ5i5_FKGPo5ZagaSIyAtVRKw=s2560" alt="UnlimCloud Logo" width="200"/>
<img src="./src/assets/unlim-clear.png" alt="UnlimCloud Logo" width="200"/>
<h1>UnlimCloud Desktop App</h1>
</div>

Welcome to the Unofficial Desktop Application for [UnlimCloud](https://unlimcloud.cloud)

## About UnlimCloud <img src="https://lh3.googleusercontent.com/drive-viewer/AEYmBYRaOUOWZA5LSFZEtHTCvvwiujs9XghM2DkrPwzhxJVh16zfFFC8OPncgy4iX4kqnUOfgXZ5i5_FKGPo5ZagaSIyAtVRKw=s2560" alt="UnlimCloud Logo" width="30"/>
## About UnlimCloud <img src="./src/assets/unlim-clear.png" alt="UnlimCloud Logo" width="30"/>

UnlimCloud offers a unique cloud storage solution, utilizing your Telegram ID as a secure and private storage identifier. Enjoy unlimited cloud storage for your files, accessible through this sleek desktop application.

Expand All @@ -17,7 +17,7 @@ UnlimCloud offers a unique cloud storage solution, utilizing your Telegram ID as

<h2>📦 Releases</h2>

You can download the latest releases for **Windows, Linux and Mac** from the release section.
You can download the latest releases for Windows from the release section.

<div align="center">

Expand All @@ -30,7 +30,7 @@ You can download the latest releases for **Windows, Linux and Mac** from the rel
</div>

> [!NOTE]
> The **macOS** and **Linux** versions of the Unlim Cloud Desktop app have been **released!** You can now download the latest version for **Windows, macOS, and Linux** from the link above. Thank you for your patience and support!
> macOS and Linux versions of Unlim Cloud Dekstop app will be available soon, so stay tuned for updates! In the meantime, you can download the latest version for Windows from the link above. Thank you for your patience and support!
<h2>🚀 Run Locally</h2>

Expand Down Expand Up @@ -65,19 +65,16 @@ We welcome contributions! If you encounter issues or have suggestions for improv
## Support and Donations ❣️

<div align=center>
<img src="https://lh3.googleusercontent.com/drive-viewer/AEYmBYSRg3Dm_MkHd54IHa1zOZ7_3iZp0kWoqCkgxzQY_zZU1E0r23gI4YK6DyBP5BplOkD0Ml5ZSTugz0B2QXX_Ch8U1I1OCA=s2560" alt="Dunno" width="80"/>
<img src="./src/assets/dunno2.svg" alt="UnlimCloud Logo" width="80"/>

</div>

If you find this project helpful, consider supporting us by making a donation. Your contributions help maintain and improve Unlim Cloud Desktop App.
If you find this project helpful, consider supporting us by making a donation. Your contributions help maintain and improve UnlimCloud Desktop App.

<div align="center">
<a href="https://ko-fi.com/inulute">
<img height='41' src='https://az743702.vo.msecnd.net/cdn/kofi3.png?v=0' alt='Buy Me a Coffee at ko-fi.com'></a>
<a href="https://paypal.me/inulute"><img src="https://lh3.googleusercontent.com/drive-viewer/AEYmBYTODu3by7XcL633IjmJm6YlKmHzwh0lHYM_BDlmy1hznGt0y4NQ39J8YRkWXoFq8LAz6XVGMm-wTCfXQYkyOidd6Y9p9g=s1600" alt="PayPal" height="38" width="auto"></a>
<a href="https://upi-inulute.vercel.app/">
<img src="https://lh3.googleusercontent.com/drive-viewer/AEYmBYSkeOpuuC41ftYqUfoJBLZhfHabE3SwZoNatkrYCeORamSRVI4FWG8sRyVHU6VGFsjMmLaVqDXaMx6Y-XWxtHs7ysz3=s1600" alt="UPI Pay" height="38" width="auto">
</a> <br>
<a href="https://ko-fi.com/inulute"><img height='41' src='https://az743702.vo.msecnd.net/cdn/kofi3.png?v=0' alt='Buy Me a Coffee at ko-fi.com'></a>
<a href="https://paypal.me/inulute"><img src="./src/assets/payment/paypal.svg" alt="PayPal" height="41" width="174"></a>
<a href="https://upi-inulute.vercel.app/"><img src="./src/assets/payment/upi.svg" alt="UPI" height="41" width="174"></a>
</div>

> [!NOTE]
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "unlim-cloud",
"private": true,
"version": "1.0.0",
"version": "2.0.0",
"type": "module",
"scripts": {
"dev": "tauri dev",
Expand Down
7 changes: 7 additions & 0 deletions src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,10 @@ tauri-plugin-window-state = { git = "https://github.com/tauri-apps/plugins-works
# this feature is used for production builds or when `devPath` points to the filesystem
# DO NOT REMOVE!!
custom-protocol = ["tauri/custom-protocol"]

[profile.release]
panic = "abort" # Strip expensive panic clean-up logic
codegen-units = 1 # Compile crates one after another so the compiler can optimize better
lto = true # Enables link to optimizations
opt-level = "s" # Optimize for binary size
# strip = true # Automatically strip symbols from the binary.
2 changes: 1 addition & 1 deletion src-tauri/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ fn main() {
.plugin(tauri_plugin_window_state::Builder::default().build())
.setup(|app| {
let window = app.get_window("main").unwrap();
window.eval("window.location.replace('https://unlimcloud.cloud/');").unwrap();
window.eval("window.location.replace('src/index.html');").unwrap();
Ok(())
})
.run(tauri::generate_context!())
Expand Down
Binary file added src/assets/donate.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/assets/dunno2.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 24 additions & 0 deletions src/assets/payment/paypal.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit a859986

Please sign in to comment.