mirror of
https://github.com/stashapp/stash.git
synced 2025-12-16 20:07:05 +03:00
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:
@@ -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(
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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",
|
||||
|
||||
1
ui/v2.5/src/docs/en/ReleaseNotes/v0260.md
Normal file
1
ui/v2.5/src/docs/en/ReleaseNotes/v0260.md
Normal 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`.
|
||||
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user