diff --git a/CHANGELOG.md b/CHANGELOG.md index 22ef1fe..fa9a71c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ * Post Ads and Ad Editor have been merged together into My Ads * Profile Helper now only shows up if you have anything to fix; otherwise the profile helper can be found in the Settings menu +## 1.23.2 +* Hotfix to fix eicon search hanging the client + ## 1.23.1 * Added favorites to eicon picker * Improved eicon picker diff --git a/README.md b/README.md index 8ec2500..ec8d213 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ # Download -[Windows](https://github.com/mrstallion/fchat-rising/releases/download/v1.23.1/F-Chat-Rising-1.23.1-win.exe) (82 MB) -| [MacOS Intel](https://github.com/mrstallion/fchat-rising/releases/download/v1.23.1/F-Chat-Rising-1.23.1-macos-intel.dmg) (82 MB) -| [MacOS M1](https://github.com/mrstallion/fchat-rising/releases/download/v1.23.1/F-Chat-Rising-1.23.1-macos-m1.dmg) (84 MB) -| [Linux](https://github.com/mrstallion/fchat-rising/releases/download/v1.23.1/F-Chat-Rising-1.23.1-linux.AppImage) (82 MB) +[Windows](https://github.com/mrstallion/fchat-rising/releases/download/v1.23.2/F-Chat-Rising-1.23.2-win.exe) (82 MB) +| [MacOS Intel](https://github.com/mrstallion/fchat-rising/releases/download/v1.23.2/F-Chat-Rising-1.23.2-macos-intel.dmg) (82 MB) +| [MacOS M1](https://github.com/mrstallion/fchat-rising/releases/download/v1.23.2/F-Chat-Rising-1.23.2-macos-m1.dmg) (84 MB) +| [Linux](https://github.com/mrstallion/fchat-rising/releases/download/v1.23.2/F-Chat-Rising-1.23.2-linux.AppImage) (82 MB) # F-Chat Rising diff --git a/bbcode/EIconSelector.vue b/bbcode/EIconSelector.vue index 94d06d8..c28dd7d 100644 --- a/bbcode/EIconSelector.vue +++ b/bbcode/EIconSelector.vue @@ -131,7 +131,7 @@ export default class EIconSelector extends CustomDialog { if (s.length === 0) { this.results = _.map(this.store?.random(250), (e) => e.eicon); } else { - this.results = _.map(_.take(this.store?.search(s), 1000), (e) => e.eicon); + this.results = _.map(_.take(this.store?.search(s), 250), (e) => e.eicon); } } } diff --git a/docs/_config.yml b/docs/_config.yml index 6987fc9..103323f 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -50,7 +50,7 @@ theme: jekyll-theme-slate changelog: https://github.com/mrstallion/fchat-rising/blob/master/CHANGELOG.md download: - version: 1.23.1 + version: 1.23.2 url: https://github.com/mrstallion/fchat-rising/releases/download/v%VERSION%/F-Chat-Rising-%VERSION%-%PLATFORM_TAIL% diff --git a/electron/package.json b/electron/package.json index e09cf43..81eb0f3 100644 --- a/electron/package.json +++ b/electron/package.json @@ -1,6 +1,6 @@ { "name": "fchat", - "version": "1.23.1", + "version": "1.23.2", "author": "The F-List Team and Mister Stallion (Esq.)", "description": "F-List.net Chat Client", "main": "main.js", diff --git a/package.json b/package.json index 08758e2..d46bdc9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "f-list-rising", - "version": "1.23.1", + "version": "1.23.2", "author": "The F-List Team and and Mister Stallion (Esq.)", "description": "A heavily modded F-Chat 3.0 client for F-List", "license": "MIT",