Search found 829 matches

by Lone_Wolf
Tue Mar 31, 2026 2:36 pm
Forum: Suggestion Box
Topic: Use folder env vars for all platforms ?
Replies: 1
Views: 34

Use folder env vars for all platforms ?

from master Documentation/docs/index.md ## Linux The AppImage can be configured to use alternative locations by setting various environment variables: | Environment Variable | Value | Game Folder | |:---------------------|:-------|:-------------------------------------------------| | `OO_DIRTYPE` | ...
by Lone_Wolf
Tue Mar 31, 2026 1:15 pm
Forum: Oolite-Linux
Topic: Adjusting aur oolite packages to post 1.92 changes
Replies: 0
Views: 20

Adjusting aur oolite packages to post 1.92 changes

Since master now has the changes from 1.92.maintenance branch I'm looking at adjusting my oolite-git package to the changes in 1.93 . The namechange to installers/FreeDesktop/space.oolite.Oolite.desktop and the new high-res icon has been done. I have noticed a new executable splash-launcher that req...
by Lone_Wolf
Tue Mar 31, 2026 9:56 am
Forum: Expansion Pack
Topic: We now have 800 OXZs on our Expansions Manager!
Replies: 21
Views: 229

Re: We now have 800 OXZs on our Expansions Manager!

Maybe https://modding-openmw.com/ can inspire something ?

Especially the curated mod lists are very popular .
Note that several of those lists include other lists, making it easy to expand.
by Lone_Wolf
Sun Mar 29, 2026 4:42 pm
Forum: Oolite-Linux
Topic: How to cherry pick?
Replies: 19
Views: 349

Re: How to cherry pick?

git merge doesn't seem to be able to start merging at a specific point. It looks for the common ancestor between the branches and starts there. I think that works great if one of the branches didn't get commits after that common ancestor or they change different parts of the sourcecode. With 2 branc...
by Lone_Wolf
Sun Mar 29, 2026 11:33 am
Forum: Testing and Bug reports
Topic: Test AnyLinux AppImage
Replies: 10
Views: 185

Re: Test AnyLinux AppImage

Setting this should not be necessary: ESPEAK_DATA_PATH=/usr/share/espeak-ng-data/. The Oolite build copies the espeak-ng-data folder from the installed package during build into Resources and modifies one voice (another_commanders change of the female voice). It was necessary to set that var to get...
by Lone_Wolf
Sun Mar 29, 2026 11:03 am
Forum: Oolite-Linux
Topic: How to cherry pick?
Replies: 19
Views: 349

Re: How to cherry pick?

Conflict resolution and whether that's different between merge and cherry-pick . I kinda expect both will require the same manual adjustments . EDIT New repo created from oolite on github with 2 copied branches : master & 1.92-maintenance and 2 new ones : cherry & merge To avoid issues this ...
by Lone_Wolf
Sat Mar 28, 2026 9:59 pm
Forum: Testing and Bug reports
Topic: Test AnyLinux AppImage
Replies: 10
Views: 185

Re: Test AnyLinux AppImage

The thing I'm puzzled about in your package is how the Resources folder gets found as I thought it has to be in the same folder as the oolite binary. I can't see anything in the code that gets oolite to look in /usr/share/oolite/Resources or ../share/oolite/Resources. I guess it's a GNUstep thing, ...
by Lone_Wolf
Sat Mar 28, 2026 5:18 pm
Forum: Testing and Bug reports
Topic: Test AnyLinux AppImage
Replies: 10
Views: 185

Re: Test AnyLinux AppImage

That suggests the scripts perform these functions : install , first_run & user config , start oolite . I'll need to replicate the installer part in the PKGBUILD, for first_run & user config I'll need one or more user scripts that will probably be called from a wrapper to start oolite. PKGBUI...
by Lone_Wolf
Fri Mar 27, 2026 11:21 pm
Forum: Testing and Bug reports
Topic: Test AnyLinux AppImage
Replies: 10
Views: 185

Re: Test AnyLinux AppImage

That clarifies how it happened. I do remember the script was present in 1.92 but it wasn't started from oolite.desktop so I didn't look at it. The pngs in that folder are screenshots and don't match the oolite logo used as icon. For now I'll copy oolite.desktop and oolite-icon.png from master (which...
by Lone_Wolf
Fri Mar 27, 2026 9:42 pm
Forum: Discussion
Topic: SteamOS: Arch based with KDE
Replies: 1
Views: 62

Re: SteamOS: Arch based with KDE

Keep in mind that proton is a downstream fork of wine so only usable to run windows games gamescope is a great addition but usable on most linux distros. I have been reading about SteamOS and was fascinated to learn their plan for 2026 to open it to other hardware. That other hardware seems to be ha...
by Lone_Wolf
Fri Mar 27, 2026 9:08 pm
Forum: Testing and Bug reports
Topic: Test AnyLinux AppImage
Replies: 10
Views: 185

Re: Test AnyLinux AppImage

It would have been nice if you had alerted me to that. You do realise who maintains aur oolite & oolite-git ? I am looking at updating the package to the last commit of the 1.92.maintenance branch , but hit a snag. https://github.com/OoliteProject/oolite/pull/561 changed a lot of things in src/o...
by Lone_Wolf
Thu Mar 26, 2026 9:59 am
Forum: Oolite-PC
Topic: Switch clang build to LLVM's lld linker
Replies: 5
Views: 119

Re: Switch clang build to LLVM's lld linker

keep in mind that there are now 2 things needed to switch from gcc to clang - gnustep libobjc2, gnustep-make , gnustep-base build with clang - libjs build with clang This will lead to having to support 2 deviating sets of 4 libraries with oolite : one build with clang and one build with gcc Or is th...
by Lone_Wolf
Thu Mar 26, 2026 9:51 am
Forum: Oolite-Linux
Topic: How to cherry pick?
Replies: 19
Views: 349

Re: How to cherry pick?

I've figured out what went wrong and now use these commands to prepare everything : $ git clone https://github.com/OoliteProject/oolite $ git checkout 1.92-maintenance $ git switch master $ git remote set-url origin git@git.sr.ht:~lone_wolf/repo-name # replace with correct name $ git push $ git bran...
by Lone_Wolf
Wed Mar 25, 2026 12:47 pm
Forum: Oolite-Linux
Topic: How to cherry pick?
Replies: 19
Views: 349

Re: How to cherry pick?

Merging the first differing commit will fail as that updates the version from 1.92 to 1.92.1 and master is at 1.93 The change in the 2nd commit is already present in master. Both will have to be skipped and documented why they are skipped. git cherry-pick does use git merge but is a lot more flexibl...
by Lone_Wolf
Wed Mar 25, 2026 12:39 pm
Forum: Oolite-Linux
Topic: Success building JavaScript library from scratch on Linux
Replies: 10
Views: 1299

Re: Success building JavaScript library from scratch on Linux

hiran wrote: Wed Mar 25, 2026 6:43 am
I am with you but would like to track such activity on a backlog. It would allow others to add ideas and more people to work in the same direction.
Tracking/documenting this would also make it easier to adjust/update the baseline (assuming it's defined before this change happens) .