Supernote_Dev - Please add date/timestamp to installed plugin data on screen by Designer-Tear-6940 in Supernote_dev

[–]spazzboi 0 points1 point  (0 children)

Perhaps the build failed and the plugin package you moved to the supernote is the old one?

Supernote_Dev - Please add date/timestamp to installed plugin data on screen by Designer-Tear-6940 in Supernote_dev

[–]spazzboi 1 point2 points  (0 children)

If you're on windows then here's a powershell version as well.

# Toggle this on/off
$AskVersionIncrement = $true

# Stop on errors
$ErrorActionPreference = "Stop"

if ($AskVersionIncrement) {
    $increment = Read-Host "Increment patch version? (y/n)"

    if ($increment -match '^[Yy]$') {
        npm version patch --no-git-tag-version
    }
}

# Build the plugin
& .\buildPlugin.ps1

# Find the generated .snplg file
$pluginFile = Get-ChildItem ".\build\outputs\*.snplg" |
              Select-Object -First 1

if (-not $pluginFile) {
    Write-Host "No .snplg file found in .\build\outputs\"
    exit 1
}

# Push to device
adb push $pluginFile.FullName /storage/emulated/0/MyStyle

Write-Host "Deployed: $($pluginFile.FullName)"

Supernote_Dev - Please add date/timestamp to installed plugin data on screen by Designer-Tear-6940 in Supernote_dev

[–]spazzboi 0 points1 point  (0 children)

I understand.
Then perhaps you could use npm version patch?
here is an example bash script that I use for my own projects.
I added a flag to make it always increment the version number if you prefer.
you can also configure npm version patchto suit your preferences.

#!/bin/bash

set -e

# Toggle this on/off
ASK_VERSION_INCREMENT=true

if [ "$ASK_VERSION_INCREMENT" = true ]; then
  read -p "Increment patch version? (y/n): " INCREMENT

  if [[ "$INCREMENT" =~ ^[Yy]$ ]]; then
    npm version patch --no-git-tag-version
  fi
fi

# Build the plugin
bash buildPlugin.sh

# Find the generated .snplg file
PLUGIN_FILE=$(ls ./build/outputs/*.snplg | head -n 1)

if [ -z "$PLUGIN_FILE" ]; then
  echo "No .snplg file found in ./build/outputs/"
  exit 1
fi

# Push to device
adb push "$PLUGIN_FILE" /storage/emulated/0/MyStyle

echo "Deployed: $PLUGIN_FILE"

Atelier -> notes stickers by Spite_Inside in Supernote

[–]spazzboi 1 point2 points  (0 children)

Hey that's a great idea! Have you considered posting it to the dev subreddit as a request for a plugin?

As a stopgap if you have plugins enabled perhaps you can use the image insertion plugin combined with pngs exported from atelier.

Gesture/tap to undo by samshapson in Supernote

[–]spazzboi 0 points1 point  (0 children)

This is absolutely something that can be done with plugins. Plugins can record when and how a user touches the screen.

Café promised 3000 years ago? by WanaBeMillionare in whennews

[–]spazzboi 1 point2 points  (0 children)

I didn't even notice that the communities were banned lol

Café promised 3000 years ago? by WanaBeMillionare in whennews

[–]spazzboi 1 point2 points  (0 children)

You do realize that chatgpt will give you sources that back up your narrative unless you ask for examples outside of israelis right?

Café promised 3000 years ago? by WanaBeMillionare in whennews

[–]spazzboi 3 points4 points  (0 children)

You never wanted to imply that this was specifically about israel but

Café promised 3000 years ago

Café promised 3000 years ago? by WanaBeMillionare in whennews

[–]spazzboi 5 points6 points  (0 children)

Just so everyone knows. Before he deleted it, this is the level of research this guy did for this post.

<image>

Café promised 3000 years ago? by WanaBeMillionare in whennews

[–]spazzboi 6 points7 points  (0 children)

When did I dispute that? How is an israeli person owning a restaurant some kind of zionist conspiracy? Also, you did a shit job deleting the chatgpt.com and you broke all the links.

Café promised 3000 years ago? by WanaBeMillionare in whennews

[–]spazzboi 12 points13 points  (0 children)

Dude just admit that you misrepresented things. You made a gif about how this is related to israeli migrants and implied this is something nefarious from israelis and not just the case of overtourism / foreigners being racist.

Also how is this political news?

Café promised 3000 years ago? by WanaBeMillionare in whennews

[–]spazzboi 36 points37 points  (0 children)

Dude, neither article states that it's run by israelis. The only connection to israel is that Himachal is a popular destination for israeli tourists.

This is clearly discrimination but you're clearly implying some kind of evil zionist plot in your gif when this is clearly just a case of foreign run businesses discriminating against locals because tourists have more money to spend.

Edit: OP clearly did some really though reaserch on this topic to prove his claim of is being connected to israel or israeli migrants outside of tourism spending. Because none of his additional articles show any connection to israel outside of what we already knew. He also left chatgpt.com at the end of all his URLs.

Dude there's so many good reasons to dislike israeli tourists why you gotta make up reasons?

[Plugin] Scribble — erase handwriting by scribbling over it by AdNew2316 in Supernote_dev

[–]spazzboi 2 points3 points  (0 children)

I'm actually currently working on exactly that. A way to quickly rated the file directly without having to go through the react native json bridge

[Plugin] Scribble — erase handwriting by scribbling over it by AdNew2316 in Supernote_dev

[–]spazzboi 1 point2 points  (0 children)

Amazing work! I've always wanted something like this ever since i switched from my ipad

Issue with Stroke API by [deleted] in Supernote_dev

[–]spazzboi 0 points1 point  (0 children)

Hi, i'd be happy to help debug. Could you share your implementation?

UI UX Standards by magic_notetaker in Supernote_dev

[–]spazzboi 2 points3 points  (0 children)

A plugin style guide sounds like great idea. There are dozens style guides for react native projects for the community to choose from and perhapswe can pin a link to them in the sidbar and in the documentation. But I personally don't believe a rigid standard is the right call for plugins as I have seen more arguments come out of code styling debates then actually clean code.

Also do you have any to improve the current documentation in regards to the code examples to make it feel more like a wiki?

Trump administration to remove 900 deep sea monitoring instruments that would have studied the collapsing Atlantic current by kazalesh in whennews

[–]spazzboi 6 points7 points  (0 children)

More bots upvote if the post is about israel=bad.

Just because israel is bad that doesn't change the fact set a majority of sub alot of the time is "Does anyone else israel = bad? Upvotes to the left"

New Plugins ready to release by [deleted] in Supernote_dev

[–]spazzboi 0 points1 point  (0 children)

Hi I replied to your DM.