Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

9.0.0 #51

Merged
merged 43 commits into from
Nov 18, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
e86b16f
[Feature] Dynamic state parent group (#48)
Pjiesco May 19, 2022
dbc0a35
core: Upgrade dependencies
ChristopheCVB May 23, 2022
821de02
core: Upgrade Gradle version to 7.5.1
ChristopheCVB Sep 15, 2022
038c178
core: Upgrade Gradle version to 7.5.1
ChristopheCVB Sep 15, 2022
d0432b5
core: Upgrade Gradle version to 7.5.1
ChristopheCVB Sep 15, 2022
03ca14a
core: Upgrade Gradle version to 7.5.1
ChristopheCVB Sep 15, 2022
324fb2e
core: Upgrade Gradle version to 7.5.1
ChristopheCVB Sep 15, 2022
a07fdd2
Merge branch 'master' into develop
ChristopheCVB Sep 15, 2022
25da331
core: Dependencies management
ChristopheCVB Nov 1, 2022
8f92768
core: ActionTranslation annotation
ChristopheCVB Nov 1, 2022
0af69e1
fix: Github Workflow
ChristopheCVB Nov 1, 2022
531bcb1
fix: Github Workflows
ChristopheCVB Nov 1, 2022
7bdbf11
fix: Github Workflows
ChristopheCVB Nov 1, 2022
b2bb0a4
fix: Github Workflows
ChristopheCVB Nov 1, 2022
336b35a
fix: Tests wait time
ChristopheCVB Nov 1, 2022
93b8668
fix: Packager SNAPSHOT publication
ChristopheCVB Nov 1, 2022
dbaa8cc
fix: Packager SNAPSHOT publication
ChristopheCVB Nov 1, 2022
7b6f062
fix: Packager SNAPSHOT publication
ChristopheCVB Nov 1, 2022
925e94f
fix: Packager SNAPSHOT publication
ChristopheCVB Nov 1, 2022
8be5356
fix: Packager SNAPSHOT publication
ChristopheCVB Nov 1, 2022
9a5dc18
Merge branch 'master' into develop
ChristopheCVB Nov 1, 2022
c073d83
feat: Plugin ParentCategory
ChristopheCVB Nov 1, 2022
829133b
feat: TouchPortalPlugin.getBase64ImageFromUrl closes #38
ChristopheCVB Nov 2, 2022
e7f9a6e
fix: Set encoding to UTF-8
ChristopheCVB Nov 14, 2022
14abfe7
feat: TP Plugin API 7 Platform start command
ChristopheCVB Nov 14, 2022
c39594b
core: Refactor Annotations Processor
ChristopheCVB Nov 27, 2022
ed082fa
fix: JavaDoc
ChristopheCVB Nov 27, 2022
a7f8bcc
fix: JavaDoc
ChristopheCVB Nov 27, 2022
2f4cec1
fix: JavaDoc
ChristopheCVB Nov 27, 2022
f47e49f
core: Refactor Annotations Processor
ChristopheCVB Nov 27, 2022
89f49fd
core: Add logs in tests
ChristopheCVB Nov 27, 2022
bfd7e4a
core: (WIP) Modularization closes #54
ChristopheCVB Dec 4, 2022
00ca01d
doc: Update Samples and README.md
ChristopheCVB Dec 15, 2022
e775dce
core: Call TPInvokable.onInvoke from callbacksExecutor
ChristopheCVB Dec 16, 2022
d7f8526
core: TPInvokable.onListChanged
ChristopheCVB Dec 20, 2022
2135ebb
core: Revert to System Java instalation
ChristopheCVB Dec 20, 2022
5c77140
core: Revert to System Java instalation
ChristopheCVB Dec 20, 2022
ee1d089
core: 9.0.0
ChristopheCVB Dec 20, 2022
170d483
Feat: TriggerEvent (#63)
Pjiesco Oct 6, 2023
1964ce0
Feat: forceUpdate (#64)
Pjiesco Oct 6, 2023
cc5c915
Change `sdk` to `api` (#66)
Pjiesco Oct 6, 2023
ca95a1f
Add CodeQL workflow for GitHub code scanning (#53)
lgtm-com[bot] Oct 6, 2023
b034dd9
[API 7] Setting Tooltip (#65)
Pjiesco Oct 26, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
core: Revert to System Java instalation
  • Loading branch information
ChristopheCVB committed Dec 20, 2022
commit 5c77140b19cd01d07d1b92d22869a6225eeb0f2f
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ public static Pair<JsonObject, TypeSpec.Builder> process(TouchPortalPluginAnnota
jsonConfiguration.addProperty(PluginHelper.CONFIGURATION_COLOR_LIGHT, plugin.colorLight());
jsonConfiguration.addProperty(PluginHelper.CONFIGURATION_PARENT_CATEGORY, plugin.parentCategory().getKey());
jsonPlugin.add(PluginHelper.CONFIGURATION, jsonConfiguration);
jsonPlugin.addProperty(PluginHelper.PLUGIN_START_COMMAND, PluginHelper.TP_JAVA + " -Dapple.awt.UIElement=true -jar ./" + pluginElement.getSimpleName() + ".jar " + PluginHelper.COMMAND_START);
jsonPlugin.addProperty(PluginHelper.PLUGIN_START_COMMAND + PluginHelper.PLUGIN_START_COMMAND_SUFFIX_WIN, PluginHelper.TP_JAVA + " -jar ./" + pluginElement.getSimpleName() + ".jar " + PluginHelper.COMMAND_START);
jsonPlugin.addProperty(PluginHelper.PLUGIN_START_COMMAND + PluginHelper.PLUGIN_START_COMMAND_SUFFIX_MACOS, PluginHelper.TP_JAVA + " -Dapple.awt.UIElement=true -jar ./" + pluginElement.getSimpleName() + ".jar " + PluginHelper.COMMAND_START);
jsonPlugin.addProperty(PluginHelper.PLUGIN_START_COMMAND + PluginHelper.PLUGIN_START_COMMAND_SUFFIX_LINUX, PluginHelper.TP_JAVA + " -jar ./" + pluginElement.getSimpleName() + ".jar " + PluginHelper.COMMAND_START);
jsonPlugin.addProperty(PluginHelper.PLUGIN_START_COMMAND, "java -Dapple.awt.UIElement=true -jar ./" + pluginElement.getSimpleName() + ".jar " + PluginHelper.COMMAND_START);
jsonPlugin.addProperty(PluginHelper.PLUGIN_START_COMMAND + PluginHelper.PLUGIN_START_COMMAND_SUFFIX_WIN, "java -jar ./" + pluginElement.getSimpleName() + ".jar " + PluginHelper.COMMAND_START);
jsonPlugin.addProperty(PluginHelper.PLUGIN_START_COMMAND + PluginHelper.PLUGIN_START_COMMAND_SUFFIX_MACOS, "java -Dapple.awt.UIElement=true -jar ./" + pluginElement.getSimpleName() + ".jar " + PluginHelper.COMMAND_START);
jsonPlugin.addProperty(PluginHelper.PLUGIN_START_COMMAND + PluginHelper.PLUGIN_START_COMMAND_SUFFIX_LINUX, "java -jar ./" + pluginElement.getSimpleName() + ".jar " + PluginHelper.COMMAND_START);

TypeSpec.Builder settingsTypeSpecBuilder = TypeSpec.classBuilder("Settings").addModifiers(Modifier.PUBLIC, Modifier.STATIC);
JsonArray jsonSettings = new JsonArray();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public class PluginHelper {
/**
* Touch Portal Plugin System TP_JAVA_FILE
*/
public static final String TP_JAVA = "java";
public static final String TP_JAVA = "%TP_JAVA_FILE%";
/**
* Touch Portal entry file
*/
Expand Down