Posts by Markerz

by Markerz
23.10.2023, 03:29
Forum: Celestia Users
Topic: Youtube videos of Celestia to make Celestia popular
Replies: 4
Views: 1700

Re: Youtube videos of Celestia to make Celestia popular

I created an official Celestia channel here https://www.youtube.com/channel/UCW-L9ekZTPTrl1l8t4wwrBQ which can be used for future use. videos will be promoted inside the mobile Celestia apps
by Markerz
23.02.2023, 14:30
Forum: Ideas & News
Topic: Flying mode
Replies: 2
Views: 8077

Re: Flying mode

I wonder if we hooked up the wrong button here, the left, right arrow keys are hooked up to Roll.
by Markerz
12.01.2023, 09:25
Forum: Celestia Users
Topic: Lines between stars or fictional planet systems
Replies: 44
Views: 40821

Re: Lines between stars or fictional planet systems

JOS wrote:It does work since there is no access to the directory

I suppose you mean it *doesn't* work here. This is expected as I stated, Celestia has access only to /Users/jos/Downloads/nroutes/nroutes.celx (the file it opened), not /Users/jos/Downloads/nroutes/nroutes.csv
by Markerz
12.01.2023, 04:21
Forum: Development
Topic: Celestia 1.7.0 windows installer
Replies: 98
Views: 257110

Re: Celestia 1.7.0 windows installer

it is part of modern app development to have everything automated. it's not because it is difficult, it is rather because that local development are not reliable. One can generate a build and create an installer locally, but first your local environment could affect the output of installer. for exam...
by Markerz
12.01.2023, 04:04
Forum: Celestia Users
Topic: Lines between stars or fictional planet systems
Replies: 44
Views: 40821

Re: Lines between stars or fictional planet systems

let's clear up on permissions for Celestia (on macOS, it is similar on iOS). User permission to a directory does not equa Celestia app's permissions. Files and folders inside app bundle, (read access, no write access): Any things under /Applications/Celestia.app (could have different names)/Contents...
by Markerz
12.01.2023, 00:55
Forum: Celestia Users
Topic: Lines between stars or fictional planet systems
Replies: 44
Views: 40821

Re: Lines between stars or fictional planet systems

macOS version's Celestia's default directory is /Applications/Celestia.app (depending on where you put it)/Contents/Resources/CelestiaResources. So if you use relative path or file name, the actual path will be under this path. And this path is not writable!!! That's why you get permission issues. Y...
by Markerz
11.01.2023, 12:43
Forum: Celestia Users
Topic: Lines between stars or fictional planet systems
Replies: 44
Views: 40821

Re: Lines between stars or fictional planet systems

macOS versions of Celestia (after 1.6.1) are running in a sandbox, it cannot write to arbitrary file. The files that Celestia has access to is under /Users/your user name/Library/Containers/space.celestia.Celestia/Data/Documents If you use App Store version then it is /Users/your user name/Library/C...
by Markerz
11.01.2023, 12:22
Forum: Development
Topic: Celestia 1.7.0 windows installer
Replies: 98
Views: 257110

Re: Celestia 1.7.0 windows installer

selden wrote:If there's a pre-existing installation of Celestia, does it install to (or default to installing in) the pre-existing directory?
probably not, I've not tested but you can check
by Markerz
10.01.2023, 11:25
Forum: Development
Topic: Celestia 1.7.0 windows installer
Replies: 98
Views: 257110

Re: Celestia 1.7.0 windows installer

I've been adding automation to installer generation. code: https://github.com/CelestiaProject/Celestia/pull/1499 can test with the artifacts here: https://github.com/CelestiaProject/Celestia/actions/runs/3882535755 (installer is xxx.zip/installer/CelestiaInstaller.exe) Note that the 64bit installer ...
by Markerz
09.01.2023, 02:01
Forum: Development
Topic: Celestia 1.7.0 Development Thread
Replies: 1373
Views: 1231260

Re: Celestia 1.7.0 Development Thread

for star and dso name localization I believe you need to check https://github.com/CelestiaProject/CelestiaContent/blob/master/data/well-known-starnames.txt and https://github.com/CelestiaProject/CelestiaContent/blob/master/data/well-known-dsonames.txt . these are the list of them that are marked tra...
by Markerz
02.01.2023, 14:43
Forum: Development
Topic: List of active Celestia Windows developers
Replies: 38
Views: 20287

Re: List of active Celestia Windows developers

QT is cross platform (macOS, Windows, Linux) and any feature coming to QT, comes to all platforms. I believe onetwothree only meant that he won't be testing on windows or won't be tackling with very windows specific bug. With QT there are not many of them. Does the Qt frontend need any further devel...
by Markerz
02.01.2023, 11:42
Forum: Development
Topic: List of active Celestia Windows developers
Replies: 38
Views: 20287

Re: List of active Celestia Windows developers

john71 wrote:Will Markerz develop a Qt UI for Windows?
why? we already have that

john71 wrote:But can you help with the Qt frontend?
what you are asking just does not make sense here. you've been saying that we need a dev, we need a qt dev, nothing specific. what do we need to solve here?
by Markerz
01.01.2023, 13:11
Forum: Development
Topic: List of active Celestia Windows developers
Replies: 38
Views: 20287

Re: List of active Celestia Windows developers

Is it possible that we can maintain and develop a Windows UI? https://learn.microsoft.com/en-us/cpp/windows/walkthrough-creating-windows-desktop-applications-cpp?view=msvc-170 this link is basically about how to write an app with plain win32 calls, and is what the current version of celestia uses (...
by Markerz
31.12.2022, 15:56
Forum: Development
Topic: Celestia 1.7.0 windows installer
Replies: 98
Views: 257110

Re: Celestia 1.7.0 windows installer

Github actions has inno setup preinstalled in the runner images: https://github.com/actions/runner-images/blob/main/images/win/Windows2022-Readme.md so probably we just need to pass the .iss file to inno via command line and it should generate an installer. registry changes should have been specifie...
by Markerz
31.12.2022, 13:32
Forum: Development
Topic: Celestia 1.7.0 windows installer
Replies: 98
Views: 257110

Re: Celestia 1.7.0 windows installer

cartrite wrote:I thought this already being done. That's why I got busy doing other things.
iirc only GitHub action is used for continuous integration now, which only generates necessary .exe and .dll s, not the installer
by Markerz
31.12.2022, 12:58
Forum: Development
Topic: Celestia 1.7.0 windows installer
Replies: 98
Views: 257110

Re: Celestia 1.7.0 windows installer

a good next step would be to automate the process for generating the installer, so that every commit to the Celestia repo will create an updated setup.exe.
by Markerz
31.12.2022, 12:48
Forum: Development
Topic: List of active Celestia Windows developers
Replies: 38
Views: 20287

Re: List of active Celestia Windows developers

I don't think that any 32 bit Windows OS has a future, so it is a non-issue in my opinion. win32 is a name of the UI toolkit. it's not tied to 32bit (Microsoft kept the name when they develop for 64bit). the non-qt version you run on windows 64bit is based on win32. The "inside" solution ...
by Markerz
31.12.2022, 11:58
Forum: Development
Topic: List of active Celestia Windows developers
Replies: 38
Views: 20287

Re: List of active Celestia Windows developers

2.) some useful functions, like video capture will be missing If there are new features and requires complicated UI, I don't think they'll come to win32 frontend. besides I've been wondering why video capture is a big ask, I never added this ability to macOS version of it even though adding is not ...
by Markerz
31.12.2022, 11:33
Forum: Development
Topic: List of active Celestia Windows developers
Replies: 38
Views: 20287

Re: List of active Celestia Windows developers

Windows only development is mostly dead (I mean in general, not specific to Celestia). The win32 version of Celestia (using raw Win32 API) is very outdated because Win32 is old and it is not a modern way to develop Windows apps. Very very few people write raw Win32 code now, so I do not see new deve...
by Markerz
20.09.2022, 13:11
Forum: Utilities
Topic: CMS Maker (UPDATE: NOW PYTHON-BASED!)
Replies: 1
Views: 4971

Re: CMS Maker (UPDATE: NOW PYTHON-BASED!)

looks like a good candidate to be hosted directly on https://celestia.mobi/tools

Go to advanced search