summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2024-03-02Merge tag '7.1.3-release'Erik Kundiman
source for viewer 7.1.3.7878383867
2024-03-01Merge DRTVWR-489 to main on promotion of Emoji viewer (#673).Nat Goodspeed
2024-02-22Improving issue templates. (#877)Brad Linden
making ordering explicit, and disabling blank issue submission to force triage label to be set.
2024-02-22Delete .github/ISSUE_TEMPLATE/issue_template.mdVir Linden
2024-02-22Update issue_template.mdVir Linden
2024-02-22Update issue_template.mdVir Linden
2024-02-22Merge pull request #873 from secondlife/vir-linden-issue-templateVir Linden
Create issue_template.md
2024-02-22Create issue_template.mdVir Linden
Issue template for the "blank issue" option
2024-02-22IME composition is now replaced by the resultErik Kundiman
instead of being printed alongside. For now, it always gets reset from the start after pressing Return, which is to be fixed next.
2024-02-21Update build instructionsErik Kundiman
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).
2024-02-21Exclude libminigbm.so from being installedErik Kundiman
as it's not part of the Dullahan package any more.
2024-02-14Update cla.yaml allowlist to clear spurious errors (#804)Brad Linden
2024-02-12#779 Emoji picker is an unintuitive UX disasterAlexander Gavriliuk
2024-02-09#68 The 'Recently used emoji' can not be selected by the 'Tab' keyAlexander Gavriliuk
2024-02-09SL-20363 Option 'Debug Unicode' - show unicode valuesAlexander Gavriliuk
2024-02-08SL-20363 Add Advanced option 'Debug Unicode'Alexander Gavriliuk
2024-02-07Merge pull request #757 from secondlife/signal/ymlSignal Linden
Rename ISSUE_TEMPLATE/config.yaml to config.yml
2024-02-07Rename config.yaml to config.ymlSignal Linden
Issue template configuration is the only github configuration file I've found which does not support both `*.yaml` and `*.yml` extensions. Drat.
2024-02-07Merge pull request #738 from secondlife/signal/feedback-linkVir Linden
Add link to feedback portal
2024-02-07Issue #56 Redirect Help>Report Bug to Canny instead of JiraAndrey Kleshchev
2024-02-05Add link to feedback portalSignal Linden
Provide a link to feedback.secondlife.com from the issue creation page.
2024-02-01Merge pull request #702 from secondlife/signal/reduce-buildsVir Linden
build.yaml: Build shared branches
2024-01-31build.yaml: Build shared branchesBennett Goble
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.
2024-01-30Merge pull request #692 from secondlife/vir-linden-issue-templates-1Vir Linden
Update enhancement.md
2024-01-30First attempt to fix unicode inputErik Kundiman
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.
2024-01-29Merge pull request #693 from secondlife/vir-linden-issue-templatesVir Linden
Update bug.yaml
2024-01-29Update enhancement.mdVir Linden
2024-01-29Update bug.yamlVir Linden
2024-01-29Merge pull request #688 from secondlife/signal/contributorsVir Linden
Add a basic CONTRIBUTING.md
2024-01-29Merge pull request #666 from secondlife/issue_templatesVir Linden
Issue templates
2024-01-26Add a basic CONTRIBUTING.mdBennett Goble
Provide basic instructions in-repository for contributing to Second Life.
2024-01-24Create enhancement.mdRunitaiLinden
2024-01-24Create bug.yamlRunitaiLinden
2024-01-24SL-20416 Fix Crash Report 1409376 (update)Alexander Gavriliuk
2024-01-24SL-20416 Use image from file for emoji_recent_panel_toggle_btnAlexander Gavriliuk
2024-01-23SL-20416 Fix Crash Report 1409376Alexander Gavriliuk
2024-01-24SL-20416 Avoid of taking focus by EmojiPickerAlexander Gavriliuk
2024-01-18Minor fix to previous commit, on scope endingErik Kundiman
2024-01-18GNU/Linux internal web browserErik Kundiman
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).
2024-01-17SL-20795 Part of previously typed emojis disappear in the 'Save settings as ↵Alexander Gavriliuk
a preset...' option of the 'Preferences' floater
2024-01-16SL-20751 Information about frequently used and recently used emojis is ↵Alexander Gavriliuk
available to all users
2024-01-15Change default maturity to ReleaseErik Kundiman
to get the default colours for the viewer.
2024-01-15Adjust "Report Bug" URL to Megapahit BugzillaErik Kundiman
2024-01-15Re-enable GL colour bits check but only on LinuxErik Kundiman
It seems the queries don't work on BSDs, but works okay on Linuxes.
2024-01-15Revive external web browser spawning on macOSErik Kundiman
2024-01-11SL-20756 The emoji in the profile floater is displayed schematicallyAlexander Gavriliuk
2024-01-11SL-20749 Scrolling up by mouse wheel is endless in LLPanelEmojiCompleteAlexander Gavriliuk
2024-01-11Build fix for Visual Studio update (std::vector<PermissionBit>)Alexander Gavriliuk
2024-01-11SL-20750 MacOS Crash processing attributed stringAndrey Kleshchev
2024-01-10Ignore colour bit resultsErik Kundiman
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.