• PS3HEN is now supporting 4.93 Firmware

    View Official Release Post for additional information HERE

[Unofficial] HEN 3.1.1 Builds + Extra Features

Is it working well?


  • Total voters
    25
If you allow me @esc0rtd3w, i thought it deserved a thread to get better user feedback


Unofficial HEN

Just for those who wants some cool new features
Remember to Always support the official PS3XPLOIT TEAM.

Please note that these are custom builds by me and are not intended to replace the official release.

ONLY FOR 4.89

#1 - Unofficial PS3HEN 3.1.1.
  • Automatic Hen Logo Swap.
  • Package Manager only appears after enabling HEN.
  • Package Manager Stutter Fixed. (Already fixed on the new official release)
  • After a XMB reload, the HEN Icon cannot be clicked to avoid the user clicking on it again.
  • All visual bugs fixed. (Already fixed on the new official release)


#2 - Unofficial PS3HEN 3.1.1 + Gameboot Enabled and Sound.
  • Automatic Hen Logo Swap.
  • Package Manager only appears after enabling HEN.
  • Package Manager Stutter Fixed. (Already fixed on the new official release)
  • After a XMB reload, the HEN Icon cannot be clicked to avoid the user clicking on it again.
  • All visual bugs fixed. (Already fixed on the new official release)
    • Gameboot Enabled.
    • Gameboot Sound Enabled.


#3 - Unofficial PS3HEN 3.1.1 + Gameboot Enabled and Sound + Headset Audio Patch.
  • Automatic Hen Logo Swap.
  • Package Manager only appears after enabling HEN.
  • Package Manager Stutter Fixed. (Already fixed on the new official release)
  • After a XMB reload, the HEN Icon cannot be clicked to avoid the user clicking on it again.
  • All visual bugs fixed. (Already fixed on the new official release)
    • Gameboot Enabled.
    • Gameboot Sound Enabled.
      • Headset Audio Patch.


#4 - Unofficial PS3HEN 3.1.1 + Gameboot Enabled and Sound + Headset Audio Patch + Fake CFW.
  • Automatic Hen Logo Swap.
  • Package Manager only appears after enabling HEN.
  • Package Manager Stutter Fixed. (Already fixed on the new official release)
  • All visual bugs fixed. (Already fixed on the new official release)
    • Gameboot Enabled.
    • Gameboot Sound Enabled.
      • Headset Audio Patch.
        • After a XMB reload, the HEN icon will not appear to mimic a CFW.
Download

#5 - Unofficial PS3HEN 3.1.1 + Gameboot Enabled and Sound + Headset Audio Patch + Fake CFW + Extended Recently Played Tab + Custom My Channels (No-PSN)
  • Automatic Hen Logo Swap.
  • Package Manager only appears after enabling HEN.
  • Package Manager Stutter Fixed. (Already fixed on the new official release)
  • All visual bugs fixed. (Already fixed on the new official release)
    • Gameboot Enabled.
    • Gameboot Sound Enabled.
      • Headset Audio Patch.
        • After a XMB reload, the HEN icon will not appear to mimic a CFW.
          • Extended Recently Played Tab (Official Games + 306 Homebrews)
          • Custom My Channels with all working Media Apps (Most No-PSN versions)
Soon

All credit must go to the PS3XPLOIT TEAM, @esc0rtd3w, @sandungas, @bucanero and others.
Does that fix HEN from being disabled after loading an encrypted PS2 iso?
 
Hi, I downloaded unofficial PS3HEN 3.1.1 + Gameboot enabled and sound + headphone audio patch + fake CFW on my PS3 slim 3000 and the fake CFW is not working, but the HEN icon is not clickable at least. Everything else works perfectly.
 
If you allow me @esc0rtd3w, i thought it deserved a thread to get better user feedback
You once asked how to do a version poll on github. You can query the version through the name or tag_name value. Here is an example:

Code:
#include <stdio.h>
#include <curl/curl.h>

int checkver(void) {
  CURL *curl;
  CURLcode res;
  char *url = "https://api.github.com/repos/PS3-4K-Pro/HEN/releases/latest";
 
  curl_global_init(CURL_GLOBAL_DEFAULT);
 
  curl = curl_easy_init();
  if(curl) {
    curl_easy_setopt(curl, CURLOPT_URL, url);
    curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);
    curl_easy_setopt(curl, CURLOPT_USERAGENT, "curl/7.68.0");
    
    res = curl_easy_perform(curl);
    if(res != CURLE_OK) {
      sprintf(stderr, "curl_easy_perform() failed: %s\n", curl_easy_strerror(res));
    }
    
    curl_easy_cleanup(curl);
  }
 
  curl_global_cleanup();
 
  return 0;
}
however, a ps3 version of curl is needed. Previously, it was available here: https://ps3developerwiki.com/wiki/Dev_Libraries_and_Tools#libcurl, now it is not available :(, maybe you can find.
 
Back
Top