Skip to content

Clarification/Banners: Trial version? Promo-Code? #134

Open
@ggrandes

Description

@ggrandes

Clarification: Is this code FOSS (Free/OpenSource) or promotional code?

Issue: After load page (~5 seconds) equo-code modifies the HTML being displayed and adds a banner. This behavior is not described anywhere; only a dual license like GPLv3 is indicated.

Transparency: Would you be so kind as to document this or any other unspecified/hidden behavior in this code? Thanks.

Screenshot:
trial

Injected HTML:
html

Reference code used:

import com.equo.chromium.ChromiumBrowser;

import java.awt.BorderLayout;
import javax.swing.JFrame;

public class TestEquoSwing extends JFrame {
	private TestEquoSwing() {
		setDefaultCloseOperation(System.getProperty("os.name").toLowerCase().contains("mac") 
				? EXIT_ON_CLOSE : DISPOSE_ON_CLOSE);
		ChromiumBrowser browser = ChromiumBrowser.swing(getContentPane(), BorderLayout.CENTER,
				"https://github.com/chromiumembedded/java-cef");
		setTitle("Test Equo Swing");
		setSize(800, 600);
		setVisible(true);
	}
	public static void main(String[] args) {
		new TestEquoSwing();
	}
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions