Help test nb194

yes tried with all modern browsers like Safari,Chrome,Edge,Firefox,Brave.

Clicking on Backpack doesn't work

It works on my iPad

but it doesn't works for me, connected wired keyboard and mouse.

Also let me know whether Copy Paste Components and Copy Paste screen works fine? As it also doesn't works for me?

The test server has been updated. The new companion version is now 2.67t7u.

We have done an additional update to the test server to deploy a number of fixes to issues in the new user interface code. If you continue to encounter issues in the web interface please record them here.

Nice, but there still are some issues.

UI refactor (2)
  • The Import Project and Import Keystore dialogs, whether a project is opened in the background or not, show a white square on the border that shouldn't be there.

  • The Move Project button should be disabled when no projects are selected, just like Move To Trash.

    image

Component bugs (1)

If i move a folder to the trash it is not there when I look. When I press move to trash it says:
image

I would expect that if a folder is moved to trash it is visible there, even with the projects inside and that I can restore the folder with all projects in one go. Now the folder is deleted, not moved, and only the projects can be found in the trash.

1 Like

I checked before few days and now also after reading your comment,
It works fine for me, no issues with screen orientation

Really? I'll check it on my side. I built it just a few hours ago.

1 Like

Weirdly enough, for every project that I create and compile (also tried with other emails), I get the . error.

App Inventor is unable to compile this project.
The compiler error output was
.

There is no project in the project.

Test2.aia (1018 Bytes)

I've come up with fixes for the two UI issues reported. As for the Chart bug, that was not on our list of things for this release so it has not been addressed. I am not able to replicate the orientation issue any longer since the fix went in.

1 Like

@vishwas and @Susan_Lane would probably be best to address your comments Peter as they implemented the folders work.

This is due to a change I made as part of the SDK 33 update. I've identified the issue and have submitted a fix on our end. The error occurs when there aren't any blocks in a project. If you add a single block to the workspace, such as Screen1.Initialize, it should fix the problem temporarily.

1 Like

Thanks, the orientation issue seems to be fixed. I think I tested on the main server earlier.

Sticky Header is Sticky in Designer Section, but not in Blocks section.

Empty the Backpack doesn’t work on Test Server

Add / View Comments has Major UI bug as shown in below video

The bugs you have reported should be fixed now in the latest version of ai2-test.

1 Like

I am experiencing a small error on this server, if you have all the projects in folders, when you log in the welcome screen is always shown


4 Likes

Confirmed.

The pop up can be closed, fortunately.

I imagine this is left over from code that checks for a new user by project count, but that has not been told about folders that might contain projects.

2 Likes

I tried adding property categories for my extension. But, whatever I try, the properties are always shown as Unspecified.

    @SimpleProperty(description = "Set the amount of dim behind the dialog window. Use 0.0 for no dim and 1.0 for full dim.", category = PropertyCategory.APPEARANCE)
    public float DimAmount() {
        return dimAmount;
    }
    @DesignerProperty(editorType = PropertyTypeConstants.PROPERTY_TYPE_FLOAT, defaultValue = "0.5")
    @SimpleProperty (description = "Set the amount of dim behind the dialog window. Use '0.0' for no dim and '1.0' for full dim.", category = PropertyCategory.APPEARANCE)
    public void DimAmount(float input) {
        dimAmount = input;
    }

    @SimpleProperty(description = "This property specifies whether the dialog should be fullscreen displayed or not.", category = PropertyCategory.APPEARANCE)
    public boolean Fullscreen() {
        return fullscreen;
    }
    @DesignerProperty(editorType = PropertyTypeConstants.PROPERTY_TYPE_BOOLEAN, defaultValue = "false")
    @SimpleProperty (description = "This property specifies whether the dialog should be fullscreen displayed or not.", category = PropertyCategory.APPEARANCE)
    public void Fullscreen(boolean input) {
        fullscreen = input;
    }

    @SimpleProperty(description = "This property specifies whether HTML format" + 
    " should be enabled for the titles, messages and button texts of all dialogs.", category = PropertyCategory.APPEARANCE)
    public boolean HTMLFormat() {
        return html;
    }
    @DesignerProperty(editorType = PropertyTypeConstants.PROPERTY_TYPE_BOOLEAN, defaultValue = "false")
    @SimpleProperty (description = "This property specifies whether HTML format should be enabled for the titles, messages and button texts of all dialogs.", category = PropertyCategory.APPEARANCE)
    public void HTMLFormat(boolean input) {
        html = input;
    }
    
    @SimpleProperty(description = "This property specifies whether light theme should be enabled for the dialogs.", category = PropertyCategory.APPEARANCE)
    public boolean LightTheme() {
        return light;
    }
    @DesignerProperty(editorType = PropertyTypeConstants.PROPERTY_TYPE_BOOLEAN, defaultValue = "true")
    @SimpleProperty (description = "This property specifies whether light theme should be enabled for the dialogs.", category = PropertyCategory.APPEARANCE)
    public void LightTheme(boolean input) {
        light = input;
    }

Is the "back" button when compiled bug fixed in this release?