### _manifest is gone!_
For people who have already created applications...
-> you can keep the manifest if you have done specific changes in it. But will have to update to the new version.
-> you can delete it, and indicate at the beginning of the source, with a tag (new in this version :) what manifest you want:
```
// Amiga 1200 PAL
#manifest:"amiga"
```
```
// PC mode 1280x720, windowed
#manifest:"pc"
```
.. to go full-screen, just add another tag:
```
#fullScreen:true
```
..and to change the size of the canvas in the browser, (pokes into manifest.display.width and height)..
```
#manifest:"pc"
#displayWidth:1920
#displayHeight:1080
#fullScreen:true
#googleFont:"adamina"
Screen Open 1, 1920, 1080, 32, Lowres
Set Font "Adamina", 40 : Ink 1
Text Screen Width / 2, Screen Height / 2, "It works! (I hope! :) ", "#center"
```
Basically you have access to everything at the beginning of your code, and it is a lot simpler. And I can change the versions during development.
@Richard Langley You said you didnt get old projects to work, your number 1 point. Open the "welcome"-project to see how you use the new manifest.
your number 2 point: It works here when I have run another project like "welcome" first.
You need to read the "README.md"
Here is a fast cut of the info inside this file:
### _manifest is gone!_ For people who have already created applications... -> you can keep the manifest if you have done specific changes in it. But will have to update to the new version. -> you can delete it, and indicate at the beginning of the source, with a tag (new in this version :) what manifest you want: ``` // Amiga 1200 PAL #manifest:"amiga" ``` ``` // PC mode 1280x720, windowed #manifest:"pc" ``` .. to go full-screen, just add another tag: ``` #fullScreen:true ``` ..and to change the size of the canvas in the browser, (pokes into manifest.display.width and height).. ``` #manifest:"pc" #displayWidth:1920 #displayHeight:1080 #fullScreen:true #googleFont:"adamina" Screen Open 1, 1920, 1080, 32, Lowres Set Font "Adamina", 40 : Ink 1 Text Screen Width / 2, Screen Height / 2, "It works! (I hope! :) ", "#center" ``` Basically you have access to everything at the beginning of your code, and it is a lot simpler. And I can change the versions during development.
How am I to enter this data?
If I press 'New AOZ App' button, it won't create a file.
If I open a new File and put the manifest code in, it says '$(fileDirname)' can not be resolved...
II do not have enough information to proceed....
@Richard Langley You said you didnt get old projects to work, your number 1 point. Open the "welcome"-project to see how you use the new manifest. your number 2 point: It works here when I have run another project like "welcome" first.
The answer to the problem was in the description of the problem.
I meant to download the latest Beta version. Somehow I installed .9.3.2 not .9.4.
It said bad version of the manifest...." should be later than 8"
SOLVED