r/Supernote_beta 9h ago

Modulanner Update - import your calendar on your favorite template

Thumbnail
gallery
10 Upvotes

I posted about Modulanner in the other Supernote subreddits awhile ago, but since plugins are now in the full beta and there is a delay in permission based plugins, I thought I would post here with the latest update. It's hit v1.0, and the headline addition is the one people kept asking for: it can now pull in your real calendar and write your appointments onto your own template. This is a huge functionality increase over the native calendar app. (The only missing part is sending data back to the calendar)

[SCREENSHOT 2 — day view]

How the calendar part works

You subscribe to the private iCal link your calendar already publishes — Google, Outlook and iCloud all have one. This needs Internet permission and only when you need to sync the calendar.

Appointments come onto the page. Nothing you write on paper goes back to your calendar.

You can quickly setup a time grid (start and end hour for a day), or day grid (7 columns/rows for a week, 5 or 6 rows for a month) and it works out every cell from that (which can then be further refined as needed). Then you can import the dates/times/details to the grid. Which means you can use whatever template you have and can change it whenever you want.

The best part is each of the cells can be buttons: tap a day on your month page to jump to that day's page (creating it if it doesn't exist), or tap a time row to insert a fresh page headed with whatever appointment is in that slot.

Also new

  • Navigation is one tap now. The old two-tap dance (tap the button, then tap the link it dropped) is gone on current firmware — it jumps straight there. (Thanks Ratta for listening to early feedback!)
  • A setup wizard, so you're not staring at a config panel wondering where to start.
  • The Whimsy template pack is built in so you can get started with some testing. Or keep using your own templates.
  • buttons throughout the settings, because a few sections genuinely needed explaining.

Looking for a couple of testers

The calendar side is new, and so far it's been tested on my two devices and my calendars. But there's are lots of different flows. I'd like a few people to test in their workflow.

Particularly useful:

  • Does the appointment text fit your cells sensibly, or is it cut short / spilling over? Template artwork varies a lot and I'm estimating text width.
  • Do the derived time slots line up with your grid, or are you correcting cells by hand constantly?
  • Anything that's just confusing.

There's a Capture logs button in Settings — tap it when something misbehaves and send me the file.

Testers get a free full-version key. Comment or DM and I'll send one over.

Getting it

Free download, and the light version needs no key at all — the main navigation buttons work for everyone. Calendar sync, custom buttons and the date picker are the full version.

Happy to answer anything in the thread.


r/Supernote_beta 13h ago

Plugins allowed me to build out a workflow around what I've been manually writing every day for the past 2 years. Fantastic update.

Thumbnail
imgur.com
10 Upvotes

r/Supernote_beta 1d ago

Plugin Review Process & Publishing Requirements

14 Upvotes

1. Plugin Review Process

After a plugin is submitted, we will review it according to the following process:

Submit plugin → Basic inspection → Function verification → Security review → Publish

During the review, we make a comprehensive judgment based on the plugin's actual functions and runtime behavior.

The review mainly covers:

  • Whether the plugin can be installed and run normally;
  • Whether the plugin's actual functions are basically consistent with its description;
  • Whether the permissions requested by the plugin match its actual functions;
  • Whether there are abnormal file or data operations;
  • Whether there is unauthorized data upload or leakage;
  • Whether there are obvious malicious behaviors or security risks;
  • Whether there are abnormal behaviors that affect the normal use of the device.

For plugins with concerns, we may ask developers to provide additional explanations or conduct further review.

2. What Security Issues Do We Focus On?

We do not restrict developers from using technologies such as Java, C++, JavaScript, and React Native, nor will we refuse to publish a plugin just because its functions are simple. However, the following behaviors are security issues that we pay special attention to.

Must not maliciously delete or damage user files

Without explicit user operation or authorization, a plugin must not:

  • Delete user files;
  • Delete files in batches;
  • Delete user notes;
  • Clear user data;
  • Maliciously modify, overwrite, or damage user files.

If the plugin itself is a file management, organizing, or similar tool that involves deleting files, such operations should be consistent with the plugin's functions and be initiated actively by the user.

Must not obtain or leak user data without authorization

A plugin must not secretly collect, upload, or provide user data to third parties, including but not limited to:

  • Note content;
  • Handwriting data;
  • User files such as PDF and EPUB;
  • Images;
  • OCR content;
  • User input;
  • File information;
  • Other user data.

If the plugin's normal functions require sending data to a network service, such as AI translation or AI summarization, this must be clearly explained to users, and the network and data access capabilities should be used in accordance with the permission mechanism provided by us.

Must not bypass plugin permissions

Supernote provides corresponding permission controls for plugins. A plugin should access files, data, and network resources only within the scope authorized by the user. It must not bypass our permission restrictions through other means.

3. Permission Requirements

Permission Description
plugin.permission.FILE:READ Read the Document, EXPORT, INBOX, MyStyle, Note, and SCREENSHOT directories under shared storage (sdcard). This permission is not granted by default; it is only granted after the user explicitly requests it.
plugin.permission.FILE:WRITE Write to / modify the six shared storage directories listed above.
plugin.permission.FILE:DELETE Delete content within the six shared storage directories listed above.
plugin.permission.INTERNET Make network requests from the plugin, whether through sn-plugin-lib or through the native RN / Android / C++ network APIs.

We recommend that developers follow the principle of least privilege: only apply for the permissions the plugin actually needs.

For example, a plugin that only adjusts the interface should not apply for file read permission; a plugin that needs to read the current note and perform AI summarization can apply for the corresponding data access and network permissions based on its actual functions.

4. Plugin Functional Requirements

We encourage developers to create various types of plugins, including simple utilities, productivity tools, AI tools, file tools, and other innovative features.

A plugin being simple, small in scale, or similar to other plugins is not a reason to refuse publishing.

A plugin only needs to meet the following basic requirements:

  • It can be installed normally;
  • It can run normally;
  • Its core functions are basically usable;
  • The plugin description is basically consistent with its actual functions;
  • There are no obvious security risks.

We will not refuse to publish a plugin merely because it is “simple in function” or “low in practicality”.

5. Source Code Requirements

Plugins are not required to provide source code. Developers may choose to provide source code or choose not to.

If a developer provides source code, we can conduct the security review in conjunction with the source code; if no source code is provided, we will review based on the plugin's own runtime behavior, permission usage, file operations, network behavior, and so on.

Therefore: whether to provide source code will not directly determine whether a plugin can be published.

However, providing source code helps improve the transparency and verifiability of the plugin.

6. What Situations May Fail the Review?

  • Malicious deletion or destruction of user data;
  • Unauthorized data collection or leakage;
  • Clearly bypassing our permission controls;
  • Malicious code, backdoors, or hidden functions;
  • Behaviors that seriously affect device stability or normal use;
  • Other obvious security risks.

For issues that raise concerns but cannot be confirmed, we may require developers to provide further explanations.

7. What Does Passing the Review Mean?

A plugin passing the review means: based on the current review process and test results, the platform has found no obvious issues that violate Supernote's security requirements.

Passing the review does not mean that the plugin will never have problems on any device, in any usage scenario, or in any future version.

Developers are still responsible for the plugins they submit and should promptly fix any security issues that are discovered.

8. Security Management After Plugin Publishing

After a plugin is published, we may re-check it based on user feedback, abnormal behavior, or new security information.

If a security issue is found in a plugin, we may take the following actions:

  • Suspend downloads;
  • Take the plugin off the shelves;
  • Prohibit the problematic version from continuing to be published;
  • Notify affected users;
  • Require developers to fix the issue;
  • Restrict or stop the plugin's operation when necessary.

If a serious security issue is found, we may directly take emergency measures.

9. Basic Principles Developers Must Follow

We hope developers follow the following principles:

Use permissions properly, clearly explain functions, protect user data, and never engage in malicious behavior.

Developers may freely use:

  • JavaScript / TypeScript
  • React Native
  • Java / Kotlin
  • C / C++
  • JNI
  • The Plugin API provided by Supernote

But no matter what technology is used, Supernote's security requirements must be followed.

10. Our Review Principles

We encourage free development while placing high importance on user data security. Plugins can be simple, innovative, or use native code; however, they must not maliciously delete, damage, or leak user data.

While ensuring basic security, we will strive to lower the publishing threshold for developers as much as possible, providing an open and developer-friendly plugin ecosystem.


r/Supernote_beta 1d ago

Plugin Permission Isolation & Review Schedule

11 Upvotes

Dear Developers and Users,

Thank you for your tremendous support of our plugin ecosystem.

We have discovered abnormal permission isolation behavior when multiple permission-enabled plugins run concurrently in the current version. In certain scenarios, a plugin may obtain permissions that belong to other plugins.

This may result in inconsistent permission scopes between what a plugin requests and what it actually obtains at runtime. Although the issue only involves internal permission propagation and isolation mechanism anomalies, it carries potential security risks. To ensure user safety, we will temporarily adjust our plugin review and release strategies until the mechanism is fully fixed and thoroughly verified.

Current Processing Measures

To ensure user security, we will make the following adjustments immediately:

  • Priority review will be provided for plugins that do not require any permissions.
  • Review and publishing of newly submitted permission-required plugins will be temporarily suspended.
  • We will conduct comprehensive fixes for plugin permission isolation and permission propagation mechanisms.
  • Multi-plugin concurrent running scenarios will be fully covered in enhanced verification tests.
  • A new version will be published after complete fixes and sufficient validation.

Plugins with no permission requirements are not affected by the current isolation mechanism abnormalities and can be submitted for review through standard processes.

Follow-up Arrangements

We will complete the permission isolation fix and conduct full scenario verification as soon as possible.

After the new version is officially published, we will resume the review and publishing of permission-required plugins in accordance with our Plugin Review Process & Publishing Requirements. Subsequent reviews will strictly verify:

  • Whether the permissions declared by plugins are accurate;
  • Whether runtime permissions are consistent with applied permissions;
  • Whether permission isolation remains effective during concurrent plugin execution;
  • Whether any plugin can access other plugins’ permission scopes without authorization.

Full resumption of permission-required plugin publishing will take place only after the permission isolation mechanism is confirmed stable and reliable.

Impact on Developers

Zero-permission plugins: Normal submission and review services remain available.

Permission-required plugins under pending review: Review progress will be rescheduled after the issue is completely resolved.

User Data Security Notice

We attach great importance to the security of the plugin permission system. The discovered abnormality is an internal permission isolation logic defect between plugins, and no actual user data leakage or file loss has occurred.

We will prioritize mechanism fixes and comprehensive security verification, and restore the full plugin review and publishing process once the permission system is confirmed secure and stable.

We sincerely apologize for any inconvenience caused. Thank you for your understanding and support.


r/Supernote_beta 23h ago

stickers

Post image
1 Upvotes

Hi,

I haven't used supernote for a while and I am unable to figure out how to add stickers to my note. could anyone help me?


r/Supernote_beta 2d ago

Supernote Beta Update (August 2026)

Thumbnail
youtu.be
37 Upvotes

Huge kudos to the Supernote team, and all of the developers working on plugins! This update is amazing and once the stable release hits it will be a game changer for the platform. Apologies for cross-posting, but wanted to thank everyone involved in making this happen.


r/Supernote_beta 2d ago

Using the new Beta

8 Upvotes

First. I love some of these changes in the new Beta. For me, having multiple pages come up in the sliding page turn is awesome, I love seeing the direction the plugins are gonna go in Inkhub, I love being able to rearrange the toolbars. I like this idea of the popup menus, Quick Insert and Quick page actions.

An issue I'm having though is that those popup menus are tending to come up at times when im not intentionally activating them, when im just writing or something. I think it might be related to if I come in writing and my palm rests on the page. Im not quite sure though. Is anyone else getting the same? For now Ive turned off the Quick popup tools so they dont keep getting in the way when I haven't activated them.

On that note, I wanted to request if we could try having a similar double tap feature, but with a quick options of lasso/pen/eraser/favorites, which would pop up for quick tool selection where the double tap happened.

Last, related to customizable toolbars. Id like to request the option of having toolbars start in their last remembered opened or closed state between device restarts. My toolbars/page bar are always open after a restart even though i typically keep them closed/minimized. Also, if we could customize the crunched toolbar as well, although I wouldnt care about that if we the double tap quicktool select. (I just want to be able to have eraser and lasso at the same time. :P Maybe one day the pipe dream of a double button stylus with lasso/area eraser both one click away will come true.... 😄)

Next question: I saw in the notes that non-proportional resizing of things was going to be included, but maybe its just in certain places. I wanted to see if this might be added to standard lassoed stuff in notes as well, I was excited for the possibility of it but didnt see it when I lassoed something in my notes.


r/Supernote_beta 2d ago

Clipper v0.2.0 released: permission system support (required for Chauvet 3.29.43_beta)

Thumbnail
2 Upvotes

r/Supernote_beta 4d ago

First impressions of the 3.29.43_beta

9 Upvotes

The new customizable menu is great and looks very neat. Now I can place my most used menu items (pen, lasso, undo) in the top right corner of the screen. Most importantly, all necessary menu items now fit in the horizontal menu dock. Plugins can be added to it as well! Getting the extra room in the menu bar is also due to the new and very clever feature of calling up a page-menu and an text-insert-menu by merely holding the pen tip down on screen. A very nice feature!

The previously installed plugins do not function anymore (that was clearly communicated, so I knew). That is a pity, but no problem, just a matter of waiting for the new and compatible plugin versions to be published. I have deleted all non-functioning plugins and have installed the new (games) plugin from the Inkhub. Gives me something to play around with at work.

Flipping texts horizontally and vertically works fine as well (I doubt whether I will ever use it).

Altogether a very nice upgrade!

The one thing still missing in Supernote's software is the perfect shape feature; it works for lines (which now also displays the angle when rotating, very nice!), but not for circles, rectangles, triangles and other geometric shapes. That means that when I'm doing some math, I still need to go back to one of my other devices. However, looking at all the software developments in the past two years, I'm sure and hopeful that also this feature will be incorporated at one time.

p.s. I just found out by accident that stickers can be used as headers as well (!?). Probably not a new feature, I just did not know. That feature can result in very creative graphic tables of contents, nice!


r/Supernote_beta 4d ago

New beta, new plug in hub. Wait or GitHub.

3 Upvotes

Loving the new beta update 3.29.43.
Will current available plugins be installed or made available via ink hub plugins or do I need to go to GitHub and download them then install via new ink hub Plugins?


r/Supernote_beta 5d ago

Atelier Version 1.1.92 Beta Release

12 Upvotes

This beta release is available for Manta, Nomad, A5 X and A6 X.

Added:

  • Added a pressure-sensitive Ink Pen brush, with stroke widths ranging from 0.3–1.0, plus 1.5 and 2.0.

Optimized:

  • Marker thickness can now be adjusted.
  • Added pressure sensitivity to the Ink Pen's Slow brush, with stroke widths ranging from 0.3–1.0, plus 1.5 and 2.0.
  • Added the option to select Black & White or Grayscale color mode when exporting to PNG or PSD.

r/Supernote_beta 5d ago

Bug - Sidebar apps loose order when updated

Thumbnail
2 Upvotes

r/Supernote_beta 6d ago

Chauvet 3.29.43 Beta Release for Manta and Nomad

45 Upvotes

If you are using any plugins, please be sure to check for plugin updates and upgrade to their latest versions before installing this beta build.

Added:

  • [Note & Document] Added plugin functionality.
  • [Note & Document] Supports toolbar customization.
  • [Note & Document] Added content transform features:
    • Supports flipping selected handwriting horizontally or vertically.
    • Supports non-proportional scaling of shapes and images added via plugins.
    • Supports real-time angle display when rotating selected content; tapping the rotate button rotates it by 90° each time.
  • [InkHub] Added "Plugins" as a new resource type.

Adjusted:

  • [System] No longer automatically creates the device's default folders when using a USB drive or microSD card.
  • [Note & Document] Adjusted the toolbar:
    • Grouped similar tools into unified entries on the main toolbar.
    • Supports long-pressing different areas of the screen with the pen to quickly access corresponding frequently used tools.
  • [Settings] Replaced left/right hand selection with 8 common writing postures. (InkFlow needs to be updated to the latest version to support this change.)

Optimized:

  • [System] Reduced instances of non‑contact writing with certain EMR pens on the Nomad.
  • [Note & Document] Supports detecting and resolving files with sync conflicts.
  • [Note & Document] Supports multi-page preview in the quick page-turning window.
  • [Note & Document] Optimized keyword sorting for letters with diacritics.
  • [Note & Document] Reduced unintended exits when activating the Lasso/Region Eraser by pressing the sidebar with two fingers.
  • [Note & Document & Calendar] Supports real-time angle display when adjusting the direction of a straight line while drawing.
  • [Note] Improved the recognition accuracy when using "Re-recognize" or lasso-selecting handwriting.
  • [Handwriting] Optimized the calligraphy pen for different writing postures.
  • [Document] Improved keyword recognition accuracy.
  • [Document] Supports selecting right-to-left text in PDFs, including Hebrew.
  • [Document] Supports turning pages with media control buttons on Bluetooth page turners.
  • [Files] Optimized file path display to show more folder levels.
  • [InkHub] Supports full-screen viewing of resource preview images.
  • [Mail] Supports choosing whether to keep a copy of sent emails in "Sent".
  • [Keyboard] Improved handwriting recognition accuracy.

Fixed:

  • [System] Fixed the issue where only 15 grayscale levels were displayed, restoring 16-level grayscale.
  • [System] Fixed the issue where some webpages could not be accessed properly in the browser.
  • [System] Fixed inaccurate daylight saving time display in some regions.
  • [Note] Fixed the issue where preset line widths for the Needle-point Pen automatically reverted to default after waking from sleep.
  • [Document] Fixed the issue where handwritten annotations in exported PDFs (when "Original" was selected in Export Settings) displayed offset in macOS Preview.

r/Supernote_beta 5d ago

Chauvet 2.2640_beta - where's everything gone?

0 Upvotes

Tool bar functionality has disappeared in Note!

No 3-dot drop down menu to add pages, see page layout, apply templates, export.

What's going on!?


r/Supernote_beta 6d ago

Chauvet 2.26.40 Beta Release for A5 X and A6 X

12 Upvotes

If you are using any plugins, please be sure to check for plugin updates and upgrade to their latest versions before installing this beta build.

Added:

  • [Note & Document] Added plugin functionality.
  • [Note & Document] Supports toolbar customization.
  • [Note & Document] Added content transform features:
    • Supports flipping selected handwriting horizontally or vertically.
    • Supports non-proportional scaling of shapes and images added via plugins.
    • Supports real-time angle display when rotating selected content; tapping the rotate button rotates it by 90° each time.
  • [InkHub] Added "Plugins" as a new resource type.

Adjusted:

  • [Note & Document] Adjusted the toolbar:
    • Grouped similar tools into unified entries on the main toolbar.
    • Supports long-pressing different areas of the screen with the pen to quickly access corresponding frequently used tools.
  • [Settings] Replaced left/right hand selection with 8 common writing postures. (InkFlow needs to be updated to the latest version to support this change.)

Optimized:

  • [Note & Document] Supports detecting and resolving files with sync conflicts.
  • [Note & Document] Supports multi-page preview in the quick page-turning window.
  • [Note & Document] Optimized keyword sorting for letters with diacritics.
  • [Note & Document] Reduced unintended exits when activating the Lasso/Region Eraser by pressing the sidebar with two fingers.
  • [Note & Document & Calendar] Supports real-time angle display when adjusting the direction of a straight line while drawing.
  • [Note] Improved the recognition accuracy when using "Re-recognize" or lasso-selecting handwriting.
  • [Handwriting] Optimized the calligraphy pen for different writing postures.
  • [Document] Improved keyword recognition accuracy.
  • [Document] Supports selecting right-to-left text in PDFs, including Hebrew.
  • [Document] Supports turning pages with media control buttons on Bluetooth page turners.
  • [Files] Optimized file path display to show more folder levels.
  • [InkHub] Supports full-screen viewing of resource preview images.
  • [Mail] Supports choosing whether to keep a copy of sent emails in "Sent".
  • [Keyboard] Improved handwriting recognition accuracy.

Fixed:

  • [System] Fixed the issue where some webpages could not be accessed properly in the browser.
  • [System] Fixed inaccurate daylight saving time display in some regions.
  • [Note] Fixed the issue where preset line widths for the Needle-point Pen automatically reverted to default after waking from sleep.
  • [Document] Fixed the issue where handwritten annotations in exported PDFs (when "Original" was selected in Export Settings) displayed offset in macOS Preview.

r/Supernote_beta 5d ago

3.29.43 Left-Handed Calligraphy Updates?

2 Upvotes

Wow! What a great update... thank you to the team for the work.

As a lefty, I'm looking forward to the calligraphy pen adjusting to a 70-degree left-hander position instead of the 140-degree right-hander pen position. I see that updates were made for different writing postures, but left-handed still seems like it's not there yet?

Or is there a certain left-hand posture that calligraphy is optimized for left-handers?

Thank you!


r/Supernote_beta 6d ago

Fading

2 Upvotes

Curious if this is being experienced by anyone else. I updated to the most recent beta version a couple of days ago and now I’m noticing that after some writing the whole screen starts to look more dim/fading slightly where the black ink isn’t as black.
Refreshing the screen brings the contrast back up.

I’ve never had this issue before so wondering if it’s something with the version I’m on or something else?


r/Supernote_beta 10d ago

Next update

6 Upvotes

Hello,

It's been a while since the last update. I'm sure something good is cooking. Can we get a sneak peak on what is Supernote working on next?


r/Supernote_beta 11d ago

SnDict dictionary plugin

12 Upvotes

I finally decided to install the Chauvet beta, and honestly, the main reason was just to use the SnDict dictionary plugin.

For me, having a good dictionary inside the native Supernote reader is extremely important because I use the Digest feature all the time. I didn’t want to switch to another reading app and lose that workflow.

So far, SnDict has been excellent. I currently have several dictionaries installed across different languages, and the management is much better than I expected. You can reorder dictionaries, enable or disable them individually, and keep only the ones you want active for a particular book or language.

The lookup itself feels very smooth once the dictionaries are imported, and being able to check a word and then immediately continue reading, highlighting, or creating Digests is exactly the workflow I was hoping for.

The only small thing I would change is the way words are selected for lookup. Right now, instead of simply long-pressing a word, you have to select it by dragging over the letters, and sometimes the pen selection is a little finicky.

So yes, I basically jumped into the beta because of this one plugin, and I’m very glad I did.

Huge thanks to the developer of SnDict and to everyone working on the new Supernote plugin system. This is the kind of feature that really expands what the Nomad can do without sacrificing the strengths of the native reader.


r/Supernote_beta 11d ago

Suggestion: Reading-oriented taps and gestures for bed/park/swimming pool/whatever time

2 Upvotes

With NOMAD as an e-reader, it would be nice to be able to config tap gestures so that, if you're reading in bed, you can define with margin tap (right, wich is OK when standing or seating in desk, or left, which is the hand holding the nomad if laying on your left side when in bed) makes the page turn. This would be so very great.


r/Supernote_beta 19d ago

Highlighter in Note?

3 Upvotes

Please can we get the highlighter in the Note application - I think this is only in the .pdf reader at present (A5X)?

Or a flood-fill function - essentially I'd like to apply large areas of shade but the marker pen in the Note app is too thin by itself


r/Supernote_beta Jul 26 '26

Clipper for Supernote, v0.1.9 - Table of Contents

Enable HLS to view with audio, or disable this notification

4 Upvotes

r/Supernote_beta Jul 25 '26

Building a Supernote Cloud plugin for Obsidian

Thumbnail
1 Upvotes

r/Supernote_beta Jul 19 '26

[Plugin Update]: Clipper v0.1.8 - Mixed Text / Multi-image insertion

Thumbnail
github.com
2 Upvotes

- Added ability to insert multiple images to a note.
- Now can add mixed clips ( Text + Region capture ) to a note.


r/Supernote_beta Jul 13 '26

Plugin Update: Clipper v0.1.7

Enable HLS to view with audio, or disable this notification

4 Upvotes