<feed xmlns='http://www.w3.org/2005/Atom'>
<title>ao2-client/scripts/APPIMAGE_INSTALL.sh, branch master</title>
<subtitle>AO2 client fork</subtitle>
<link rel='alternate' type='text/html' href='https://git.sof.beauty/ao2-client/'/>
<entry>
<title>No more bash (#1106)</title>
<updated>2025-07-30T14:18:45+00:00</updated>
<author>
<name>OrioleNix</name>
<email>163466443+OrioleNix@users.noreply.github.com</email>
</author>
<published>2025-07-30T14:18:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sof.beauty/ao2-client/commit/?id=54afceec66744e758595e6a4e9bd861523f5b016'/>
<id>54afceec66744e758595e6a4e9bd861523f5b016</id>
<content type='text'>
* Make it actually non-bash dependent

changed the way script_dir is found to not call on bash

* Make dynamic install not bash dependent

Removes a bash requirement for the env call

* Update APPIMAGE_INSTALL.sh

* Update DYNAMIC_INSTALL.sh</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Make it actually non-bash dependent

changed the way script_dir is found to not call on bash

* Make dynamic install not bash dependent

Removes a bash requirement for the env call

* Update APPIMAGE_INSTALL.sh

* Update DYNAMIC_INSTALL.sh</pre>
</div>
</content>
</entry>
<entry>
<title>Fixing shebang statements for edge cases (#1105)</title>
<updated>2025-07-28T16:11:04+00:00</updated>
<author>
<name>OrioleNix</name>
<email>163466443+OrioleNix@users.noreply.github.com</email>
</author>
<published>2025-07-28T16:11:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sof.beauty/ao2-client/commit/?id=33ac018c8031d44c99299b84c7018cbb10cac839'/>
<id>33ac018c8031d44c99299b84c7018cbb10cac839</id>
<content type='text'>
* selecting /usr/bin/env helps edgecases

There are systems (though rare) that don't have bash, but instead only have sh, or zsh, etc, which would otherwise be able to use our shell scripts, there's no reason to not allow the environment to select its shell.

* Update DYNAMIC_INSTALL.sh

This applies to both the dynamic and appimage installations</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* selecting /usr/bin/env helps edgecases

There are systems (though rare) that don't have bash, but instead only have sh, or zsh, etc, which would otherwise be able to use our shell scripts, there's no reason to not allow the environment to select its shell.

* Update DYNAMIC_INSTALL.sh

This applies to both the dynamic and appimage installations</pre>
</div>
</content>
</entry>
<entry>
<title>More Linux integration (#1085)</title>
<updated>2025-03-17T09:32:11+00:00</updated>
<author>
<name>lambdcalculus</name>
<email>64238778+lambdcalculus@users.noreply.github.com</email>
</author>
<published>2025-03-17T09:32:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.sof.beauty/ao2-client/commit/?id=ef1a8ddb92e9b3c583e07663338fcd088a2f7c69'/>
<id>ef1a8ddb92e9b3c583e07663338fcd088a2f7c69</id>
<content type='text'>
* Add integration shell scripts for linux!

These shell scripts (one for appimage and one for dynamic) both should:
1: Move the program files to ~/.local/Attorney_Online
2: Create a .desktop file (which is what applications on Linux use to know to be interacted with) in the ~/.local/share/applications folder (where all other user applications tend to go), with at current a temporary logo until the logo file is parsed out from the xapplication window.
3: open the application, assuming the necessary dependencies are fulfilled
Dynamic required some further support due to the startup shell command working correctly when you click it manually, but struggling on the .desktop folder, so it has the additional step of recreating the current launch.sh command, which still functions if you go to the folder to click it, or if you open the program before integration to test things.

Both sh commands open AO2-Client at completion time. I hope this will help newer Linux users, or older Linux users who normally wouldn't bother, to bring AO into their normal day to day experience.

This has been tested on (by me):
Fedora 40 Workstation (Gnome)
Arch Linux KDE Plasma 6
Ubuntu Unity 24.10 aka Oracular Oriole
Debian 13 Trixie (Before it's freeze, marking date February 9th 2025)

Thank you for reading, have a wonderful day!

* linux CI tweaks

* remove the need for `launch.sh`
* add git hash as appimage version
* bit of reorganization

* add linux install scripts to CI

* tweak linux install scripts to add install scripts
* remove `launch.sh` (as per previous commit)
* add instructions in README_LINUX

* include icon in linux install

* fix install script

and fix typo

* add exec path to desktop files

* why would freedesktop.org do this to me

---------

Co-authored-by: OrioleNix &lt;163466443+OrioleNix@users.noreply.github.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Add integration shell scripts for linux!

These shell scripts (one for appimage and one for dynamic) both should:
1: Move the program files to ~/.local/Attorney_Online
2: Create a .desktop file (which is what applications on Linux use to know to be interacted with) in the ~/.local/share/applications folder (where all other user applications tend to go), with at current a temporary logo until the logo file is parsed out from the xapplication window.
3: open the application, assuming the necessary dependencies are fulfilled
Dynamic required some further support due to the startup shell command working correctly when you click it manually, but struggling on the .desktop folder, so it has the additional step of recreating the current launch.sh command, which still functions if you go to the folder to click it, or if you open the program before integration to test things.

Both sh commands open AO2-Client at completion time. I hope this will help newer Linux users, or older Linux users who normally wouldn't bother, to bring AO into their normal day to day experience.

This has been tested on (by me):
Fedora 40 Workstation (Gnome)
Arch Linux KDE Plasma 6
Ubuntu Unity 24.10 aka Oracular Oriole
Debian 13 Trixie (Before it's freeze, marking date February 9th 2025)

Thank you for reading, have a wonderful day!

* linux CI tweaks

* remove the need for `launch.sh`
* add git hash as appimage version
* bit of reorganization

* add linux install scripts to CI

* tweak linux install scripts to add install scripts
* remove `launch.sh` (as per previous commit)
* add instructions in README_LINUX

* include icon in linux install

* fix install script

and fix typo

* add exec path to desktop files

* why would freedesktop.org do this to me

---------

Co-authored-by: OrioleNix &lt;163466443+OrioleNix@users.noreply.github.com&gt;</pre>
</div>
</content>
</entry>
</feed>
