UBports Robot Logo UBports Forum
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login
    1. Home
    2. ChromiumOS-Guy
    3. Posts
    C
    Offline
    • Profile
    • Following 0
    • Followers 2
    • Topics 1
    • Posts 41
    • Groups 0

    Posts

    Recent Best Controversial
    • RE: uWolf (LibreWolf)

      @Simmonz this is the fix @TotalSonic is referring to (kind of) https://gitlab.com/ubports/development/core/qtmir/-/merge_requests/92
      once this is upstreamed firefox and by extension LibreWolf will be able to use wayland directly.

      once its upstreamed I'm also planning on releasing my freetube port.

      posted in App Development
      C
      ChromiumOS-Guy
    • RE: Wish list : which apps do you need?

      @RJDan there is the same option but for cookies

      posted in App Development
      C
      ChromiumOS-Guy
    • RE: Trying out UT on Pixel 3a XL for review article

      Hi @theprivacydad Developer of uWolf here.
      LibreWolf is focused on privacy and security, By default LibreWolf will delete cookies when closed you can change that in about:settings

      copy/paste as mentioned already is one of many symptoms of being forced to use XWayland there is a fix on the way but until it is merged no dice unless you want to install it through the qa tool and remove the XWayland flags from the launch script in uWolf but I would not recommend that.

      posted in General
      C
      ChromiumOS-Guy
    • RE: Wish list : which apps do you need?

      @RJDan the copy/paste thing is going to be solved when this fix roles out, as it is a symptom of using XWayland.

      As for erasing all tabs LibreWolf is privacy/security focused so this is default behavior, you can turn it off in about:settings

      posted in App Development
      C
      ChromiumOS-Guy
    • RE: Ubuntu Touch Q&A 172 Call for Questions

      @RJDan hmm, i may be able to do something about syncing passwords, but it would require cooperation from the UT development team.
      no promises though I already have my plate full with the upcoming rewrite of uWolf for Noble and NixManager plugin for lss (which i'm waiting on a test device so i can start working on the UI)

      posted in News
      C
      ChromiumOS-Guy
    • RE: uWolf (LibreWolf)

      @domubpkm can you give me the log from the logviewer app?
      also dmesg | grep DENIED and dmesg | grep uwolf

      posted in App Development
      C
      ChromiumOS-Guy
    • RE: Spotify in uWolf

      @AmauryDBZ as in still not showing chrome?

      try running: gsettings get com.lomiri.Shell usage-mode
      I'm thinking you're device has an edge case which makes the is_usage_mode_staged() make a false negative, this command is what's responsible for toggling the custom UI (after all you don't need it with a screen/keyboard connected).
      essentially this is the code for deciding if its using stages or window mode:

      if usage_mode == r"'Staged'" or usage_mode == None: # check if staged, fallback if nothing was outputed to most likely.
          return True
      return False # if check fails then its not Staged
      

      point is I'm suspecting the output is not 'Staged' in text (including the ' ')

      posted in General
      C
      ChromiumOS-Guy
    • RE: Spotify in uWolf

      @AmauryDBZ url about:support , there should be a big button named clear startup cache.

      posted in General
      C
      ChromiumOS-Guy
    • RE: uWolf (LibreWolf)

      @domubpkm indeed, I am currently trying to up the security by trying to make app confinement work if nothing else it will make it clear to the user what exactly am I accessing because I will still need some special permissions but this will become much more secure.

      you can test the experimental confinement here, this has the same functionality as v0.10.30

      posted in App Development
      C
      ChromiumOS-Guy
    • RE: uWolf (LibreWolf)

      @domubpkm the goal was bring it to usable state before the switch to Noble
      it is as close as possible more optimization while possible is unlikely to happen, at most I will fix bugs until I make a proper Beta version for Noble.

      in Noble i can use ubports-qa to install the needed MR's to get wayland working so i can actually get the browser to be usable as I don't consider it usable right now on low-spec phones like my own phone.

      posted in App Development
      C
      ChromiumOS-Guy
    • RE: Spotify in uWolf

      @AmauryDBZ theres a new update, just in case try to upgrade to it if you haven't already.

      if that doesn't work please try going here: about:support and clear startup cache.

      posted in General
      C
      ChromiumOS-Guy
    • RE: uWolf (LibreWolf)

      @domubpkm try to reinstall v0.10.30 i patched it it should work now.

      posted in App Development
      C
      ChromiumOS-Guy
    • RE: uWolf (LibreWolf)

      @domubpkm yeah idk how or why you use a virtual framebuffer that means no hardware acceleration in most cases,
      try running the command

      cat /sys/class/graphics/*/modes
      fbset -s
      

      if this gives you a list of resolutions tell me, I'll implement reading this as a fallback.

      also not related but because you use a virtual framebuffer you could potentially hack together a way to have nightlight.

      posted in App Development
      C
      ChromiumOS-Guy
    • RE: uWolf (LibreWolf)

      @domubpkm can you search around a bit and see if you can find these:

      phablet@ubuntu-phablet:~$ ls /sys/class/drm
      card0  card0-DSI-1  renderD128  sde-crtc-0  version
      

      I need access to card0 so i can see resolution size of the screen.
      its probably somewhere in a different directory, if you can find it I would appreciate it if not I'll figure out another solution.

      ls /sys/*/*/*/modes
      

      check this out, if its simply renamed then this should return something.

      posted in App Development
      C
      ChromiumOS-Guy
    • RE: uWolf (LibreWolf)

      @domubpkm okay can you run this in shell:

      cat /sys/class/drm/*/modes | awk -F 'x' '{print $2}' | sort -nu | tail -n 1
      

      also just this in general so i can see if theres different syntax here

      cat /sys/class/drm/*/modes 
      
      posted in App Development
      C
      ChromiumOS-Guy
    • RE: uWolf (LibreWolf)

      @domubpkm please try version 0.10.30

      posted in App Development
      C
      ChromiumOS-Guy
    • RE: uWolf (LibreWolf)

      @domubpkm what does this say:

      cat /sys/class/drm/card0-DSI-1/modes
      
      posted in App Development
      C
      ChromiumOS-Guy
    • RE: uWolf (LibreWolf)

      @domubpkm provide me the crash log, preferably on github.
      i don't own you're device i can't tell you why it doesn't launch.

      posted in App Development
      C
      ChromiumOS-Guy
    • RE: Spotify in uWolf

      @AmauryDBZ can you log the full startup by running librewolf.sh and piping the output to a log file?
      something like this:

      cd /opt/click.ubuntu.com/uwolf.chromiumos-guy/current
      ./librewolf.sh >> ~/uwolf.log
      

      if you run that it should put a log file on the home directory.
      what you provided does not provide the context for why the userchrome does not load.
      i will check out the syntax error in the javascript file though.
      EDIT:
      no idea whats wrong with the javascript, no syntax errors are found for me.
      its an actual setting and i set it, no idea why it thinks it doesn't exists.

      posted in General
      C
      ChromiumOS-Guy
    • RE: Spotify in uWolf

      @AmauryDBZ Hi, developer of uWolf here, on a side note the UI is not modified (in the screenshot) for mobile so this has to be either v0.2.3 which doesn't make any sense or its not loading.
      if you could provide me the startup log of the app I would be grateful.

      for the spotify problem, disable the extensions first uBlock-Origin and Decentraleyes( which is a tracker blocker).
      not to mention LibreWolf by default stops cookies which breaks some sites so you can try to change the security settings and add spotify to the exception rules.

      posted in General
      C
      ChromiumOS-Guy