Reports / Profitability
Within the reports tab, Iβm missing the profitability part. Iβd to see quickly what the total costs of a project or member is, which is also not really possible within the Profitability tab. Iβd also like to see the option to have a project price, instead of only hourly payment or retainer. So that project price can be compared with the total project costs for a profit margin. Thanks and let me know if I can think along.

Rob Swagten About 5 hours ago
Feature Request
Reports / Profitability
Within the reports tab, Iβm missing the profitability part. Iβd to see quickly what the total costs of a project or member is, which is also not really possible within the Profitability tab. Iβd also like to see the option to have a project price, instead of only hourly payment or retainer. So that project price can be compared with the total project costs for a profit margin. Thanks and let me know if I can think along.

Rob Swagten About 5 hours ago
Feature Request
Keyboard shortcut for support chat
I want a keyboard shortcut to bring up the support chat in the Rize app. Currently, I have to "fish around" and click multiple times to find it, which is frustrating when I need quick help.

Jamal Kazmi About 11 hours ago
Feature Request
Keyboard shortcut for support chat
I want a keyboard shortcut to bring up the support chat in the Rize app. Currently, I have to "fish around" and click multiple times to find it, which is frustrating when I need quick help.

Jamal Kazmi About 11 hours ago
Feature Request
App locked after 1 week
The App and all of itsβ features is hidden behind the paywall (including basic time tracking - itβs locked). I am now 1 week in to the free first month I got from being referred by a friend.

Sebastian Paul About 23 hours ago
Bug Reports
App locked after 1 week
The App and all of itsβ features is hidden behind the paywall (including basic time tracking - itβs locked). I am now 1 week in to the free first month I got from being referred by a friend.

Sebastian Paul About 23 hours ago
Bug Reports
Completed
Please make rize app have a "show in menu bar only" setting
Please make rize app have a "show in menu bar only" setting. Iβd love to be able to hide the app directly from my dock as it becomes a little annoying to navigate. Would much prefer to hide it in the menu bar for ease of use

Sam Gillette 1 day ago
Feature Request
Completed
Please make rize app have a "show in menu bar only" setting
Please make rize app have a "show in menu bar only" setting. Iβd love to be able to hide the app directly from my dock as it becomes a little annoying to navigate. Would much prefer to hide it in the menu bar for ease of use

Sam Gillette 1 day ago
Feature Request
Weekly target hours not matching settings
My weekly target hours is 27h even if the total of daily hours in my settings is 24h. How can I change my weekly target hours on the activity view ?

Caterina Tosati 1 day ago
Bug Reports
Weekly target hours not matching settings
My weekly target hours is 27h even if the total of daily hours in my settings is 24h. How can I change my weekly target hours on the activity view ?

Caterina Tosati 1 day ago
Bug Reports
Rize helper is using a lot of CPU
Killing battery, heating the M4Max. Itβs been doing this for several days. Iβve quit and restarted, and rebooted but over time it ramps up to over 100% utilization.

Mike May 1 day ago
Bug Reports
Rize helper is using a lot of CPU
Killing battery, heating the M4Max. Itβs been doing this for several days. Iβve quit and restarted, and rebooted but over time it ramps up to over 100% utilization.

Mike May 1 day ago
Bug Reports
Category overall time
Hello dear Rize devs Just wanted to say it would be awesome by your side imo to add an indicator for time in each category(including custom ones). Sometimes i want to see how much total hours i got in some categories i made. The only way to currently view that data is by manually setting a custom date range period. an All-time button for the activity section would also be huge. ( next to Year / Month / Week ). Have a woundeful day Best regards, Joseph.

Or Joseph Cohen 2 days ago
Feature Request
Category overall time
Hello dear Rize devs Just wanted to say it would be awesome by your side imo to add an indicator for time in each category(including custom ones). Sometimes i want to see how much total hours i got in some categories i made. The only way to currently view that data is by manually setting a custom date range period. an All-time button for the activity section would also be huge. ( next to Year / Month / Week ). Have a woundeful day Best regards, Joseph.

Or Joseph Cohen 2 days ago
Feature Request
Keyboard shortcut 'R' conflict causing black screen
User reports that pressing capital 'R' turns the Rize dashboard black and prevents typing 'R' in other apps, instead switching focus to a black Rize screen. This is not a documented shortcut and is interfering with their workflow.

Floris Ouwehand 2 days ago
Bug Reports
Keyboard shortcut 'R' conflict causing black screen
User reports that pressing capital 'R' turns the Rize dashboard black and prevents typing 'R' in other apps, instead switching focus to a black Rize screen. This is not a documented shortcut and is interfering with their workflow.

Floris Ouwehand 2 days ago
Bug Reports
Music & Sounds (Rize Library) loads indefinitely on desktop app β Windows
Version: 2.3.7 (Windows 11) Steps to reproduce: Open Rize desktop app Go to Music & Sounds β Rize Library Select any track (e.g. Space Ambience, Synthwave, Classical) Track shows loading spinner indefinitely, never plays Expected: Audio plays, as it does on app.rize.io in browser. Investigation findings: Network tab: All requests return 200. YouTube IFrame Player API loads successfully (player?prettyPrint=false, next?prettyPrint=false, qoe?cpn=... all succeed). Thumbnails and GraphQL calls work fine. No failed or pending requests. Console: No errors after clearing and attempting playback. Main process logs (main.log): Repeated media permission checks being triggered: [Security] Permission check [Security] - Permission: media Root cause: In the main process, setPermissionRequestHandler calls the callback with false for all permissions, and setPermissionCheckHandler returns false for all checks β including media. The YouTube embedded player loads but cannot output audio because the media permission is denied. No error is thrown; it just buffers forever. onPermissionRequest(e, t, n) { n(!1) } // denies all permissions onPermissionCheck(e, t) { return !1 } // denies all checks Suggested fix: Allow the media permission: onPermissionRequest(e, t, n) { n(t === 'media') } onPermissionCheck(e, t) { return t === 'media' } Workaround: Use app.rize.io in a browser β music plays fine there since the browser grants media permissions automatically.

Dale Landoy 2 days ago
Bug Reports
Music & Sounds (Rize Library) loads indefinitely on desktop app β Windows
Version: 2.3.7 (Windows 11) Steps to reproduce: Open Rize desktop app Go to Music & Sounds β Rize Library Select any track (e.g. Space Ambience, Synthwave, Classical) Track shows loading spinner indefinitely, never plays Expected: Audio plays, as it does on app.rize.io in browser. Investigation findings: Network tab: All requests return 200. YouTube IFrame Player API loads successfully (player?prettyPrint=false, next?prettyPrint=false, qoe?cpn=... all succeed). Thumbnails and GraphQL calls work fine. No failed or pending requests. Console: No errors after clearing and attempting playback. Main process logs (main.log): Repeated media permission checks being triggered: [Security] Permission check [Security] - Permission: media Root cause: In the main process, setPermissionRequestHandler calls the callback with false for all permissions, and setPermissionCheckHandler returns false for all checks β including media. The YouTube embedded player loads but cannot output audio because the media permission is denied. No error is thrown; it just buffers forever. onPermissionRequest(e, t, n) { n(!1) } // denies all permissions onPermissionCheck(e, t) { return !1 } // denies all checks Suggested fix: Allow the media permission: onPermissionRequest(e, t, n) { n(t === 'media') } onPermissionCheck(e, t) { return t === 'media' } Workaround: Use app.rize.io in a browser β music plays fine there since the browser grants media permissions automatically.

Dale Landoy 2 days ago
Bug Reports
wrong detection
i use teams for work(chat,meeting) ,always show disturb, other IM like QQ,WeChat, Wont show disturb, and i cannot find how to change the setting of this

oceanoftear 2 days ago
Feature Request
wrong detection
i use teams for work(chat,meeting) ,always show disturb, other IM like QQ,WeChat, Wont show disturb, and i cannot find how to change the setting of this

oceanoftear 2 days ago
Feature Request
Fixed-price billing for client projects
I want to be able to use fixed prices for client projects instead of just hourly-rate invoicing. This would allow for fixed-sum budgets or one-off project fees, which is important for my workflow when I don't bill by the hour.

Aamir Khan 3 days ago
Feature Request
Fixed-price billing for client projects
I want to be able to use fixed prices for client projects instead of just hourly-rate invoicing. This would allow for fixed-sum budgets or one-off project fees, which is important for my workflow when I don't bill by the hour.

Aamir Khan 3 days ago
Feature Request
Work hours mismatch
It seems to classify Gaming as βWork Hoursβ even though it is not marked as such in my categorizations. See screenshot:

Clovis RamΓrez 3 days ago
Bug Reports
Work hours mismatch
It seems to classify Gaming as βWork Hoursβ even though it is not marked as such in my categorizations. See screenshot:

Clovis RamΓrez 3 days ago
Bug Reports
Mobile App (Android and iOS)
I want a mobile version of Rize for Android and iOS. I've been waiting for a long time for this feature.

Hamza Diglap 4 days ago
Feature Request
Mobile App (Android and iOS)
I want a mobile version of Rize for Android and iOS. I've been waiting for a long time for this feature.

Hamza Diglap 4 days ago
Feature Request
Chinese character support for time entries and activity names
I want Rize to support Chinese characters for generated time entries, activity names, and categories. This is important for Chinese-speaking users to accurately track and review their work in their native language.

ιζε ΄ 4 days ago
Feature Request
Chinese character support for time entries and activity names
I want Rize to support Chinese characters for generated time entries, activity names, and categories. This is important for Chinese-speaking users to accurately track and review their work in their native language.

ιζε ΄ 4 days ago
Feature Request
Required Fields for Time Entries
I want to be able to make certain fields (like tags or descriptions) required when creating or editing a time entry. This would help ensure that all time entries have the necessary information for reporting or billing.

Sam Fowler 5 days ago
Feature Request
Required Fields for Time Entries
I want to be able to make certain fields (like tags or descriptions) required when creating or editing a time entry. This would help ensure that all time entries have the necessary information for reporting or billing.

Sam Fowler 5 days ago
Feature Request
Bulk edit
Iβd love a way to bulk edit multiple time entries at once. Ideally, that would mean either selecting several entries at the same time or using the mouse to highlight a block of time slots, then mass updating fields like client, project, and/or task. If certain fields allowed to made required, that would be helpful, too. I have way too many small entries and when there is a change needed, it takes forever to update. βgoes back to my other feature suggestion https://feedback.rize.io/p/inactive-time-smoothing

Sam Fowler 5 days ago
Feature Request
Bulk edit
Iβd love a way to bulk edit multiple time entries at once. Ideally, that would mean either selecting several entries at the same time or using the mouse to highlight a block of time slots, then mass updating fields like client, project, and/or task. If certain fields allowed to made required, that would be helpful, too. I have way too many small entries and when there is a change needed, it takes forever to update. βgoes back to my other feature suggestion https://feedback.rize.io/p/inactive-time-smoothing

Sam Fowler 5 days ago
Feature Request
Weekly Total Time for Projects and Tasks Calculated Incorrectly
Since the latest update, the weekly total time for projects and tasks is not calculated correctly. Only part of the recorded time appears to be included in the total.

eunjeong Choi 5 days ago
Bug Reports
Weekly Total Time for Projects and Tasks Calculated Incorrectly
Since the latest update, the weekly total time for projects and tasks is not calculated correctly. Only part of the recorded time appears to be included in the total.

eunjeong Choi 5 days ago
Bug Reports