diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..f7bbbf1 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,79 @@ + + +# âŦ‡ī¸ Downloads + +[](https://apps.microsoft.com/detail/9p4q134b2jw3?referrer=appbadge&mode=direct) + +| Windows | MacOS | Linux | +| :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **[Universal EXE](https://github.com/BurntToasters/ROSI/releases/download/v4.0.11/ROSI-Windows.exe)**
_(Both x64 and arm64)_ | **[Universal DMG](https://github.com/BurntToasters/ROSI/releases/download/v4.0.11/ROSI-MacOS-universal.dmg)** | **AppImage:** [x64](https://github.com/BurntToasters/ROSI/releases/download/v4.0.11/ROSI-Linux-x86_64.AppImage) / [arm64](https://github.com/BurntToasters/ROSI/releases/download/v4.0.11/ROSI-Linux-arm64.AppImage) | +| **Other:** [x64](https://github.com/BurntToasters/ROSI/releases/download/v4.0.11/ROSI-Windows-x64.exe) / [arm64](https://github.com/BurntToasters/ROSI/releases/download/v4.0.11/ROSI-Windows-arm64.exe) | | **DEB:** [x64](https://github.com/BurntToasters/ROSI/releases/download/v4.0.11/ROSI-linux_amd64.deb) / [arm64](https://github.com/BurntToasters/ROSI/releases/download/v4.0.11/ROSI-linux_arm64.deb) | +| | | **RPM:** [x64](https://github.com/BurntToasters/ROSI/releases/download/v4.0.11/ROSI-linux.x86_64.rpm) / [arm64](https://github.com/BurntToasters/ROSI/releases/download/v4.0.11/ROSI-linux.aarch64.rpm) | + + + +### â„šī¸ Enjoying ROSI? Consider [â¤ī¸ Supporting Me! â¤ī¸](https://rosie.run/support) + +--- + +## Changes in `v4.0.11:` + +_Note: 4.0.9 and 4.0.10 were removed as they contained the same crashing issue._ + +- **Crash:** Fixed an issue with electron-log that caused the app to crash at launch. + +## Changes in `v4.0.9:` + +- **Electron:** Updated electron to `41.5.0`. +- **PKG:** Updated packages. + +## Changes in `v4.0.0`: + +### Welcome to ROSI v4! + +Version 4 is the biggest change to ROSI of all time! I have been working hard on this version to provide all the tools a person needs to easily download media :) and I hope you enjoy this new version with all of its new features! Checkout the notes below. + +- **Logo:** ROSI has a new logo! Well maybe not fully new but its a new imagining of the ROSI logo for V4 and beyond! This is the first major logo redesign in ROSI's history! +- **FFMPEG:** Its here! FFMPEG binaries are now included within the app! No more "FFMPEG Required" warnings and having to manually install it yourself! ROSI now comes bundled with everything you need to start downloading! +- **TypeScript:** More typescript additions: Testing, hardening, bug fixes, you name it, we got it! +- **NEW - Audio Downloads:** Added download formats for audio only downloads! +- **GPU detection:** Improved the `auto` mode for GPU detection if a user chooses to convert a download. +- **NEW - UI:** The UI has been revamped again with a much more space efficient design with better UX/UI. + - **Themes:** Say hello to theming in ROSI! Currently Dark, Light, and Purple (the old theme) are available! +- **MISC:** Much much more improvements to the code! Linux support has been improved and other aspects of the code now runs better! + +### FULL CHANGELOG: + +
+ â„šī¸ Click here to see the full change-log for v4! + +Nothing.. yet! + +--- + +
+ +# â„šī¸ Installation & Notes + +### 🔐 GPG Signing + +ROSI Binaries (`v2.1.2+`) are GPG signed. You can verify the authenticity of your download by downloading the installer, its accompanying sig, and the public key which is available at: [https://tuxedo.rosie.run/GPG/BurntToasters_0xF2FBC20F_public.asc](https://tuxedo.rosie.run/GPG/BurntToasters_0xF2FBC20F_public.asc) + +> **Windows Users:** If you want a fully codesigned experience for Windows, check out the [Microsoft Store](https://apps.microsoft.com/detail/9p4q134b2jw3?referrer=appbadge&mode=direct) version (Stable releases only). + +_ROSI's MacOS release is the only GitHub release that is fully codesigned by a developer cert from apple. If you are looking for a version of ROSI that is codesigned for windows, check out the [Microsoft Store](https://apps.microsoft.com/detail/9p4q134b2jw3?referrer=appbadge&mode=direct) version!_ + +# LTS Version + +This is the first release of the brand new re-designed ROSI, bugs and instability is expected. If you prefer to still get maintenance updates (Like bug fixes and yt-dlp updates) for the previous version (`3.x.x`), checkout the [ROSI-LTS](https://github.com/BurntToasters/ROSI-LTS) repo! Until the next major release, version 3.x.x will receive bug fixes and yt-dlp updates! diff --git a/com.burnttoasters.rosi.metainfo.xml b/com.burnttoasters.rosi.metainfo.xml index 6ffd85e..b2c31ae 100644 --- a/com.burnttoasters.rosi.metainfo.xml +++ b/com.burnttoasters.rosi.metainfo.xml @@ -33,7 +33,7 @@ - + diff --git a/package-lock.json b/package-lock.json index 4db68d7..ece16ff 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "rosi", - "version": "4.0.10", + "version": "4.0.11", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "rosi", - "version": "4.0.10", + "version": "4.0.11", "license": "MPL-2.0", "dependencies": { "electron-log": "^5.3.4", diff --git a/package.json b/package.json index 1c09017..3ae1dd6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "rosi", - "version": "4.0.10", + "version": "4.0.11", "private": true, "description": "Electron GUI for yt-dlp", "keywords": [ diff --git a/src/renderer/splash.html b/src/renderer/splash.html index 593bde7..d855cb6 100644 --- a/src/renderer/splash.html +++ b/src/renderer/splash.html @@ -333,7 +333,7 @@

ROSI

Loading
-
v4.0.10
+
v4.0.11