- Move src/, tests/, bin/, generated/, proto/, composer.json, composer.lock, phpunit.xml from php/ to repo root - Move ref/ to doc/reference_samples/ for better organization - Remove vendor/ from git tracking (now properly gitignored) - Update all test file paths (dirname adjustments and ref/ -> doc/reference_samples/) - Update all documentation paths (AGENTS.md, doc/*.md) - Remove php.bak/ directory - All 252 tests pass
47 lines
977 B
Protocol Buffer
Executable file
47 lines
977 B
Protocol Buffer
Executable file
syntax = "proto3";
|
|
|
|
package rv.data;
|
|
|
|
option cc_enable_arenas = true;
|
|
option csharp_namespace = "Pro.SerializationInterop.RVProtoData";
|
|
option swift_prefix = "RVData_";
|
|
|
|
import "applicationInfo.proto";
|
|
import "template.proto";
|
|
|
|
message CCLIDocument {
|
|
enum DisplayType {
|
|
DISPLAY_TYPE_FIRST_SLIDE = 0;
|
|
DISPLAY_TYPE_LAST_SLIDE = 1;
|
|
DISPLAY_TYPE_FIRST_AND_LAST_SLIDE = 2;
|
|
DISPLAY_TYPE_ALL_SLIDES = 3;
|
|
}
|
|
|
|
.rv.data.ApplicationInfo application_info = 1;
|
|
bool enable_ccli_display = 2;
|
|
string ccli_license = 3;
|
|
.rv.data.CCLIDocument.DisplayType display_type = 4;
|
|
.rv.data.Template.Slide template = 5;
|
|
}
|
|
|
|
message CopyrightLayout {
|
|
message Token {
|
|
.rv.data.CopyrightLayout.TokenType token_type = 1;
|
|
string text = 2;
|
|
}
|
|
|
|
enum TokenType {
|
|
Text = 0;
|
|
Artist = 1;
|
|
Author = 2;
|
|
Publisher = 3;
|
|
Title = 4;
|
|
CopyrightYear = 5;
|
|
LicenseNumber = 6;
|
|
SongNumber = 7;
|
|
}
|
|
|
|
repeated .rv.data.CopyrightLayout.Token tokens = 2;
|
|
}
|
|
|