<sparsh-n>
although I'm assuming any future attempt for this issue would focus on making it work on GH Actions or Circle CI. Is there a general preference of using Github Action over Circle CI or vice versa?
<teepee>
I think the main benefit would be ease of use of developers locally on windows using the native stuff
<teepee>
but to keep it alive it probably also needs a CI *somewhere*
<teepee>
we did also have AppVeyor for a while but when they introduced the 1h build limit, it was not usable anymore
<teepee>
at least not with the existing setup
<sparsh-n>
is the build limit a issue for building across all platforms or just a windows specific issue (to my knowledge most large projects of this scale would take around 2-3 hr)?
<teepee>
it's a general issue, but easy to solve on Linux by building packages of the dependencies
<teepee>
on macOS there's an extended procedure for step-by-step building and caching libs
J25k32 has joined #openscad
J25k81 has quit [Ping timeout: 240 seconds]
<sparsh-n>
I'm looking at the windows GUI options and in some cases the underlining seems inconsistent, but was wondering if theres a specific reason for it? For example, Edit > Find has F underlined, while Edit > Find and Replace has d underlined.
<sparsh-n>
Another example is Edit > Copy Viewport Option, where almost all of them have different underlined characters
kintel has joined #openscad
<kintel>
Meh, CMake 4 got rolled out on Homebrew for macOS - I guess I have to bit the bullet and make us CMake 4 compatible : /
<kintel>
sparsh-n I think most inconsistencies are likely oversights, as we have very few people on the dev team using Windows.
<kintel>
In terms of build times, we've currently managed to get build+test times down to ~30 minutes on all platforms. Ideally we'd continue that trend :)
kintel has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
feep has quit [Ping timeout: 252 seconds]
howiemnt4 has joined #openscad
howiemnt1 has quit [Ping timeout: 252 seconds]
howiemnt has joined #openscad
howiemnt4 has quit [Ping timeout: 248 seconds]
stealth_ has quit [Quit: Leaving]
sparsh-n has quit [Quit: Client closed]
J25k32 has quit [Quit: Client closed]
J25k32 has joined #openscad
Murr has quit [Ping timeout: 245 seconds]
Murr has joined #openscad
Murr has quit [Changing host]
Murr has joined #openscad
Murr has quit [Ping timeout: 260 seconds]
Murr has joined #openscad
Murr has quit [Changing host]
Murr has joined #openscad
<hramrach>
the underlined character is used for activating the option so it has to be different for each option /o\
califax has quit [Ping timeout: 264 seconds]
califax has joined #openscad
noonien808310429 has quit [Ping timeout: 252 seconds]
PaulWay has joined #openscad
deathonater has joined #openscad
Murr has quit [Ping timeout: 260 seconds]
Smeef has quit [Ping timeout: 272 seconds]
Murr has joined #openscad
Murr has quit [Changing host]
Murr has joined #openscad
howiemnt has quit [Remote host closed the connection]
<bitbasher>
hi folks .. i am slogging thru all of the examples i can find for learning how to code 3D models because i am a programmer / hacker at heart
<bitbasher>
i would like to enhance the "Examples,,," menu item to include the examples from any libraries installed .. after hunting around in the code i still have not found where the File menu is being built .. much less the code that puts together the menuitem tree
<bitbasher>
can i please get a pointer to where that would be in the code base?
<InPhase>
bitbasher: src/gui/MainWindow.ui plus locale/*.po
Guest1 has joined #openscad
Guest1 has quit [Client Quit]
<InPhase>
bitbasher: Substantial numbers of connections are also made in src/gui/MainWindow.cc corresponding to that .ui file
<bitbasher>
i found the MainWindow.cc but i did not see how menu items were connected to their action code .. thus the questoin
<teepee>
guso78k: that statement on github is your view on the openscad team? sounds like I should reconsider where I spend my time. it really feels like a stab in the back
Murr has quit [Ping timeout: 252 seconds]
<bitbasher>
@tepee that pull was about adding categories to the examples with the category info coming from .json files that could be manually placed in /example folders.. the pull does give me a good idea of where to implement my idea but it has not yet been merged into the master. I just want to scan /library subfolders for /example folders and add the .scad
<bitbasher>
files that i find to the list presented in the file menu and Start panel. Lets see how badly i can break things heh heh
<teepee>
I understand. adding library support should be mostly an additional loop when collecting the files, no?
<teepee>
probably looping through the library-list and collecting all "examples" subfolders
<teepee>
the code in master uses that shipped json file which would make extending very difficult
<teepee>
I did not merge yet due to the last comment in the PR
<teepee>
if it helps, I can merge this
Murr has joined #openscad
Murr has quit [Changing host]
Murr has joined #openscad
<bitbasher>
you mean the PR comment about libraries.properties folder, right? is that really a thing .. let me look
<teepee>
hm? no
<teepee>
right now examples are read via ./examples/examples.json
<bitbasher>
i do not see any libraries.properties folders in the 4 3rd party libraries i am currently looking at .. which are BOSL, BOSL2, UB and StoneAge so ?
<teepee>
as we ship that file, it's obviously not possible to have library stuff in there
<bitbasher>
ah .. is the .json created during the build of the executable then?
<teepee>
the PR changes that, dropping the static file
J25k32 has joined #openscad
<teepee>
plus in addition reading from 2 places. the installed folder with the examples and a user location which is by default empty but users could place their own examples
<teepee>
but main point, it's reading a 2 level directory tree
<teepee>
instead of a fixed json file
<bitbasher>
ah .. well any time one can drop a static file is a good time by me .. and i see that categories do exist already for examples so then yes .. i prob want to piggy back on the work of t-paul and just figure out how to add a wider-deeper scan for /example folders
<teepee>
that's me :)
<teepee>
hidden hint... the t and the p ;-)
<bitbasher>
well .. a pain maybe but not difficult .. we just scan it to make a data structure of examples and their categories .. then scan the librarys folder and add what we find in there
<teepee>
just now fixing the merge conflict the PR picked up
<teepee>
if you stick to just 2 levels, 1st = library name, 2nd = examples, ignoring subfolders, it should be trivial
<bitbasher>
and there i was thinking you were a proud native american celebrating a vintage form of tent :-)
<teepee>
that's just a side effect of the nick name, which I don't mind. but I'm german, so that's not my interpretation :)
<teepee>
making the tree fully recursive needs more changes and possibly also some defense against endless loops and such
<bitbasher>
TP .. am i correct in thinking all the work to scan for example folders is being done in UIUtils.cc ?
<teepee>
yes
<bitbasher>
ik sprek vlaams zelfs
<teepee>
the other parts have 2 entypoints: getCategories() and getExamples(category)
bitbasher has quit [Quit: Client closed]
kintel has joined #openscad
<kintel>
guso78k There's a bunch of debug output left over from VBO work, I
<kintel>
..I'm planning a cleanup eventually
<gbruno>
[github] damienmarchal opened pull request #5793 (Move import related things out of MainWindows & fix a small issue in TabManager::openTabFile) https://github.com/openscad/openscad/pull/5793
<Guest5>
I want to join the Gsoc project of integrated language help feature in OpenSCAD
Guest5 has quit [Client Quit]
mmu_man has quit [Ping timeout: 252 seconds]
teepee_ has joined #openscad
teepee has quit [Ping timeout: 264 seconds]
teepee_ is now known as teepee
mmu_man has joined #openscad
kintel has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
feep has joined #openscad
Murr has quit [Ping timeout: 252 seconds]
sparsh-n has joined #openscad
<sparsh-n>
I've been trying to build OpenSCAD locally on windows, and am following the instructions for building using MXE (cross compilation). Its been building other dependencies pretty quickly except for gcc, and it's been a few hours already. Has anyone else built it on windows and had issues with building using mxe?
<InPhase>
You're building gcc?
<hramrach>
should you be building gcc?
<InPhase>
That seems very over-the-top for compiling OpenSCAD. :)
<InPhase>
I hope our instructions don't suggest this.
<teepee>
MXE *cross* build
<teepee>
I'm not sure that's supposed to work on native Windows
<sparsh-n>
I might be incorrect, but when I run ./scripts/mingw-x-build-dependencies.sh 64 it compiles them, i misinterpreted it
<teepee>
it exists to build Windows binaries on Linux and yes, for that it builds a cross-gcc (mingw) too
<teepee>
yes, but *ON*LINUX*
<hramrach>
then it should work, mostly. Especially under WSL
<teepee>
it might work on Windows with their Linux integration, but I would assume it's not mainly meant for that
<sparsh-n>
I see, I'm guessing its stuck on something considering its been a few hours. Has anyone else built OpenSCAD on windows before using this?
<hramrach>
if you can get a working binary with that it's a good start
<hramrach>
how do you even run ./scripts/mingw-x-build-dependencies.sh on Windows?
<teepee>
building ON Windows FOR Windows is currently mostly msys2/mingw based
<hramrach>
which is basically the same except you skip the gcc build because you already have it installed from msys
<teepee>
there is a PR outlining "native" a.k.a. VisualStudio Build
<sparsh-n>
I'm in a wsl terminal where I run the command, I also got most of the link prerequisites.
<sparsh-n>
mxe* prerequisites
<hramrach>
in WSL is should work if you have the prerequisites
<hramrach>
is th gcc build stuck or does it still print more messages?
<sparsh-n>
it's been stuck for a few hours, i might try to rerun the script but still trying to figure out if i should delete any files/things that were built in the process
<InPhase>
sparsh-n: That's a very roundabout way to do it, and you might as well cancel it unless you have a techie curiosity of whether it's possible. :)
<InPhase>
I would never want to discourage trying wild things just for fun. But best to go with the regular windows building if the goal is to build on windows and have a dev setup going. :)
<sparsh-n>
i'm mostly trying to get a windows build working since i saw a issue with a shortcut not working, and figured if i'm applying for the windows build gsoc project it would help to figure out how it's built currently
<sparsh-n>
thanks for all the links and information!
<teepee>
the GSoC project is largely pointing to the PRs I linked, focusing on a DEV environment
<hramrach>
using WSL+mingw should work the same for you as anybody cross-building on Linux so it should be easiest to get going. One of the uses of WSL is to use a toolchain on Linux and sharing the source with MSVC so you can edit in GUI and build using the tools standard for the project.
<teepee>
MXE is more targeting builds for deployiments, where Linux based helps a lot as most CIs are Linux builds, or the Windows CIs are crippled
<sparsh-n>
funnily enough the gcc thing is now done, perfect timing :)
<hramrach>
those PRs seem bitrotten and in need of some cleanup if you want to build natively with MSVC which is the goal of the project to finish
<teepee>
IF WSL(2) gives more opportunities, that's an option too
<teepee>
yes, they tend to bitrot as we don't have anyone who can take care of them and finish them so they can be guarded by CI
<teepee>
that would be the ideal outcome of the GSoC project
<sparsh-n>
Also my intuition is probably misguided, but on the MXE page it lists separate ways of installing prerequisites (i.e. gcc), although I found the Debian/Ubuntu apt-get instructions easier to download in WSL terminal, compared to the instructions intended for WSL listed on the MXE guide. While there hasn't been any issue so far I wonder if this would
<sparsh-n>
throw something down the line.
Murr has joined #openscad
Murr has joined #openscad
Murr has quit [Changing host]
<hramrach>
if you are running Ubuntu in WSL Ubuntu instructions should work
<hramrach>
but in general people rarely test this so you may encounter some problems
sparsh-n56 has joined #openscad
sparsh-n56 has quit [Client Quit]
sparsh-n45 has joined #openscad
sparsh-n45 is now known as sparshn
sparsh-n has quit [Ping timeout: 240 seconds]
<hramrach>
sparsh-n: the WSL-specific notes warn that 32bit systems might have problems compiling the tools. What kind of WSL system image are you using?
<sparshn>
Ubuntu 64 bit to my knowledge, it's on WSL2 but I dont think that would cause any issues
<sparshn>
Seems like the cmake [build] step is going to take a while too, I'll try building with msys like the guide mentions
<sparshn>
^ to clarify, its building cmake, similar to how gcc took a while
<hramrach>
when you already have the gcc built using msys will not save you anything at this point
sparshn is now known as sparsh-n
<sparsh-n>
thats fair, worst case if it takes too long I'll just build and work on the fix in my linux machine at home.