Age | Commit message (Collapse) | Author |
|
source for viewer 7.1.3.7878383867
|
|
|
|
making ordering explicit, and disabling blank issue submission to force
triage label to be set.
|
|
|
|
|
|
|
|
Create issue_template.md
|
|
Issue template for the "blank issue" option
|
|
instead of being printed alongside.
For now, it always gets reset from the start after pressing Return,
which is to be fixed next.
|
|
Set C++ standard version to C++17 on platforms where it's explicitly required.
MacPorts VLC port has been replaced by VideoLAN's binary distribution.
Fix development APR util package name, and add OpenSSL headers package as a dependency, on Debian/Ubuntu.
Remove system OpenJPEG from dependencies (until we can fix the crash).
Libraries are built as static libraries by default (now it's only on FreeBSD where they should be built as dynamic libraries).
|
|
as it's not part of the Dullahan package any more.
|
|
|
|
|
|
|
|
|
|
|
|
Rename ISSUE_TEMPLATE/config.yaml to config.yml
|
|
Issue template configuration is the only github configuration file I've found which does not support both `*.yaml` and `*.yml` extensions. Drat.
|
|
Add link to feedback portal
|
|
|
|
Provide a link to feedback.secondlife.com from the issue creation page.
|
|
build.yaml: Build shared branches
|
|
We're currently building every single commit pushed to Github. This is
racking up $20k in build charges a month and is generally superfluous.
This changeset alters build triggers so that builds automatically run if
they are committed to a **shared branch**:
- `release/*` - A release stabilization branch
- `project/*` - A project viewer branch
- `main/*` - The default/stable branch
PR commits are also automatically built.
...need to build another commit? Developers can trigger one using a
manual workflow run.
|
|
Update enhancement.md
|
|
It should work well enough with most, but on Japanese (I assume all CJK),
for now the composition part is still left printed out along with the result
(as opposed to just replaced by the result). It's to be fixed next.
|
|
Update bug.yaml
|
|
|
|
|
|
Add a basic CONTRIBUTING.md
|
|
Issue templates
|
|
Provide basic instructions in-repository for contributing to Second
Life.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
The lllibs need to be built as static libs now, otherwise SLPlugin
would lose reference to gSavedSettings. The media plugins still need to
be built as dynamic libs however, so they can't rely on the condition in
LibraryInstall.cmake any more.
Since the Megapahit viewer, when built using GCC, is using the default
value for _GLIBCXX_USE_CXX11_ABI (which is 1 for the newer C++11 ABI as
opposed to 0 for the older C++03 ABI), the Dullahan dependency needs to
be built with the very same _GLIBCXX_USE_CXX11_ABI setting too, otherwise
apr_dso would fail at loading libmedia_plugin_cef.so because of the failure
to refer to the setOnConsoleMessageCallback function with strictly the same
(not differing between std::__cxx11::basic_string vs. std::basic_string)
parameter types.
The CEF build is Spotify's, so no live streaming support, while the
Dullahan package used by the viewer was built using Kokua's dullahan
fork. After rebuilding it with _GLIBCXX_USE_CXX11_ABI kept at default
by not overriding it in variables (from the build-variables repo), the
order of the target link libraries in CEFPlugin.cmake doesn't seem to
matter any more (it did before!).
Now EXTERNAL_TOS can be safely omitted from GNU/Linux added compile
definitions (but still used on FreeBSD).
|
|
a preset...' option of the 'Preferences' floater
|
|
available to all users
|
|
to get the default colours for the viewer.
|
|
|
|
It seems the queries don't work on BSDs, but works okay on Linuxes.
|
|
|
|
|
|
|
|
|
|
|
|
It turns out glGetIntegerv on GL colour bits hasn't given any value,
so the values used afterwards have been random since the variables
aren't initialised. The numbers haven't been 8, 8, 8 since core profile
or VRAM detection or something else.
|