Enable track activity by default (#4710)

* enable track Activity by default
* Add v0.26.0 release notes and update "Track Activity" label
---------
Co-authored-by: WithoutPants <53250216+WithoutPants@users.noreply.github.com>
This commit is contained in:
CJ
2024-05-13 21:02:59 -05:00
committed by GitHub
parent 408d6fc988
commit 1d565a7cbd
5 changed files with 10 additions and 3 deletions

View File

@@ -248,7 +248,7 @@ export const ScenePlayer: React.FC<IScenePlayerProps> = ({
const auto = useRef(false);
const interactiveReady = useRef(false);
const minimumPlayPercent = uiConfig?.minimumPlayPercent ?? 0;
const trackActivity = uiConfig?.trackActivity ?? false;
const trackActivity = uiConfig?.trackActivity ?? true;
const vrTag = uiConfig?.vrTag ?? undefined;
useScript(

View File

@@ -301,7 +301,7 @@ export const SettingsInterfacePanel: React.FC = () => {
<BooleanSetting
id="track-activity"
headingID="config.ui.scene_player.options.track_activity"
checked={ui.trackActivity ?? undefined}
checked={ui.trackActivity ?? true}
onChange={(v) => saveUI({ trackActivity: v })}
/>
<StringSetting

View File

@@ -2,6 +2,7 @@ import v0170 from "./v0170.md";
import v0200 from "./v0200.md";
import v0240 from "./v0240.md";
import v0250 from "./v0250.md";
import v0260 from "./v0260.md";
export interface IReleaseNotes {
// handle should be in the form of YYYYMMDD
@@ -11,6 +12,11 @@ export interface IReleaseNotes {
}
export const releaseNotes: IReleaseNotes[] = [
{
date: 20240510,
version: "v0.26.0",
content: v0260,
},
{
date: 20240228,
version: "v0.25.0",

View File

@@ -0,0 +1 @@
The `Enable Scene Play History` setting has been set to true for existing systems. This setting enables play counts and resuming scenes from where they were previously played. If you do not want this enabled, please disable it explicitly in `Settings -> Interface -> Scene Player -> Enable Scene Play History`.

View File

@@ -737,7 +737,7 @@
"enable_chromecast": "Enable Chromecast",
"show_ab_loop_controls": "Show AB Loop plugin controls",
"show_scrubber": "Show Scrubber",
"track_activity": "Track Activity",
"track_activity": "Enable Scene Play history",
"vr_tag": {
"description": "The VR button will only be displayed for scenes with this tag.",
"heading": "VR Tag"