From 4d24c04ec321cb5b781041daa4b0490b24d7f07f Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Thu, 18 Sep 2025 07:29:51 +0700 Subject: [PATCH 001/124] Create examples.yml --- examples.yml | 340 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 340 insertions(+) create mode 100644 examples.yml diff --git a/examples.yml b/examples.yml new file mode 100644 index 000000000..ff152cb03 --- /dev/null +++ b/examples.yml @@ -0,0 +1,340 @@ +package examples + +import ( + "context" + "encoding/json" + "fmt" + "time" + "log" + "os" + "path/filepath" + + "google.golang.org/genai" +) + +func TokensContext() error { + // [START tokens_context] + ctx := context.Background() + client, err := genai.NewClient(ctx, &genai.ClientConfig{ + APIKey: os.Getenv("AIzaSyAYAo5MRPYHkG-nKg-kQyuwQ0sxp_UyIwg"), + Backend: genai.BackendGeminiAPI, + }) + if err != nil { + log.Fatal(err) + } + + modelInfo, err := client.Models.Get(ctx, "gemini-2.0-flash", &genai.GetModelConfig{}) + if err != nil { + log.Fatal(err) + } + fmt.Printf("input_token_limit=%d\n", modelInfo.InputTokenLimit) + fmt.Printf("output_token_limit=%d\n", modelInfo.OutputTokenLimit) + // [END tokens_context_window] + return err +} + +func TokensTextOnly() error { + // [START tokens_text_only] + ctx := context.Background() + client, err := genai.NewClient(ctx, &genai.ClientConfig{ + APIKey: os.Getenv("AIzaSyAYAo5MRPYHkG-nKg-kQyuwQ0sxp_UyIwg"), + Backend: genai.BackendGeminiAPI, + }) + if err != nil { + log.Fatal(err) + } + prompt := "The quick brown fox jumps over the lazy dog." + + // Convert prompt to a slice of *genai.Content using the helper. + contents := []*genai.Content{ + genai.NewContentFromText(prompt, genai.RoleUser), + } + countResp, err := client.Models.CountTokens(ctx, "gemini-2.0-flash", contents, nil) + if err != nil { + return err + } + fmt.Println("total_tokens:", countResp.TotalTokens) + + response, err := client.Models.GenerateContent(ctx, "gemini-2.0-flash", contents, nil) + if err != nil { + log.Fatal(err) + } + usageMetadata, err := json.MarshalIndent(response.UsageMetadata, "", " ") + if err != nil { + log.Fatal(err) + } + fmt.Println(string(usageMetadata)) + // [END tokens_text_only] + return err +} + +func TokensChat() error { + // [START tokens_chat] + ctx := context.Background() + client, err := genai.NewClient(ctx, &genai.ClientConfig{ + APIKey: os.Getenv("AIzaSyAYAo5MRPYHkG-nKg-kQyuwQ0sxp_UyIwg"), + Backend: genai.BackendGeminiAPI, + }) + if err != nil { + log.Fatal(err) + } + + // Initialize chat with some history. + history := []*genai.Content{ + {Role: genai.RoleUser, Parts: []*genai.Part{{Text: "Hi my name is Bob"}}}, + {Role: genai.RoleModel, Parts: []*genai.Part{{Text: "Hi Bob!"}}}, + } + chat, err := client.Chats.Create(ctx, "gemini-2.0-flash", nil, history) + if err != nil { + log.Fatal(err) + } + + firstTokenResp, err := client.Models.CountTokens(ctx, "gemini-2.0-flash", chat.History(false), nil) + if err != nil { + log.Fatal(err) + } + fmt.Println(firstTokenResp.TotalTokens) + + resp, err := chat.SendMessage(ctx, genai.Part{ + Text: "In one sentence, explain how a computer works to a young child."}, + ) + if err != nil { + log.Fatal(err) + } + fmt.Printf("%#v\n", resp.UsageMetadata) + + // Append an extra user message and recount. +extra:= +genai.NewContentFromText("Append an extra user message and recount.", genai.RoleUser) + hist := chat.History(false) + hist = append(hist, extra) + + secondTokenResp, err := client.Models.CountTokens(ctx, "gemini-2.0-flash", hist, nil) + if err != nil { + log.Fatal(err) + } + fmt.Println(secondTokenResp.TotalTokens) + // [END tokens_chat] + + return nil +} + +func TokensMultimodalImageFileApi() error { + // [START tokens_multimodal_image_file_api] + ctx := context.Background() + client, err := genai.NewClient(ctx, &genai.ClientConfig{ + APIKey: os.Getenv("AIzaSyAYAo5MRPYHkG-nKg-kQyuwQ0sxp_UyIwg"), + Backend: genai.BackendGeminiAPI, + }) + if err != nil { + log.Fatal(err) + } + + file, err := client.Files.UploadFromPath( + ctx, + filepath.Join(getMedia(), "organ.jpg"), + &genai.UploadFileConfig{ + MIMEType : "image/jpeg", + }, + ) + if err != nil { + log.Fatal(err) + } + parts := []*genai.Part{ + genai.NewPartFromText("Tell me about this image"), + genai.NewPartFromURI(file.URI, file.MIMEType), + } + contents := []*genai.Content{ + genai.NewContentFromParts(parts, genai.RoleUser), + } + + tokenResp, err := client.Models.CountTokens(ctx, "gemini-2.0-flash", contents, nil) + if err != nil { + log.Fatal(err) + } + fmt.Println("Multimodal image token count:", tokenResp.TotalTokens) + + response, err := client.Models.GenerateContent(ctx, "gemini-2.0-flash", contents, nil) + if err != nil { + log.Fatal(err) + } + usageMetadata, err := json.MarshalIndent(response.UsageMetadata, "", " ") + if err != nil { + log.Fatal(err) + } + fmt.Println(string(usageMetadata)) + // [END tokens_multimodal_image_file_api] + return err +} + +func TokensMultimodalVideoAudioFileApi() error { + // [START tokens_multimodal_video_audio_file_api] + ctx := context.Background() + client, err := genai.NewClient(ctx, &genai.ClientConfig{ + APIKey: os.Getenv("AIzaSyAYAo5MRPYHkG-nKg-kQyuwQ0sxp_UyIwg"), + Backend: genai.BackendGeminiAPI, + }) + if err != nil { + log.Fatal(err) + } + + file, err := client.Files.UploadFromPath( + ctx, + filepath.Join(getMedia(), "Big_Buck_Bunny.mp4"), + &genai.UploadFileConfig{ + MIMEType : "video/mp4", + }, + ) + if err != nil { + log.Fatal(err) + } + + // Poll until the video file is completely processed (state becomes ACTIVE). + for file.State == genai.FileStateUnspecified || file.State != genai.FileStateActive { + fmt.Println("Processing video...") + fmt.Println("File state:", file.State) + time.Sleep(5 * time.Second) + + file, err = client.Files.Get(ctx, file.Name, nil) + if err != nil { + log.Fatal(err) + } + } + + parts := []*genai.Part{ + genai.NewPartFromText("Tell me about this video"), + genai.NewPartFromURI(file.URI, file.MIMEType), + } + contents := []*genai.Content{ + genai.NewContentFromParts(parts, genai.RoleUser), + } + + tokenResp, err := client.Models.CountTokens(ctx, "gemini-2.0-flash", contents, nil) + if err != nil { + log.Fatal(err) + } + fmt.Println("Multimodal video/audio token count:", tokenResp.TotalTokens) + response, err := client.Models.GenerateContent(ctx, "gemini-2.0-flash", contents, nil) + if err != nil { + log.Fatal(err) + } + usageMetadata, err := json.MarshalIndent(response.UsageMetadata, "", " ") + if err != nil { + log.Fatal(err) + } + fmt.Println(string(usageMetadata)) + // [END tokens_multimodal_video_audio_file_api] + return err +} + +func TokensMultimodalPdfFileApi() error { + // [START tokens_multimodal_pdf_file_api] + ctx := context.Background() + client, err := genai.NewClient(ctx, &genai.ClientConfig{ + APIKey: os.Getenv(" "), + Backend: genai.BackendGeminiAPI, + }) + if err != nil { + log.Fatal(err) + } + + file, err := client.Files.UploadFromPath( + ctx, + filepath.Join(getMedia(), "test.pdf"), + &genai.UploadFileConfig{ + MIMEType : "application/pdf", + }, + ) + if err != nil { + log.Fatal(err) + } + parts := []*genai.Part{ + genai.NewPartFromText("Give me a summary of this document."), + genai.NewPartFromURI(file.URI, file.MIMEType), + } + contents := []*genai.Content{ + genai.NewContentFromParts(parts, genai.RoleUser), + } + + tokenResp, err := client.Models.CountTokens(ctx, "gemini-2.0-flash", contents, nil) + if err != nil { + log.Fatal(err) + } + fmt.Printf("Multimodal PDF token count: %d\n", tokenResp.TotalTokens) + response, err := client.Models.GenerateContent(ctx, "gemini-2.0-flash", contents, nil) + if err != nil { + log.Fatal(err) + } + usageMetadata, err := json.MarshalIndent(response.UsageMetadata, "", " ") + if err != nil { + log.Fatal(err) + } + fmt.Println(string(usageMetadata)) + // [END tokens_multimodal_pdf_file_api] + return err +} + +func TokensCachedContent() error { + // [START tokens_cached_content] + ctx := context.Background() + client, err := genai.NewClient(ctx, &genai.ClientConfig{ + APIKey: os.Getenv("AIzaSyAYAo5MRPYHkG-nKg-kQyuwQ0sxp_UyIwg"), + Backend: genai.BackendGeminiAPI, + }) + if err != nil { + log.Fatal(err) + } + + file, err := client.Files.UploadFromPath( + ctx, + filepath.Join(getMedia(), "a11.txt"), + &genai.UploadFileConfig{ + MIMEType : "text/plain", + }, + ) + if err != nil { + log.Fatal(err) + } + parts := []*genai.Part{ + genai.NewPartFromText("Here the Apollo 11 transcript:"), + genai.NewPartFromURI(file.URI, file.MIMEType), + } + contents := []*genai.Content{ + genai.NewContentFromParts(parts, genai.RoleUser), + } + + // Create cached content using a simple slice with text and a file. + cache, err := client.Caches.Create(ctx, "gemini-1.5-flash-001", &genai.CreateCachedContentConfig{ + Contents: contents, + }) + if err != nil { + log.Fatal(err) + } + + prompt := "Please give a short summary of this file." + countResp, err := client.Models.CountTokens(ctx, "gemini-2.0-flash", []*genai.Content{ + genai.NewContentFromText(prompt, genai.RoleUser), + }, nil) + if err != nil { + log.Fatal(err) + } + fmt.Printf("%d", countResp.TotalTokens) + response, err := client.Models.GenerateContent(ctx, "gemini-1.5-flash-001", []*genai.Content{ + genai.NewContentFromText(prompt, genai.RoleUser), + }, &genai.GenerateContentConfig{ + CachedContent: cache.Name, + }) + if err != nil { + log.Fatal(err) + } + + usageMetadata, err := json.MarshalIndent(response.UsageMetadata, "", " ") + if err != nil { + log.Fatal(err) + } + // Returns `nil` for some reason + fmt.Println(string(usageMetadata)) + _, err = client.Caches.Delete(ctx, cache.Name, &genai.DeleteCachedContentConfig{}) + // [END tokens_cached_content] + return err +} From 0afee2296da6a8e90e7e6f242b723e447c38da3f Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Thu, 18 Sep 2025 07:43:52 +0700 Subject: [PATCH 002/124] Update and rename examples.yml to examples.go --- examples.yml => examples.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename examples.yml => examples.go (99%) diff --git a/examples.yml b/examples.go similarity index 99% rename from examples.yml rename to examples.go index ff152cb03..620983682 100644 --- a/examples.yml +++ b/examples.go @@ -1,4 +1,4 @@ -package examples +package examples import ( "context" From 8e5fdde9b295fca4205aa6dec753d736ddbf9f19 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:15:36 +0700 Subject: [PATCH 003/124] Update examples.go --- examples.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples.go b/examples.go index 620983682..16ff5e69a 100644 --- a/examples.go +++ b/examples.go @@ -1,5 +1,5 @@ package examples - + import ( "context" "encoding/json" From 1425ac0f951287edc284c3732f8fce861c28e4ff Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:16:01 +0700 Subject: [PATCH 004/124] Update sonar-project.properties --- sonar-project.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sonar-project.properties b/sonar-project.properties index 16a182827..4a4c9414c 100644 --- a/sonar-project.properties +++ b/sonar-project.properties @@ -1,4 +1,4 @@ -sonar.projectKey=open-vsx_open-vsx-org +sonar.projectKey=open-vsx_open-vsx-org sonar.organization=open-vsx # This is the name and version displayed in the SonarCloud UI. From 6864a1c077b61681d67ebe36690a21b68b4edf00 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:16:58 +0700 Subject: [PATCH 005/124] Update examples.go --- examples.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples.go b/examples.go index 16ff5e69a..4dbdac4fa 100644 --- a/examples.go +++ b/examples.go @@ -1,4 +1,4 @@ -package examples +package examples import ( "context" From 826bbf3f43f009982a43c464b1005b33773412eb Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:18:12 +0700 Subject: [PATCH 006/124] Update sonar-project.properties --- sonar-project.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sonar-project.properties b/sonar-project.properties index 4a4c9414c..16a182827 100644 --- a/sonar-project.properties +++ b/sonar-project.properties @@ -1,4 +1,4 @@ -sonar.projectKey=open-vsx_open-vsx-org +sonar.projectKey=open-vsx_open-vsx-org sonar.organization=open-vsx # This is the name and version displayed in the SonarCloud UI. From 123ffd5750f10617e7f3cc0a303368095ea9e91b Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:21:25 +0700 Subject: [PATCH 007/124] Update .gitignore --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 0e09140f7..067df901e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,4 @@ -/.project +/.projected /generated-production/ /generated-staging/ /jsonnet-generated-production/ From d0bc4acee705b3c2d2226e86303261ff3c8389fb Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:21:58 +0700 Subject: [PATCH 008/124] Update .gitignore --- .gitignore | 30 ++++++++++++++++++++++++------ 1 file changed, 24 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index 067df901e..bd39806e1 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,24 @@ -/.projected -/generated-production/ -/generated-staging/ -/jsonnet-generated-production/ -/jsonnet-generated-staging/ -/charts/openvsx/charts +# Compiled class file +*.class + +# Log file +*.log + +# BlueJ files +*.ctxt + +# Mobile Tools for Java (J2ME) +.mtj.tmp/ + +# Package Files # +*.jar +*.war +*.nar +*.ear +*.zip +*.tar.gz +*.rar + +# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml +hs_err_pid* +replay_pid* From c37c246170527aeedd838ebdb41a92eab4bcbe17 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:22:40 +0700 Subject: [PATCH 009/124] Update .gitignore --- .gitignore | 219 ++++++++++++++++++++++++++++++++++++++++++++++++----- 1 file changed, 201 insertions(+), 18 deletions(-) diff --git a/.gitignore b/.gitignore index bd39806e1..b1d841afe 100644 --- a/.gitignore +++ b/.gitignore @@ -1,24 +1,207 @@ -# Compiled class file -*.class +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[codz] +*$py.class -# Log file +# C extensions +*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.nox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +*.py.cover +.hypothesis/ +.pytest_cache/ +cover/ + +# Translations +*.mo +*.pot + +# Django stuff: *.log +local_settings.py +db.sqlite3 +db.sqlite3-journal + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +.pybuilder/ +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# IPython +profile_default/ +ipython_config.py + +# pyenv +# For a library or package, you might want to ignore these files since the code is +# intended to run in multiple environments; otherwise, check them in: +# .python-version + +# pipenv +# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. +# However, in case of collaboration, if having platform-specific dependencies or dependencies +# having no cross-platform support, pipenv may install dependencies that don't work, or not +# install all needed dependencies. +#Pipfile.lock + +# UV +# Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control. +# This is especially recommended for binary packages to ensure reproducibility, and is more +# commonly ignored for libraries. +#uv.lock + +# poetry +# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. +# This is especially recommended for binary packages to ensure reproducibility, and is more +# commonly ignored for libraries. +# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control +#poetry.lock +#poetry.toml + +# pdm +# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. +# pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python. +# https://pdm-project.org/en/latest/usage/project/#working-with-version-control +#pdm.lock +#pdm.toml +.pdm-python +.pdm-build/ + +# pixi +# Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control. +#pixi.lock +# Pixi creates a virtual environment in the .pixi directory, just like venv module creates one +# in the .venv directory. It is recommended not to include this directory in version control. +.pixi + +# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm +__pypackages__/ + +# Celery stuff +celerybeat-schedule +celerybeat.pid + +# SageMath parsed files +*.sage.py + +# Environments +.env +.envrc +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json + +# Pyre type checker +.pyre/ + +# pytype static type analyzer +.pytype/ + +# Cython debug symbols +cython_debug/ + +# PyCharm +# JetBrains specific template is maintained in a separate JetBrains.gitignore that can +# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore +# and can be added to the global gitignore or merged into this file. For a more nuclear +# option (not recommended) you can uncomment the following to ignore the entire idea folder. +#.idea/ + +# Abstra +# Abstra is an AI-powered process automation framework. +# Ignore directories containing user credentials, local state, and settings. +# Learn more at https://abstra.io/docs +.abstra/ + +# Visual Studio Code +# Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore +# that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore +# and can be added to the global gitignore or merged into this file. However, if you prefer, +# you could uncomment the following to ignore the entire vscode folder +# .vscode/ -# BlueJ files -*.ctxt +# Ruff stuff: +.ruff_cache/ -# Mobile Tools for Java (J2ME) -.mtj.tmp/ +# PyPI configuration file +.pypirc -# Package Files # -*.jar -*.war -*.nar -*.ear -*.zip -*.tar.gz -*.rar +# Cursor +# Cursor is an AI-powered code editor. `.cursorignore` specifies files/directories to +# exclude from AI features like autocomplete and code analysis. Recommended for sensitive data +# refer to https://docs.cursor.com/context/ignore-files +.cursorignore +.cursorindexingignore -# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml -hs_err_pid* -replay_pid* +# Marimo +marimo/_static/ +marimo/_lsp/ +__marimo__/ From fe8b6457ea6bcb2556088be51525ed0bae05f645 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:23:10 +0700 Subject: [PATCH 010/124] Update .gitignore --- .gitignore | 221 ++++++----------------------------------------------- 1 file changed, 23 insertions(+), 198 deletions(-) diff --git a/.gitignore b/.gitignore index b1d841afe..75f2c32b1 100644 --- a/.gitignore +++ b/.gitignore @@ -1,207 +1,32 @@ -# Byte-compiled / optimized / DLL files -__pycache__/ -*.py[codz] -*$py.class - -# C extensions +# If you prefer the allow list template instead of the deny list, see community template: +# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore +# +# Binaries for programs and plugins +*.exe +*.exe~ +*.dll *.so +*.dylib -# Distribution / packaging -.Python -build/ -develop-eggs/ -dist/ -downloads/ -eggs/ -.eggs/ -lib/ -lib64/ -parts/ -sdist/ -var/ -wheels/ -share/python-wheels/ -*.egg-info/ -.installed.cfg -*.egg -MANIFEST - -# PyInstaller -# Usually these files are written by a python script from a template -# before PyInstaller builds the exe, so as to inject date/other infos into it. -*.manifest -*.spec - -# Installer logs -pip-log.txt -pip-delete-this-directory.txt - -# Unit test / coverage reports -htmlcov/ -.tox/ -.nox/ -.coverage -.coverage.* -.cache -nosetests.xml -coverage.xml -*.cover -*.py.cover -.hypothesis/ -.pytest_cache/ -cover/ - -# Translations -*.mo -*.pot - -# Django stuff: -*.log -local_settings.py -db.sqlite3 -db.sqlite3-journal - -# Flask stuff: -instance/ -.webassets-cache - -# Scrapy stuff: -.scrapy - -# Sphinx documentation -docs/_build/ - -# PyBuilder -.pybuilder/ -target/ - -# Jupyter Notebook -.ipynb_checkpoints - -# IPython -profile_default/ -ipython_config.py - -# pyenv -# For a library or package, you might want to ignore these files since the code is -# intended to run in multiple environments; otherwise, check them in: -# .python-version - -# pipenv -# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. -# However, in case of collaboration, if having platform-specific dependencies or dependencies -# having no cross-platform support, pipenv may install dependencies that don't work, or not -# install all needed dependencies. -#Pipfile.lock - -# UV -# Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control. -# This is especially recommended for binary packages to ensure reproducibility, and is more -# commonly ignored for libraries. -#uv.lock - -# poetry -# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. -# This is especially recommended for binary packages to ensure reproducibility, and is more -# commonly ignored for libraries. -# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control -#poetry.lock -#poetry.toml +# Test binary, built with `go test -c` +*.test -# pdm -# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. -# pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python. -# https://pdm-project.org/en/latest/usage/project/#working-with-version-control -#pdm.lock -#pdm.toml -.pdm-python -.pdm-build/ +# Code coverage profiles and other test artifacts +*.out +coverage.* +*.coverprofile +profile.cov -# pixi -# Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control. -#pixi.lock -# Pixi creates a virtual environment in the .pixi directory, just like venv module creates one -# in the .venv directory. It is recommended not to include this directory in version control. -.pixi +# Dependency directories (remove the comment below to include it) +# vendor/ -# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm -__pypackages__/ +# Go workspace file +go.work +go.work.sum -# Celery stuff -celerybeat-schedule -celerybeat.pid - -# SageMath parsed files -*.sage.py - -# Environments +# env file .env -.envrc -.venv -env/ -venv/ -ENV/ -env.bak/ -venv.bak/ - -# Spyder project settings -.spyderproject -.spyproject - -# Rope project settings -.ropeproject - -# mkdocs documentation -/site - -# mypy -.mypy_cache/ -.dmypy.json -dmypy.json - -# Pyre type checker -.pyre/ - -# pytype static type analyzer -.pytype/ -# Cython debug symbols -cython_debug/ - -# PyCharm -# JetBrains specific template is maintained in a separate JetBrains.gitignore that can -# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore -# and can be added to the global gitignore or merged into this file. For a more nuclear -# option (not recommended) you can uncomment the following to ignore the entire idea folder. -#.idea/ - -# Abstra -# Abstra is an AI-powered process automation framework. -# Ignore directories containing user credentials, local state, and settings. -# Learn more at https://abstra.io/docs -.abstra/ - -# Visual Studio Code -# Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore -# that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore -# and can be added to the global gitignore or merged into this file. However, if you prefer, -# you could uncomment the following to ignore the entire vscode folder +# Editor/IDE +# .idea/ # .vscode/ - -# Ruff stuff: -.ruff_cache/ - -# PyPI configuration file -.pypirc - -# Cursor -# Cursor is an AI-powered code editor. `.cursorignore` specifies files/directories to -# exclude from AI features like autocomplete and code analysis. Recommended for sensitive data -# refer to https://docs.cursor.com/context/ignore-files -.cursorignore -.cursorindexingignore - -# Marimo -marimo/_static/ -marimo/_lsp/ -__marimo__/ From e8969e305166eebd8be86b47b2e881072db1328e Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:23:33 +0700 Subject: [PATCH 011/124] Update .gitignore --- .gitignore | 86 ++++++++++++++++++++++++++++++++++-------------------- 1 file changed, 55 insertions(+), 31 deletions(-) diff --git a/.gitignore b/.gitignore index 75f2c32b1..c7a5be8c4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,32 +1,56 @@ -# If you prefer the allow list template instead of the deny list, see community template: -# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore +*.gem +*.rbc +/.config +/coverage/ +/InstalledFiles +/pkg/ +/spec/reports/ +/spec/examples.txt +/test/tmp/ +/test/version_tmp/ +/tmp/ + +# Used by dotenv library to load environment variables. +# .env + +# Ignore Byebug command history file. +.byebug_history + +## Specific to RubyMotion: +.dat* +.repl_history +build/ +*.bridgesupport +build-iPhoneOS/ +build-iPhoneSimulator/ + +## Specific to RubyMotion (use of CocoaPods): +# +# We recommend against adding the Pods directory to your .gitignore. However +# you should judge for yourself, the pros and cons are mentioned at: +# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control # -# Binaries for programs and plugins -*.exe -*.exe~ -*.dll -*.so -*.dylib - -# Test binary, built with `go test -c` -*.test - -# Code coverage profiles and other test artifacts -*.out -coverage.* -*.coverprofile -profile.cov - -# Dependency directories (remove the comment below to include it) -# vendor/ - -# Go workspace file -go.work -go.work.sum - -# env file -.env - -# Editor/IDE -# .idea/ -# .vscode/ +# vendor/Pods/ + +## Documentation cache and generated files: +/.yardoc/ +/_yardoc/ +/doc/ +/rdoc/ + +## Environment normalization: +/.bundle/ +/vendor/bundle +/lib/bundler/man/ + +# for a library or gem, you might want to ignore these files since the code is +# intended to run in multiple environments; otherwise, check them in: +# Gemfile.lock +# .ruby-version +# .ruby-gemset + +# unless supporting rvm < 1.11.0 or doing something fancy, ignore this: +.rvmrc + +# Used by RuboCop. Remote config files pulled in from inherit_from directive. +# .rubocop-https?--* From 1a976a508276be92e1bdac5f3a1aa24540ca01f6 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:24:03 +0700 Subject: [PATCH 012/124] Update .gitignore --- .gitignore | 74 +++++++++++++----------------------------------------- 1 file changed, 18 insertions(+), 56 deletions(-) diff --git a/.gitignore b/.gitignore index c7a5be8c4..5d947ca88 100644 --- a/.gitignore +++ b/.gitignore @@ -1,56 +1,18 @@ -*.gem -*.rbc -/.config -/coverage/ -/InstalledFiles -/pkg/ -/spec/reports/ -/spec/examples.txt -/test/tmp/ -/test/version_tmp/ -/tmp/ - -# Used by dotenv library to load environment variables. -# .env - -# Ignore Byebug command history file. -.byebug_history - -## Specific to RubyMotion: -.dat* -.repl_history -build/ -*.bridgesupport -build-iPhoneOS/ -build-iPhoneSimulator/ - -## Specific to RubyMotion (use of CocoaPods): -# -# We recommend against adding the Pods directory to your .gitignore. However -# you should judge for yourself, the pros and cons are mentioned at: -# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control -# -# vendor/Pods/ - -## Documentation cache and generated files: -/.yardoc/ -/_yardoc/ -/doc/ -/rdoc/ - -## Environment normalization: -/.bundle/ -/vendor/bundle -/lib/bundler/man/ - -# for a library or gem, you might want to ignore these files since the code is -# intended to run in multiple environments; otherwise, check them in: -# Gemfile.lock -# .ruby-version -# .ruby-gemset - -# unless supporting rvm < 1.11.0 or doing something fancy, ignore this: -.rvmrc - -# Used by RuboCop. Remote config files pulled in from inherit_from directive. -# .rubocop-https?--* +# Build and Release Folders +bin-debug/ +bin-release/ +[Oo]bj/ +[Bb]in/ + +# Other files and folders +.settings/ + +# Executables +*.swf +*.air +*.ipa +*.apk + +# Project files, i.e. `.project`, `.actionScriptProperties` and `.flexProperties` +# should NOT be excluded as they contain compiler settings and other important +# information for Eclipse / Flash Builder. From 64db7598b29c81bf0c765adc06829c8ca4194963 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:24:24 +0700 Subject: [PATCH 013/124] Update .gitignore --- .gitignore | 40 ++++++++++++++++++++++------------------ 1 file changed, 22 insertions(+), 18 deletions(-) diff --git a/.gitignore b/.gitignore index 5d947ca88..76514ff36 100644 --- a/.gitignore +++ b/.gitignore @@ -1,18 +1,22 @@ -# Build and Release Folders -bin-debug/ -bin-release/ -[Oo]bj/ -[Bb]in/ - -# Other files and folders -.settings/ - -# Executables -*.swf -*.air -*.ipa -*.apk - -# Project files, i.e. `.project`, `.actionScriptProperties` and `.flexProperties` -# should NOT be excluded as they contain compiler settings and other important -# information for Eclipse / Flash Builder. +### AL ### +#Template for AL projects for Dynamics 365 Business Central +#launch.json folder +.vscode/ +#Cache folder +.alcache/ +#Symbols folder +.alpackages/ +#Snapshots folder +.snapshots/ +#Testing Output folder +.output/ +#Extension App-file +*.app +#Rapid Application Development File +rad.json +#Translation Base-file +*.g.xlf +#License-file +*.flf +#Test results file +TestResults.xml From 1d522ee7522558bf7d5669ed0407dc260756030f Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:24:56 +0700 Subject: [PATCH 014/124] Update .gitignore --- .gitignore | 50 ++++++++++++++++++++++++++++---------------------- 1 file changed, 28 insertions(+), 22 deletions(-) diff --git a/.gitignore b/.gitignore index 76514ff36..55b8b0ea7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,22 +1,28 @@ -### AL ### -#Template for AL projects for Dynamics 365 Business Central -#launch.json folder -.vscode/ -#Cache folder -.alcache/ -#Symbols folder -.alpackages/ -#Snapshots folder -.snapshots/ -#Testing Output folder -.output/ -#Extension App-file -*.app -#Rapid Application Development File -rad.json -#Translation Base-file -*.g.xlf -#License-file -*.flf -#Test results file -TestResults.xml +# Firebase build and deployment files +/firebase-debug.log +/firebase-debug.*.log +.firebaserc + +# Firebase Hosting +/firebase.json +*.cache +hosting/.cache + +# Firebase Functions +/functions/node_modules/ +/functions/.env +/functions/package-lock.json + +# Firebase Emulators +/firebase-*.zip +/.firebase/ +/emulator-ui/ + +# Logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# Environment files (local configs) +/.env.* From 0de2163c75efc1519bb6f8939723b0a29f7b344c Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:25:25 +0700 Subject: [PATCH 015/124] Update .gitignore --- .gitignore | 38 +++++++++++++------------------------- 1 file changed, 13 insertions(+), 25 deletions(-) diff --git a/.gitignore b/.gitignore index 55b8b0ea7..4cb12d8db 100644 --- a/.gitignore +++ b/.gitignore @@ -1,28 +1,16 @@ -# Firebase build and deployment files -/firebase-debug.log -/firebase-debug.*.log -.firebaserc +# Node rules: +## Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) +.grunt -# Firebase Hosting -/firebase.json -*.cache -hosting/.cache +## Dependency directory +## Commenting this out is preferred by some people, see +## https://docs.npmjs.com/misc/faq#should-i-check-my-node_modules-folder-into-git +node_modules -# Firebase Functions -/functions/node_modules/ -/functions/.env -/functions/package-lock.json +# Book build output +_book -# Firebase Emulators -/firebase-*.zip -/.firebase/ -/emulator-ui/ - -# Logs -*.log -npm-debug.log* -yarn-debug.log* -yarn-error.log* - -# Environment files (local configs) -/.env.* +# eBook build output +*.epub +*.mobi +*.pdf From 5d16282910cc9bbfaac424245b8da66e6d4465d5 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:26:08 +0700 Subject: [PATCH 016/124] Update .gitignore --- .gitignore | 27 ++++++++++++++------------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/.gitignore b/.gitignore index 4cb12d8db..31619f598 100644 --- a/.gitignore +++ b/.gitignore @@ -1,16 +1,17 @@ -# Node rules: -## Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) -.grunt +# Libraries +*.lvlibp +*.llb -## Dependency directory -## Commenting this out is preferred by some people, see -## https://docs.npmjs.com/misc/faq#should-i-check-my-node_modules-folder-into-git -node_modules +# Shared objects (inc. Windows DLLs) +*.dll +*.so +*.so.* +*.dylib -# Book build output -_book +# Executables +*.exe -# eBook build output -*.epub -*.mobi -*.pdf +# Metadata +*.aliases +*.lvlps +.cache/ From a35036a37e8b8198b55f6ee9bd92b32b27d3251f Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:26:45 +0700 Subject: [PATCH 017/124] Update .gitignore --- .gitignore | 44 ++++++++++++++++++++++++++++++++++---------- 1 file changed, 34 insertions(+), 10 deletions(-) diff --git a/.gitignore b/.gitignore index 31619f598..d4fb28184 100644 --- a/.gitignore +++ b/.gitignore @@ -1,17 +1,41 @@ -# Libraries -*.lvlibp -*.llb +# Prerequisites +*.d -# Shared objects (inc. Windows DLLs) -*.dll +# Compiled Object files +*.slo +*.lo +*.o +*.obj + +# Precompiled Headers +*.gch +*.pch + +# Linker files +*.ilk + +# Debugger Files +*.pdb + +# Compiled Dynamic libraries *.so -*.so.* *.dylib +*.dll + +# Fortran module files +*.mod +*.smod + +# Compiled Static libraries +*.lai +*.la +*.a +*.lib # Executables *.exe +*.out +*.app -# Metadata -*.aliases -*.lvlps -.cache/ +# debug information files +*.dwo From 618d1564f4df9c008c2dc5141f36a052bf844715 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:27:11 +0700 Subject: [PATCH 018/124] Update .gitignore --- .gitignore | 59 +++++++++++++++++------------------------------------- 1 file changed, 18 insertions(+), 41 deletions(-) diff --git a/.gitignore b/.gitignore index d4fb28184..fae1d9b4b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,41 +1,18 @@ -# Prerequisites -*.d - -# Compiled Object files -*.slo -*.lo -*.o -*.obj - -# Precompiled Headers -*.gch -*.pch - -# Linker files -*.ilk - -# Debugger Files -*.pdb - -# Compiled Dynamic libraries -*.so -*.dylib -*.dll - -# Fortran module files -*.mod -*.smod - -# Compiled Static libraries -*.lai -*.la -*.a -*.lib - -# Executables -*.exe -*.out -*.app - -# debug information files -*.dwo +*/config/development +*/logs/log-*.php +!*/logs/index.html +*/cache/* +!system/cache/* +!*/cache/index.html +!*/cache/.htaccess + +user_guide_src/build/* +user_guide_src/cilexer/build/* +user_guide_src/cilexer/dist/* +user_guide_src/cilexer/pycilexer.egg-info/* + +#codeigniter 3 +application/logs/* +!application/logs/index.html +!application/logs/.htaccess +/vendor/ From c3e4a92ddfb7ba69cd1ea9221c5408f9e70df8a9 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:27:35 +0700 Subject: [PATCH 019/124] Update .gitignore --- .gitignore | 72 ++++++++++++++++++++++++++++++++++++++++-------------- 1 file changed, 54 insertions(+), 18 deletions(-) diff --git a/.gitignore b/.gitignore index fae1d9b4b..ce1227d4a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,18 +1,54 @@ -*/config/development -*/logs/log-*.php -!*/logs/index.html -*/cache/* -!system/cache/* -!*/cache/index.html -!*/cache/.htaccess - -user_guide_src/build/* -user_guide_src/cilexer/build/* -user_guide_src/cilexer/dist/* -user_guide_src/cilexer/pycilexer.egg-info/* - -#codeigniter 3 -application/logs/* -!application/logs/index.html -!application/logs/.htaccess -/vendor/ +## A streamlined .gitignore for modern .NET projects +## including temporary files, build results, and +## files generated by popular .NET tools. If you are +## developing with Visual Studio, the VS .gitignore +## https://github.com/github/gitignore/blob/main/VisualStudio.gitignore +## has more thorough IDE-specific entries. +## +## Get latest from https://github.com/github/gitignore/blob/main/Dotnet.gitignore + +# Build results +[Dd]ebug/ +[Dd]ebugPublic/ +[Rr]elease/ +[Rr]eleases/ +x64/ +x86/ +[Ww][Ii][Nn]32/ +[Aa][Rr][Mm]/ +[Aa][Rr][Mm]64/ +bld/ +[Bb]in/ +[Oo]bj/ +[Ll]og/ +[Ll]ogs/ + +# .NET Core +project.lock.json +project.fragment.lock.json +artifacts/ + +# ASP.NET Scaffolding +ScaffoldingReadMe.txt + +# NuGet Packages +*.nupkg +# NuGet Symbol Packages +*.snupkg + +# Others +~$* +*~ +CodeCoverage/ + +# MSBuild Binary and Structured Log +*.binlog + +# MSTest test Results +[Tt]est[Rr]esult*/ +[Bb]uild[Ll]og.* + +# NUnit +*.VisualState.xml +TestResult.xml +nunit-*.xml From 1868612ab4437d884be57ae7544308e3bec28331 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:28:10 +0700 Subject: [PATCH 020/124] Update .gitignore --- .gitignore | 95 +++++++++++++++++++++++------------------------------- 1 file changed, 41 insertions(+), 54 deletions(-) diff --git a/.gitignore b/.gitignore index ce1227d4a..d4fb28184 100644 --- a/.gitignore +++ b/.gitignore @@ -1,54 +1,41 @@ -## A streamlined .gitignore for modern .NET projects -## including temporary files, build results, and -## files generated by popular .NET tools. If you are -## developing with Visual Studio, the VS .gitignore -## https://github.com/github/gitignore/blob/main/VisualStudio.gitignore -## has more thorough IDE-specific entries. -## -## Get latest from https://github.com/github/gitignore/blob/main/Dotnet.gitignore - -# Build results -[Dd]ebug/ -[Dd]ebugPublic/ -[Rr]elease/ -[Rr]eleases/ -x64/ -x86/ -[Ww][Ii][Nn]32/ -[Aa][Rr][Mm]/ -[Aa][Rr][Mm]64/ -bld/ -[Bb]in/ -[Oo]bj/ -[Ll]og/ -[Ll]ogs/ - -# .NET Core -project.lock.json -project.fragment.lock.json -artifacts/ - -# ASP.NET Scaffolding -ScaffoldingReadMe.txt - -# NuGet Packages -*.nupkg -# NuGet Symbol Packages -*.snupkg - -# Others -~$* -*~ -CodeCoverage/ - -# MSBuild Binary and Structured Log -*.binlog - -# MSTest test Results -[Tt]est[Rr]esult*/ -[Bb]uild[Ll]og.* - -# NUnit -*.VisualState.xml -TestResult.xml -nunit-*.xml +# Prerequisites +*.d + +# Compiled Object files +*.slo +*.lo +*.o +*.obj + +# Precompiled Headers +*.gch +*.pch + +# Linker files +*.ilk + +# Debugger Files +*.pdb + +# Compiled Dynamic libraries +*.so +*.dylib +*.dll + +# Fortran module files +*.mod +*.smod + +# Compiled Static libraries +*.lai +*.la +*.a +*.lib + +# Executables +*.exe +*.out +*.app + +# debug information files +*.dwo From ec218ab09c5bcaaff6ed0f08d2f2863bd64e1e0f Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:28:46 +0700 Subject: [PATCH 021/124] Update .gitignore --- .gitignore | 60 +++++++++++++++++------------------------------------- 1 file changed, 19 insertions(+), 41 deletions(-) diff --git a/.gitignore b/.gitignore index d4fb28184..1f99f9d2f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,41 +1,19 @@ -# Prerequisites -*.d - -# Compiled Object files -*.slo -*.lo -*.o -*.obj - -# Precompiled Headers -*.gch -*.pch - -# Linker files -*.ilk - -# Debugger Files -*.pdb - -# Compiled Dynamic libraries -*.so -*.dylib -*.dll - -# Fortran module files -*.mod -*.smod - -# Compiled Static libraries -*.lai -*.la -*.a -*.lib - -# Executables -*.exe -*.out -*.app - -# debug information files -*.dwo +CMakeLists.txt.user +CMakeCache.txt +CMakeFiles +CMakeScripts +Testing +Makefile +cmake_install.cmake +install_manifest.txt +compile_commands.json +CTestTestfile.cmake +_deps +CMakeUserPresets.json + +# CLion +# JetBrains specific template is maintained in a separate JetBrains.gitignore that can +# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore +# and can be added to the global gitignore or merged into this file. For a more nuclear +# option (not recommended) you can uncomment the following to ignore the entire idea folder. +#cmake-build-* From 7f16d043a2e73c2af52af8ffed7f36e88a54766b Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:29:32 +0700 Subject: [PATCH 022/124] Update .gitignore --- .gitignore | 48 ++++++++++++++++++++++++++++++------------------ 1 file changed, 30 insertions(+), 18 deletions(-) diff --git a/.gitignore b/.gitignore index 1f99f9d2f..27a089f47 100644 --- a/.gitignore +++ b/.gitignore @@ -1,19 +1,31 @@ -CMakeLists.txt.user -CMakeCache.txt -CMakeFiles -CMakeScripts -Testing -Makefile -cmake_install.cmake -install_manifest.txt -compile_commands.json -CTestTestfile.cmake -_deps -CMakeUserPresets.json +# Built things +_Debug/ +Compiled/ -# CLion -# JetBrains specific template is maintained in a separate JetBrains.gitignore that can -# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore -# and can be added to the global gitignore or merged into this file. For a more nuclear -# option (not recommended) you can uncomment the following to ignore the entire idea folder. -#cmake-build-* +# AudioCache can be rebuilt from sources +AudioCache/ + +# Lockfile +_OpenInEditor.lock + +# User settings +Game.agf.user +*.crm.user + +# Backups +Game.agf.bak +backup_acsprset.spr + +# Memory dumps +*.dmp + +# Temporary files +# temporarily created during sprite or room background compression +~aclzw.tmp +# temporary, main game data, before getting packed into exe +game28.dta +# temporary build of the game before being moved to Compiled/ folder +*.exe + +# Log files +warnings.log From d9cadcf5b6d95c0eac35fa0675c6d1d1529b7fd0 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:29:56 +0700 Subject: [PATCH 023/124] Update .gitignore --- .gitignore | 48 +++++++++++++++++------------------------------- 1 file changed, 17 insertions(+), 31 deletions(-) diff --git a/.gitignore b/.gitignore index 27a089f47..e7de127b0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,31 +1,17 @@ -# Built things -_Debug/ -Compiled/ - -# AudioCache can be rebuilt from sources -AudioCache/ - -# Lockfile -_OpenInEditor.lock - -# User settings -Game.agf.user -*.crm.user - -# Backups -Game.agf.bak -backup_acsprset.spr - -# Memory dumps -*.dmp - -# Temporary files -# temporarily created during sprite or room background compression -~aclzw.tmp -# temporary, main game data, before getting packed into exe -game28.dta -# temporary build of the game before being moved to Compiled/ folder -*.exe - -# Log files -warnings.log +*.FASL +*.fasl +*.lisp-temp +*.dfsl +*.pfsl +*.d64fsl +*.p64fsl +*.lx64fsl +*.lx32fsl +*.dx64fsl +*.dx32fsl +*.fx64fsl +*.fx32fsl +*.sx64fsl +*.sx32fsl +*.wx64fsl +*.wx32fsl From 86e49e184e7d209bffafab89f6d1efe067cf20aa Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:30:28 +0700 Subject: [PATCH 024/124] Update .gitignore --- .gitignore | 23 ++++++----------------- 1 file changed, 6 insertions(+), 17 deletions(-) diff --git a/.gitignore b/.gitignore index e7de127b0..6f949f4a1 100644 --- a/.gitignore +++ b/.gitignore @@ -1,17 +1,6 @@ -*.FASL -*.fasl -*.lisp-temp -*.dfsl -*.pfsl -*.d64fsl -*.p64fsl -*.lx64fsl -*.lx32fsl -*.dx64fsl -*.dx32fsl -*.fx64fsl -*.fx32fsl -*.sx64fsl -*.sx32fsl -*.wx64fsl -*.wx32fsl +composer.phar +/vendor/ + +# Commit your application's lock file https://getcomposer.org/doc/01-basic-usage.md#commit-your-composer-lock-file-to-version-control +# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file +# composer.lock From 7e1c2720f66ad3965544d4a9ab54a60bcf761811 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:39:59 +0700 Subject: [PATCH 025/124] Update .gitignore --- .gitignore | 58 +++++++++++++++++++++++++++++++++++++++++++++++++----- 1 file changed, 53 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 6f949f4a1..ce1227d4a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,54 @@ -composer.phar -/vendor/ +## A streamlined .gitignore for modern .NET projects +## including temporary files, build results, and +## files generated by popular .NET tools. If you are +## developing with Visual Studio, the VS .gitignore +## https://github.com/github/gitignore/blob/main/VisualStudio.gitignore +## has more thorough IDE-specific entries. +## +## Get latest from https://github.com/github/gitignore/blob/main/Dotnet.gitignore -# Commit your application's lock file https://getcomposer.org/doc/01-basic-usage.md#commit-your-composer-lock-file-to-version-control -# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file -# composer.lock +# Build results +[Dd]ebug/ +[Dd]ebugPublic/ +[Rr]elease/ +[Rr]eleases/ +x64/ +x86/ +[Ww][Ii][Nn]32/ +[Aa][Rr][Mm]/ +[Aa][Rr][Mm]64/ +bld/ +[Bb]in/ +[Oo]bj/ +[Ll]og/ +[Ll]ogs/ + +# .NET Core +project.lock.json +project.fragment.lock.json +artifacts/ + +# ASP.NET Scaffolding +ScaffoldingReadMe.txt + +# NuGet Packages +*.nupkg +# NuGet Symbol Packages +*.snupkg + +# Others +~$* +*~ +CodeCoverage/ + +# MSBuild Binary and Structured Log +*.binlog + +# MSTest test Results +[Tt]est[Rr]esult*/ +[Bb]uild[Ll]og.* + +# NUnit +*.VisualState.xml +TestResult.xml +nunit-*.xml From 5b26723349d111045f956146cebd7a485cca61a6 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:40:25 +0700 Subject: [PATCH 026/124] Update .gitignore --- .gitignore | 58 ++++-------------------------------------------------- 1 file changed, 4 insertions(+), 54 deletions(-) diff --git a/.gitignore b/.gitignore index ce1227d4a..3933cd4dd 100644 --- a/.gitignore +++ b/.gitignore @@ -1,54 +1,4 @@ -## A streamlined .gitignore for modern .NET projects -## including temporary files, build results, and -## files generated by popular .NET tools. If you are -## developing with Visual Studio, the VS .gitignore -## https://github.com/github/gitignore/blob/main/VisualStudio.gitignore -## has more thorough IDE-specific entries. -## -## Get latest from https://github.com/github/gitignore/blob/main/Dotnet.gitignore - -# Build results -[Dd]ebug/ -[Dd]ebugPublic/ -[Rr]elease/ -[Rr]eleases/ -x64/ -x86/ -[Ww][Ii][Nn]32/ -[Aa][Rr][Mm]/ -[Aa][Rr][Mm]64/ -bld/ -[Bb]in/ -[Oo]bj/ -[Ll]og/ -[Ll]ogs/ - -# .NET Core -project.lock.json -project.fragment.lock.json -artifacts/ - -# ASP.NET Scaffolding -ScaffoldingReadMe.txt - -# NuGet Packages -*.nupkg -# NuGet Symbol Packages -*.snupkg - -# Others -~$* -*~ -CodeCoverage/ - -# MSBuild Binary and Structured Log -*.binlog - -# MSTest test Results -[Tt]est[Rr]esult*/ -[Bb]uild[Ll]og.* - -# NUnit -*.VisualState.xml -TestResult.xml -nunit-*.xml +.project +.settings +salesforce.schema +Referenced Packages From 4ae6e6eb283661dcd0b9281809e6dc6e823e0af3 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:40:58 +0700 Subject: [PATCH 027/124] Update .gitignore --- .gitignore | 23 +++++++++++++++++++---- 1 file changed, 19 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 3933cd4dd..314e4df12 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,19 @@ -.project -.settings -salesforce.schema -Referenced Packages +.DS_Store + +# Images +images/avatars/ +images/captchas/ +images/smileys/ +images/member_photos/ +images/signature_attachments/ +images/pm_attachments/ + +# For security do not publish the following files +system/expressionengine/config/database.php +system/expressionengine/config/config.php + +# Caches +sized/ +thumbs/ +_thumbs/ +*/expressionengine/cache/* From 1d0a1ac7f328499c76bf97f1d22a58d4c4ee1f27 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:41:24 +0700 Subject: [PATCH 028/124] Update .gitignore --- .gitignore | 51 ++++++++++++++++++++++++++++++++++----------------- 1 file changed, 34 insertions(+), 17 deletions(-) diff --git a/.gitignore b/.gitignore index 314e4df12..45c1abce8 100644 --- a/.gitignore +++ b/.gitignore @@ -1,19 +1,36 @@ +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. + +# dependencies +/node_modules +/.pnp +.pnp.js + +# testing +/coverage + +# next.js +/.next/ +/out/ + +# production +/build + +# misc .DS_Store +*.pem + +# debug +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# local env files +.env*.local +.env + +# vercel +.vercel -# Images -images/avatars/ -images/captchas/ -images/smileys/ -images/member_photos/ -images/signature_attachments/ -images/pm_attachments/ - -# For security do not publish the following files -system/expressionengine/config/database.php -system/expressionengine/config/config.php - -# Caches -sized/ -thumbs/ -_thumbs/ -*/expressionengine/cache/* +# typescript +*.tsbuildinfo +next-env.d.ts From 3dde8514476fe47c320b1d2fa9729226ddab5002 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:41:49 +0700 Subject: [PATCH 029/124] Update .gitignore --- .gitignore | 155 ++++++++++++++++++++++++++++++++++++++++++++--------- 1 file changed, 129 insertions(+), 26 deletions(-) diff --git a/.gitignore b/.gitignore index 45c1abce8..9a5acedff 100644 --- a/.gitignore +++ b/.gitignore @@ -1,36 +1,139 @@ -# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +lerna-debug.log* -# dependencies -/node_modules -/.pnp -.pnp.js +# Diagnostic reports (https://nodejs.org/api/report.html) +report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json -# testing -/coverage +# Runtime data +pids +*.pid +*.seed +*.pid.lock -# next.js -/.next/ -/out/ +# Directory for instrumented libs generated by jscoverage/JSCover +lib-cov -# production -/build +# Coverage directory used by tools like istanbul +coverage +*.lcov -# misc -.DS_Store -*.pem +# nyc test coverage +.nyc_output -# debug -npm-debug.log* -yarn-debug.log* -yarn-error.log* +# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) +.grunt -# local env files -.env*.local -.env +# Bower dependency directory (https://bower.io/) +bower_components + +# node-waf configuration +.lock-wscript + +# Compiled binary addons (https://nodejs.org/api/addons.html) +build/Release -# vercel -.vercel +# Dependency directories +node_modules/ +jspm_packages/ -# typescript +# Snowpack dependency directory (https://snowpack.dev/) +web_modules/ + +# TypeScript cache *.tsbuildinfo -next-env.d.ts + +# Optional npm cache directory +.npm + +# Optional eslint cache +.eslintcache + +# Optional stylelint cache +.stylelintcache + +# Optional REPL history +.node_repl_history + +# Output of 'npm pack' +*.tgz + +# Yarn Integrity file +.yarn-integrity + +# dotenv environment variable files +.env +.env.* +!.env.example + +# parcel-bundler cache (https://parceljs.org/) +.cache +.parcel-cache + +# Next.js build output +.next +out + +# Nuxt.js build / generate output +.nuxt +dist + +# Gatsby files +.cache/ +# Comment in the public line in if your project uses Gatsby and not Next.js +# https://nextjs.org/blog/next-9-1#public-directory-support +# public + +# vuepress build output +.vuepress/dist + +# vuepress v2.x temp and cache directory +.temp +.cache + +# Sveltekit cache directory +.svelte-kit/ + +# vitepress build output +**/.vitepress/dist + +# vitepress cache directory +**/.vitepress/cache + +# Docusaurus cache and generated files +.docusaurus + +# Serverless directories +.serverless/ + +# FuseBox cache +.fusebox/ + +# DynamoDB Local files +.dynamodb/ + +# Firebase cache directory +.firebase/ + +# TernJS port file +.tern-port + +# Stores VSCode versions used for testing VSCode extensions +.vscode-test + +# yarn v3 +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/sdks +!.yarn/versions + +# Vite logs files +vite.config.js.timestamp-* +vite.config.ts.timestamp-* From 5a008842f1731d540f0ca121010c2ade1d9759bb Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:42:29 +0700 Subject: [PATCH 030/124] Update .gitignore --- .gitignore | 146 +++-------------------------------------------------- 1 file changed, 7 insertions(+), 139 deletions(-) diff --git a/.gitignore b/.gitignore index 9a5acedff..74a9223a4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,139 +1,7 @@ -# Logs -logs -*.log -npm-debug.log* -yarn-debug.log* -yarn-error.log* -lerna-debug.log* - -# Diagnostic reports (https://nodejs.org/api/report.html) -report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json - -# Runtime data -pids -*.pid -*.seed -*.pid.lock - -# Directory for instrumented libs generated by jscoverage/JSCover -lib-cov - -# Coverage directory used by tools like istanbul -coverage -*.lcov - -# nyc test coverage -.nyc_output - -# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) -.grunt - -# Bower dependency directory (https://bower.io/) -bower_components - -# node-waf configuration -.lock-wscript - -# Compiled binary addons (https://nodejs.org/api/addons.html) -build/Release - -# Dependency directories -node_modules/ -jspm_packages/ - -# Snowpack dependency directory (https://snowpack.dev/) -web_modules/ - -# TypeScript cache -*.tsbuildinfo - -# Optional npm cache directory -.npm - -# Optional eslint cache -.eslintcache - -# Optional stylelint cache -.stylelintcache - -# Optional REPL history -.node_repl_history - -# Output of 'npm pack' -*.tgz - -# Yarn Integrity file -.yarn-integrity - -# dotenv environment variable files -.env -.env.* -!.env.example - -# parcel-bundler cache (https://parceljs.org/) -.cache -.parcel-cache - -# Next.js build output -.next -out - -# Nuxt.js build / generate output -.nuxt -dist - -# Gatsby files -.cache/ -# Comment in the public line in if your project uses Gatsby and not Next.js -# https://nextjs.org/blog/next-9-1#public-directory-support -# public - -# vuepress build output -.vuepress/dist - -# vuepress v2.x temp and cache directory -.temp -.cache - -# Sveltekit cache directory -.svelte-kit/ - -# vitepress build output -**/.vitepress/dist - -# vitepress cache directory -**/.vitepress/cache - -# Docusaurus cache and generated files -.docusaurus - -# Serverless directories -.serverless/ - -# FuseBox cache -.fusebox/ - -# DynamoDB Local files -.dynamodb/ - -# Firebase cache directory -.firebase/ - -# TernJS port file -.tern-port - -# Stores VSCode versions used for testing VSCode extensions -.vscode-test - -# yarn v3 -.pnp.* -.yarn/* -!.yarn/patches -!.yarn/plugins -!.yarn/releases -!.yarn/sdks -!.yarn/versions - -# Vite logs files -vite.config.js.timestamp-* -vite.config.ts.timestamp-* +_site/ +.sass-cache/ +.jekyll-cache/ +.jekyll-metadata +# Ignore folders generated by Bundler +.bundle/ +vendor/ From 77fefdac3e068ba3d60230383d617a82baedd705 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:43:05 +0700 Subject: [PATCH 031/124] Update .gitignore --- .gitignore | 32 +++++++++++++++++++++++++------- 1 file changed, 25 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index 74a9223a4..c6597e4ea 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,25 @@ -_site/ -.sass-cache/ -.jekyll-cache/ -.jekyll-metadata -# Ignore folders generated by Bundler -.bundle/ -vendor/ +# CakePHP 3 + +/vendor/* +/config/app.php + +/tmp/cache/models/* +!/tmp/cache/models/empty +/tmp/cache/persistent/* +!/tmp/cache/persistent/empty +/tmp/cache/views/* +!/tmp/cache/views/empty +/tmp/sessions/* +!/tmp/sessions/empty +/tmp/tests/* +!/tmp/tests/empty + +/logs/* +!/logs/empty + +# CakePHP 2 + +/app/tmp/* +/app/Config/core.php +/app/Config/database.php +/vendors/* From 326259a6bf465c3fcc3cb68296b3a7d8f8276c4d Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:43:39 +0700 Subject: [PATCH 032/124] Update .gitignore --- .gitignore | 97 +++++++++++++++++++++++++++++++++++++++++++----------- 1 file changed, 77 insertions(+), 20 deletions(-) diff --git a/.gitignore b/.gitignore index c6597e4ea..9db64f626 100644 --- a/.gitignore +++ b/.gitignore @@ -1,25 +1,82 @@ -# CakePHP 3 +# Uncomment these types if you want even more clean repository. But be careful. +# It can make harm to an existing project source. Read explanations below. +# +# Resource files are binaries containing manifest, project icon and version info. +# They can not be viewed as text or compared by diff-tools. Consider replacing them with .rc files. +#*.res +# +# Type library file (binary). In old Delphi versions it should be stored. +# Since Delphi 2009 it is produced from .ridl file and can safely be ignored. +#*.tlb +# +# Diagram Portfolio file. Used by the diagram editor up to Delphi 7. +# Uncomment this if you are not using diagrams or use newer Delphi version. +#*.ddp +# +# Visual LiveBindings file. Added in Delphi XE2. +# Uncomment this if you are not using LiveBindings Designer. +#*.vlb +# +# Deployment Manager configuration file for your project. Added in Delphi XE2. +# Uncomment this if it is not mobile development and you do not use remote debug feature. +#*.deployproj +# +# C++ object files produced when C/C++ Output file generation is configured. +# Uncomment this if you are not using external objects (zlib library for example). +#*.obj +# -/vendor/* -/config/app.php +# Default Delphi compiler directories +# Content of this directories are generated with each Compile/Construct of a project. +# Most of the time, files here have not there place in a code repository. +#Win32/ +#Win64/ +#OSX64/ +#OSXARM64/ +#Android/ +#Android64/ +#iOSDevice64/ +#Linux64/ -/tmp/cache/models/* -!/tmp/cache/models/empty -/tmp/cache/persistent/* -!/tmp/cache/persistent/empty -/tmp/cache/views/* -!/tmp/cache/views/empty -/tmp/sessions/* -!/tmp/sessions/empty -/tmp/tests/* -!/tmp/tests/empty +# Delphi compiler-generated binaries (safe to delete) +*.exe +*.dll +*.bpl +*.bpi +*.dcp +*.so +*.apk +*.drc +*.map +*.dres +*.rsm +*.tds +*.dcu +*.lib +*.a +*.o +*.ocx -/logs/* -!/logs/empty +# Delphi autogenerated files (duplicated info) +*.cfg +*.hpp +*Resource.rc -# CakePHP 2 +# Delphi local files (user-specific info) +*.local +*.identcache +*.projdata +*.tvsconfig +*.dsk +*.dsv -/app/tmp/* -/app/Config/core.php -/app/Config/database.php -/vendors/* +# Delphi history and backups +__history/ +__recovery/ +*.~* + +# Castalia statistics file (since XE7 Castalia is distributed with Delphi) +*.stat + +# Boss dependency manager vendor folder https://github.com/HashLoad/boss +modules/ From 42d181260d3a9ca05e8d17e19d8fd913b544d129 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:44:10 +0700 Subject: [PATCH 033/124] Update .gitignore --- .gitignore | 110 +++++++++++++++++------------------------------------ 1 file changed, 35 insertions(+), 75 deletions(-) diff --git a/.gitignore b/.gitignore index 9db64f626..aa2cc996d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,82 +1,42 @@ -# Uncomment these types if you want even more clean repository. But be careful. -# It can make harm to an existing project source. Read explanations below. -# -# Resource files are binaries containing manifest, project icon and version info. -# They can not be viewed as text or compared by diff-tools. Consider replacing them with .rc files. -#*.res -# -# Type library file (binary). In old Delphi versions it should be stored. -# Since Delphi 2009 it is produced from .ridl file and can safely be ignored. -#*.tlb -# -# Diagram Portfolio file. Used by the diagram editor up to Delphi 7. -# Uncomment this if you are not using diagrams or use newer Delphi version. -#*.ddp -# -# Visual LiveBindings file. Added in Delphi XE2. -# Uncomment this if you are not using LiveBindings Designer. -#*.vlb -# -# Deployment Manager configuration file for your project. Added in Delphi XE2. -# Uncomment this if it is not mobile development and you do not use remote debug feature. -#*.deployproj -# -# C++ object files produced when C/C++ Output file generation is configured. -# Uncomment this if you are not using external objects (zlib library for example). -#*.obj -# +# Modelica - an object-oriented language for modeling of cyber-physical systems +# https://modelica.org/ +# Ignore temporary files, build results, simulation files -# Default Delphi compiler directories -# Content of this directories are generated with each Compile/Construct of a project. -# Most of the time, files here have not there place in a code repository. -#Win32/ -#Win64/ -#OSX64/ -#OSXARM64/ -#Android/ -#Android64/ -#iOSDevice64/ -#Linux64/ +## Modelica-specific files +*~ +*.bak +*.bak-mo +*.mof +\#*\# +*.moe +*.mol -# Delphi compiler-generated binaries (safe to delete) +## Build artefacts *.exe -*.dll -*.bpl -*.bpi -*.dcp -*.so -*.apk -*.drc -*.map -*.dres -*.rsm -*.tds -*.dcu -*.lib -*.a +*.exp *.o -*.ocx +*.pyc -# Delphi autogenerated files (duplicated info) -*.cfg -*.hpp -*Resource.rc +## Simulation files +*.mat -# Delphi local files (user-specific info) -*.local -*.identcache -*.projdata -*.tvsconfig -*.dsk -*.dsv +## Package files +*.gz +*.rar +*.tar +*.zip -# Delphi history and backups -__history/ -__recovery/ -*.~* - -# Castalia statistics file (since XE7 Castalia is distributed with Delphi) -*.stat - -# Boss dependency manager vendor folder https://github.com/HashLoad/boss -modules/ +## Dymola-specific files +buildlog.txt +dsfinal.txt +dsin.txt +dslog.txt +dsmodel* +dsres.txt +dymosim* +request +stat +status +stop +success +*. From d0d807ee21ce6c81fd9aa331296d523777efb935 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:44:44 +0700 Subject: [PATCH 034/124] Update .gitignore --- .gitignore | 47 ++++++----------------------------------------- 1 file changed, 6 insertions(+), 41 deletions(-) diff --git a/.gitignore b/.gitignore index aa2cc996d..cbb89d78d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,42 +1,7 @@ -# Modelica - an object-oriented language for modeling of cyber-physical systems -# https://modelica.org/ -# Ignore temporary files, build results, simulation files +*.ss~ +*.ss#* +.#*.ss -## Modelica-specific files -*~ -*.bak -*.bak-mo -*.mof -\#*\# -*.moe -*.mol - -## Build artefacts -*.exe -*.exp -*.o -*.pyc - -## Simulation files -*.mat - -## Package files -*.gz -*.rar -*.tar -*.zip - -## Dymola-specific files -buildlog.txt -dsfinal.txt -dsin.txt -dslog.txt -dsmodel* -dsres.txt -dymosim* -request -stat -status -stop -success -*. +*.scm~ +*.scm#* +.#*.scm From a1dc85650f55fbc695f670a2ddc2e8adcc2a899a Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:45:17 +0700 Subject: [PATCH 035/124] Update .gitignore --- .gitignore | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index cbb89d78d..0180838ae 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,3 @@ -*.ss~ -*.ss#* -.#*.ss - -*.scm~ -*.scm#* -.#*.scm +.zig-cache/ +zig-out/ +*.o From 8530b7d94eb85cc295ec79dcae8d9415741ac78c Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:45:49 +0700 Subject: [PATCH 036/124] Update .gitignore --- .gitignore | 30 +++++++++++++++++++++++++++--- 1 file changed, 27 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 0180838ae..e563c564e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,27 @@ -.zig-cache/ -zig-out/ -*.o +# Compiled class file +*.class + +# Log file +*.log + +# BlueJ files +*.ctxt + +# Mobile Tools for Java (J2ME) +.mtj.tmp/ + +# Package Files # +*.jar +*.war +*.nar +*.ear +*.zip +*.tar.gz +*.rar + +# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml +hs_err_pid* +replay_pid* + +# Kotlin Gradle plugin data, see https://kotlinlang.org/docs/whatsnew20.html#new-directory-for-kotlin-data-in-gradle-projects +.kotlin/ From 5b1c8e51c94c4b5c8240ce7a3b72d116983aa0ea Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:46:10 +0700 Subject: [PATCH 037/124] Update .gitignore --- .gitignore | 35 +++++++++++------------------------ 1 file changed, 11 insertions(+), 24 deletions(-) diff --git a/.gitignore b/.gitignore index e563c564e..289fa5c67 100644 --- a/.gitignore +++ b/.gitignore @@ -1,27 +1,14 @@ -# Compiled class file -*.class - -# Log file -*.log - -# BlueJ files -*.ctxt - -# Mobile Tools for Java (J2ME) -.mtj.tmp/ - -# Package Files # +*.tar +*.tar.* *.jar -*.war -*.nar -*.ear +*.exe +*.msi +*.deb *.zip -*.tar.gz -*.rar - -# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml -hs_err_pid* -replay_pid* +*.tgz +*.log +*.log.* +*.sig -# Kotlin Gradle plugin data, see https://kotlinlang.org/docs/whatsnew20.html#new-directory-for-kotlin-data-in-gradle-projects -.kotlin/ +pkg/ +src/ From 871b6caa2c305a04ae2777990228531f8ef47521 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:46:50 +0700 Subject: [PATCH 038/124] Update .gitignore --- .gitignore | 34 ++++++++++++++++++++++------------ 1 file changed, 22 insertions(+), 12 deletions(-) diff --git a/.gitignore b/.gitignore index 289fa5c67..845341e44 100644 --- a/.gitignore +++ b/.gitignore @@ -1,14 +1,24 @@ -*.tar -*.tar.* -*.jar -*.exe -*.msi -*.deb -*.zip -*.tgz +# Nestjs specific +/dist +/node_modules +/build +/tmp + +# Logs +logs *.log -*.log.* -*.sig +npm-debug.log* +pnpm-debug.log* +yarn-debug.log* +yarn-error.log* +lerna-debug.log* + +# dotenv environment variable files +.env +.env.development +.env.test +.env.production -pkg/ -src/ +# temp directory +.temp +.tmp From 960be804aee95ee4ecff427e9003a431c39d4d69 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:47:25 +0700 Subject: [PATCH 039/124] Update .gitignore --- .gitignore | 74 ++++++++++++++++++++++++++++++++++++------------------ 1 file changed, 50 insertions(+), 24 deletions(-) diff --git a/.gitignore b/.gitignore index 845341e44..2516c0994 100644 --- a/.gitignore +++ b/.gitignore @@ -1,24 +1,50 @@ -# Nestjs specific -/dist -/node_modules -/build -/tmp - -# Logs -logs -*.log -npm-debug.log* -pnpm-debug.log* -yarn-debug.log* -yarn-error.log* -lerna-debug.log* - -# dotenv environment variable files -.env -.env.development -.env.test -.env.production - -# temp directory -.temp -.tmp +# Learn more about Jenkins and JENKINS_HOME directory for which this file is +# intended. +# +# http://jenkins-ci.org/ +# https://wiki.jenkins-ci.org/display/JENKINS/Administering+Jenkins +# +# Note: secret.key is purposefully not tracked by git. This should be backed up +# separately because configs may contain secrets which were encrypted using the +# secret.key. To back up secrets use 'tar -czf /tmp/secrets.tgz secret*' and +# save the file separate from your repository. If you want secrets backed up +# with configuration, then see the bottom of this file for an example. + +# Ignore all JENKINS_HOME except jobs directory, root xml config, and +# .gitignore file. +/* +!/jobs +!/.gitignore +!/*.xml + +# Ignore all files in jobs subdirectories except for folders. +# Note: git doesn't track folders, only file content. +jobs/** +!jobs/**/ + +# Uncomment the following line to save next build numbers with config. + +#!jobs/**/nextBuildNumber + +# For performance reasons, we want to ignore builds in Jenkins jobs because it +# contains many tiny files on large installations. This can impact git +# performance when running even basic commands like 'git status'. +builds +indexing + +# Exclude only config.xml files in repository subdirectories. +!config.xml + +# Don't track workspaces (when users build on the master). +jobs/**/*workspace + +# Security warning: If secrets are included with your configuration, then an +# adversary will be able to decrypt all encrypted secrets within Jenkins +# config. Including secrets is a bad practice, but the example is included in +# case someone still wants it for convenience. Uncomment the following line to +# include secrets for decryption with repository configuration in Git. + +#!/secret* + +# As a result, only Jenkins settings and job config.xml files in JENKINS_HOME +# will be tracked by git. From c5fdee299c2d0890b6190c816b31137d3c0b13ab Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:47:46 +0700 Subject: [PATCH 040/124] Update .gitignore --- .gitignore | 70 ++++++++++++++++-------------------------------------- 1 file changed, 20 insertions(+), 50 deletions(-) diff --git a/.gitignore b/.gitignore index 2516c0994..97be41faa 100644 --- a/.gitignore +++ b/.gitignore @@ -1,50 +1,20 @@ -# Learn more about Jenkins and JENKINS_HOME directory for which this file is -# intended. -# -# http://jenkins-ci.org/ -# https://wiki.jenkins-ci.org/display/JENKINS/Administering+Jenkins -# -# Note: secret.key is purposefully not tracked by git. This should be backed up -# separately because configs may contain secrets which were encrypted using the -# secret.key. To back up secrets use 'tar -czf /tmp/secrets.tgz secret*' and -# save the file separate from your repository. If you want secrets backed up -# with configuration, then see the bottom of this file for an example. - -# Ignore all JENKINS_HOME except jobs directory, root xml config, and -# .gitignore file. -/* -!/jobs -!/.gitignore -!/*.xml - -# Ignore all files in jobs subdirectories except for folders. -# Note: git doesn't track folders, only file content. -jobs/** -!jobs/**/ - -# Uncomment the following line to save next build numbers with config. - -#!jobs/**/nextBuildNumber - -# For performance reasons, we want to ignore builds in Jenkins jobs because it -# contains many tiny files on large installations. This can impact git -# performance when running even basic commands like 'git status'. -builds -indexing - -# Exclude only config.xml files in repository subdirectories. -!config.xml - -# Don't track workspaces (when users build on the master). -jobs/**/*workspace - -# Security warning: If secrets are included with your configuration, then an -# adversary will be able to decrypt all encrypted secrets within Jenkins -# config. Including secrets is a bad practice, but the example is included in -# case someone still wants it for convenience. Uncomment the following line to -# include secrets for decryption with repository configuration in Git. - -#!/secret* - -# As a result, only Jenkins settings and job config.xml files in JENKINS_HOME -# will be tracked by git. +.htaccess +/config.php +admin/config.php + +!index.html + +download/ +image/data/ +image/cache/ +system/cache/ +system/logs/ + +system/storage/ + +# vQmod log files +vqmod/logs/* +# vQmod cache files +vqmod/vqcache/* +vqmod/checked.cache +vqmod/mods.cache From 5913fb7ceb2ebfcf674d7b1cdcbf2a628fd50fe1 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:48:10 +0700 Subject: [PATCH 041/124] Update .gitignore --- .gitignore | 46 ++++++++++++++++++++++++++++++---------------- 1 file changed, 30 insertions(+), 16 deletions(-) diff --git a/.gitignore b/.gitignore index 97be41faa..e5cbb6414 100644 --- a/.gitignore +++ b/.gitignore @@ -1,20 +1,34 @@ -.htaccess -/config.php -admin/config.php +# Gradle files +.gradle/ +build/ -!index.html +# Local configuration file (sdk path, etc) +local.properties -download/ -image/data/ -image/cache/ -system/cache/ -system/logs/ +# Log/OS Files +*.log -system/storage/ +# Android Studio generated files and folders +captures/ +.externalNativeBuild/ +.cxx/ +*.aab +*.apk +output-metadata.json -# vQmod log files -vqmod/logs/* -# vQmod cache files -vqmod/vqcache/* -vqmod/checked.cache -vqmod/mods.cache +# IntelliJ +*.iml +.idea/ +misc.xml +deploymentTargetDropDown.xml +render.experimental.xml + +# Keystore files +*.jks +*.keystore + +# Google Services (e.g. APIs or Firebase) +google-services.json + +# Android Profiling +*.hprof From b3e17fea5998524873e2f7b1853c5e747968142c Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:48:43 +0700 Subject: [PATCH 042/124] Update .gitignore --- .gitignore | 37 ++++--------------------------------- 1 file changed, 4 insertions(+), 33 deletions(-) diff --git a/.gitignore b/.gitignore index e5cbb6414..b4d703968 100644 --- a/.gitignore +++ b/.gitignore @@ -1,34 +1,5 @@ -# Gradle files -.gradle/ -build/ +# Object file +*.o -# Local configuration file (sdk path, etc) -local.properties - -# Log/OS Files -*.log - -# Android Studio generated files and folders -captures/ -.externalNativeBuild/ -.cxx/ -*.aab -*.apk -output-metadata.json - -# IntelliJ -*.iml -.idea/ -misc.xml -deploymentTargetDropDown.xml -render.experimental.xml - -# Keystore files -*.jks -*.keystore - -# Google Services (e.g. APIs or Firebase) -google-services.json - -# Android Profiling -*.hprof +# Ada Library Information +*.ali From 91547554a9a9cccba90d0956e45eeaadcd350121 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:49:07 +0700 Subject: [PATCH 043/124] Update .gitpod.yml --- .gitpod.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod.yml b/.gitpod.yml index c75353ef7..ea28bf141 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -1,4 +1,4 @@ -ports: +ports: - port: 3000 tasks: From ec46bb62eaa7fe7bab81605877ecf861da6d8e46 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:49:37 +0700 Subject: [PATCH 044/124] Update Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ab7b312f4..9b342ce6c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -ARG SERVER_VERSION=c2ec92e6 +ARG SERVER_VERSION # Builder image to compile the website FROM ubuntu AS builder @@ -36,4 +36,4 @@ COPY --from=builder --chown=openvsx:openvsx /workdir/configuration/application.y COPY --from=builder --chown=openvsx:openvsx /workdir/configuration/logback-spring.xml BOOT-INF/classes/ # Replace version placeholder with arg value -RUN sed -i "s//$SERVER_VERSION/g" config/application.yml \ No newline at end of file +RUN sed -i "s//$SERVER_VERSION/g" config/application.yml From 1c370fcfc9b828b7cab55eb18ec4befcb2188f8a Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:50:05 +0700 Subject: [PATCH 045/124] Update Jenkinsfile --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 0d1b134c7..f09f8cb3b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,4 +1,4 @@ -pipeline { +pipeline { agent { kubernetes { label 'kubedeploy-agent' From 60328074c70bd51fe5ad8783ae5972bee177b89e Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:50:46 +0700 Subject: [PATCH 046/124] Update LICENSE --- LICENSE | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/LICENSE b/LICENSE index e23ece2c8..d5c768efd 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Eclipse Public License - v 2.0 +Eclipse Public License - v 2.0 THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION @@ -274,4 +274,4 @@ version(s), and exceptions or additional permissions here}." file in a relevant directory) where a recipient would be likely to look for such a notice. - You may add additional accurate notices of copyright ownership. \ No newline at end of file + You may add additional accurate notices of copyright ownership. From c7776a864e326977aac78497752ad0f3cd7b8879 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:51:13 +0700 Subject: [PATCH 047/124] Update Grafana Agent Overview-1715193342579.json --- dashboards/Grafana Agent Overview-1715193342579.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dashboards/Grafana Agent Overview-1715193342579.json b/dashboards/Grafana Agent Overview-1715193342579.json index 6afb2a650..9f4c4e0f8 100644 --- a/dashboards/Grafana Agent Overview-1715193342579.json +++ b/dashboards/Grafana Agent Overview-1715193342579.json @@ -1,4 +1,4 @@ -{ +{ "__inputs": [], "__elements": {}, "__requires": [ @@ -1132,4 +1132,4 @@ "uid": "integration-agent", "version": 1, "weekStart": "" -} \ No newline at end of file +} From c4fbc20e4956c9f6f3c77a3c4860fde3027f4c18 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:52:11 +0700 Subject: [PATCH 048/124] Update Spring Boot Statistics.json --- dashboards/Spring Boot Statistics-1715193360107.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dashboards/Spring Boot Statistics-1715193360107.json b/dashboards/Spring Boot Statistics-1715193360107.json index d29854408..b66ec8156 100644 --- a/dashboards/Spring Boot Statistics-1715193360107.json +++ b/dashboards/Spring Boot Statistics-1715193360107.json @@ -1,4 +1,4 @@ -{ +{ "__inputs": [ { "name": "DS_GRAFANACLOUD-OPENVSX-PROM", @@ -21,7 +21,7 @@ "type": "grafana", "id": "grafana", "name": "Grafana", - "version": "11.1.0-69950" + "version": "11.1.0-6" }, { "type": "datasource", @@ -4820,4 +4820,4 @@ "uid": "20201230-spring", "version": 12, "weekStart": "" -} \ No newline at end of file +} From d62c7e6bb6fffe85c19ee0d5becc1678eeabb3fd Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:52:53 +0700 Subject: [PATCH 049/124] Update Tracing.json --- dashboards/Tracing-1715193376189.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dashboards/Tracing-1715193376189.json b/dashboards/Tracing-1715193376189.json index 8e23a98f1..f454b9298 100644 --- a/dashboards/Tracing-1715193376189.json +++ b/dashboards/Tracing-1715193376189.json @@ -1,5 +1,5 @@ { - "__inputs": [ + "__inputs": [ { "name": "DS_GRAFANACLOUD-OPENVSX-TRACES", "label": "grafanacloud-openvsx-traces", @@ -371,4 +371,4 @@ "uid": "edc2eznq882rkb", "version": 1, "weekStart": "" -} \ No newline at end of file +} From c1896e5d64accf18b397961d738dcf013b54e85d Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:53:18 +0700 Subject: [PATCH 050/124] Update application.yml --- configuration/application.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configuration/application.yml b/configuration/application.yml index c5a6c587d..d5280d8d8 100644 --- a/configuration/application.yml +++ b/configuration/application.yml @@ -1,4 +1,4 @@ -# This is the base configuration of the server running at open-vsx.org. +# This is the base configuration of the server running at open-vsx.org. # Properties containing secrets are not included here, e.g. spring.datasource # for database access and ovsx.storage.azure for file storage access. # Additional properties are loaded from the file provided with the From 513dff0aff22cb2cf126a56801fe0a4d9a526ef2 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:53:38 +0700 Subject: [PATCH 051/124] Update logback-spring.xml --- configuration/logback-spring.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configuration/logback-spring.xml b/configuration/logback-spring.xml index 8713d0dd5..cb6507bff 100644 --- a/configuration/logback-spring.xml +++ b/configuration/logback-spring.xml @@ -1,4 +1,4 @@ - + From 6f329587128aba20f74984f5b02a674842cbe7dd Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:54:18 +0700 Subject: [PATCH 052/124] Update main-dev.tsx --- website/dev/main-dev.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/dev/main-dev.tsx b/website/dev/main-dev.tsx index 1f0341dfc..a5ed0067a 100644 --- a/website/dev/main-dev.tsx +++ b/website/dev/main-dev.tsx @@ -1,6 +1,6 @@ /******************************************************************************** * Copyright (c) 2020 TypeFox and others - * + * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at * http://www.eclipse.org/legal/epl-2.0. From b5af4f0287f16fa5844cae55dd1a5c450b40cf6c Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:54:50 +0700 Subject: [PATCH 053/124] Update mock-service.ts --- website/dev/mock-service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/dev/mock-service.ts b/website/dev/mock-service.ts index e98605651..c14033bc3 100644 --- a/website/dev/mock-service.ts +++ b/website/dev/mock-service.ts @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2020 TypeFox and others + * Copyright (c) 2020 TypeFox and others * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at From 8361de1121ef6af40c5b2c38e6f5b03c3becadf2 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:55:13 +0700 Subject: [PATCH 054/124] Update webpack.config.js --- website/dev/webpack.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/dev/webpack.config.js b/website/dev/webpack.config.js index e3b8bbdaa..ef1843f28 100644 --- a/website/dev/webpack.config.js +++ b/website/dev/webpack.config.js @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2020 TypeFox and others + * Copyright (c) 2020 TypeFox and others * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at From e2ddfd353a6a8db3e89a510f66eb5cfbb48913e6 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:55:37 +0700 Subject: [PATCH 055/124] Update index.js --- website/dev/server/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/dev/server/index.js b/website/dev/server/index.js index b321c2c0f..a07010269 100644 --- a/website/dev/server/index.js +++ b/website/dev/server/index.js @@ -1,6 +1,6 @@ /******************************************************************************** * Copyright (c) 2020 TypeFox and others - * + * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at * http://www.eclipse.org/legal/epl-2.0. From 159dc226e5f56542f317dc553d82ffc3f27d6558 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:56:10 +0700 Subject: [PATCH 056/124] Update adopters-list.tsx --- website/src/components/adopters-list.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/src/components/adopters-list.tsx b/website/src/components/adopters-list.tsx index 5333d5d00..07ca170fa 100644 --- a/website/src/components/adopters-list.tsx +++ b/website/src/components/adopters-list.tsx @@ -1,6 +1,6 @@ /******************************************************************************** * Copyright (c) 2023 TypeFox and others - * + * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at * http://www.eclipse.org/legal/epl-2.0. @@ -160,4 +160,4 @@ const AdopterItem: FunctionComponent = ({ name, logo, logoWhit ); -}; \ No newline at end of file +}; From 8adb83a2d589b57fba0ce5d6b50db30ed3999ada Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:56:30 +0700 Subject: [PATCH 057/124] Update members-list.tsx --- website/src/components/members-list.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/src/components/members-list.tsx b/website/src/components/members-list.tsx index 39592e2f3..9772806c3 100644 --- a/website/src/components/members-list.tsx +++ b/website/src/components/members-list.tsx @@ -1,4 +1,4 @@ -/******************************************************************************** +/******************************************************************************** * Copyright (c) 2023 TypeFox and others * * This program and the accompanying materials are made available under the From b459394c8ff8fca69b2b8ce55520d1e1070f067b Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:56:56 +0700 Subject: [PATCH 058/124] Update reports.md --- reports/reports.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reports/reports.md b/reports/reports.md index 6b38c5fe4..f8e5b04e7 100644 --- a/reports/reports.md +++ b/reports/reports.md @@ -1,4 +1,4 @@ -# Open VSX Reports +# Open VSX Reports Reports and supporting scripts for graphing availability and activity at open-vsx.org. Most require some sort of access token. ### graph_availability_trends.ipynb From 3dc130db0cfb9a99d72d1e403608a32b1c61d4cc Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:57:20 +0700 Subject: [PATCH 059/124] Update get_open_vsx_data.py --- reports/get_open_vsx_data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reports/get_open_vsx_data.py b/reports/get_open_vsx_data.py index 577b34485..dfe6944fd 100644 --- a/reports/get_open_vsx_data.py +++ b/reports/get_open_vsx_data.py @@ -1,4 +1,4 @@ -""" +""" Script to collect activity stats, used by Jupyter Notebooks. Requires an access token from https://open-vsx.org/user-settings/tokens with admin access. The following use web auth, not the API token: From 9672d97b47bdaccff221c1a2fd863cbffb38dde2 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:57:41 +0700 Subject: [PATCH 060/124] Update get_availability_data.py --- reports/get_availability_data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reports/get_availability_data.py b/reports/get_availability_data.py index b6f22e5cb..59f400a73 100644 --- a/reports/get_availability_data.py +++ b/reports/get_availability_data.py @@ -1,4 +1,4 @@ -""" +""" Script to collect availability data from open-vsx endpoints monitored by betteruptime. Used by graph_availability_trends Jupyter Notebook.Requires an access token from IT team. From 1bc9fe293619c0fb4b33d316c4a22e46ee5da850 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:58:05 +0700 Subject: [PATCH 061/124] Update get_all_extensions.py --- reports/get_all_extensions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reports/get_all_extensions.py b/reports/get_all_extensions.py index a8e76bd42..f8af1e9e1 100644 --- a/reports/get_all_extensions.py +++ b/reports/get_all_extensions.py @@ -1,4 +1,4 @@ -""" +""" Script to collect metadata on all published extensions. Used by Jupyter notebooks. """ import requests From 3270f64365b9dd2fa8c4ab52ad2935f83e4b87ba Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:58:32 +0700 Subject: [PATCH 062/124] Update get_vs_marketplace_data.py --- reports/get_vs_marketplace_data.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reports/get_vs_marketplace_data.py b/reports/get_vs_marketplace_data.py index 0bf5f46c2..c72899852 100644 --- a/reports/get_vs_marketplace_data.py +++ b/reports/get_vs_marketplace_data.py @@ -1,4 +1,4 @@ -""" +""" Script to collect metadata on all extensions published on VS Code Marketplace. Outputs both a JSON and a CSV file. Note, this relies on interfaces that are not fully documented and are subject to change. @@ -147,4 +147,4 @@ def convert_date_str(input_str): json_file.close() except Exception as e: print('Error: %s' % e) - traceback.print_stack() \ No newline at end of file + traceback.print_stack() From a70e34a45d198ef716edfb179bfad8463d13283a Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:58:53 +0700 Subject: [PATCH 063/124] Update graph_availability_trends.ipynb --- reports/graph_availability_trends.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reports/graph_availability_trends.ipynb b/reports/graph_availability_trends.ipynb index 40ab4d292..06a1401a3 100644 --- a/reports/graph_availability_trends.ipynb +++ b/reports/graph_availability_trends.ipynb @@ -1,4 +1,4 @@ -{ +{ "cells": [ { "attachments": {}, From 6905dddaf4aaa42fc5c088aad0ba72b9af5c57a1 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:59:16 +0700 Subject: [PATCH 064/124] Update graph_licenses.ipynb --- reports/graph_licenses.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reports/graph_licenses.ipynb b/reports/graph_licenses.ipynb index 7d454d400..5adb7e945 100644 --- a/reports/graph_licenses.ipynb +++ b/reports/graph_licenses.ipynb @@ -1,4 +1,4 @@ -{ +{ "cells": [ { "cell_type": "markdown", From 9434d606e6d21a7e47fbe4d8d902237aeab27ad5 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:59:37 +0700 Subject: [PATCH 065/124] Update graph_most_active.ipynb --- reports/graph_most_active.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reports/graph_most_active.ipynb b/reports/graph_most_active.ipynb index 6ea60e892..b3399d411 100644 --- a/reports/graph_most_active.ipynb +++ b/reports/graph_most_active.ipynb @@ -1,4 +1,4 @@ -{ +{ "cells": [ { "cell_type": "markdown", From b8454a720f7438260ac0571c42625d8276b512fd Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 19:59:59 +0700 Subject: [PATCH 066/124] Update graph_trends.ipynb --- reports/graph_trends.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reports/graph_trends.ipynb b/reports/graph_trends.ipynb index 60c7c3509..ed66175e8 100644 --- a/reports/graph_trends.ipynb +++ b/reports/graph_trends.ipynb @@ -1,5 +1,5 @@ { - "cells": [ + "cells": [ { "attachments": {}, "cell_type": "markdown", From 646fc4ec64a303524af0c1e29d87a9f3b70b0dfa Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 20:00:50 +0700 Subject: [PATCH 067/124] Update publisher-agreement-v1.0.md --- website/static/documents/publisher-agreement-v1.0.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/static/documents/publisher-agreement-v1.0.md b/website/static/documents/publisher-agreement-v1.0.md index 3458e22ab..f2a853ca5 100644 --- a/website/static/documents/publisher-agreement-v1.0.md +++ b/website/static/documents/publisher-agreement-v1.0.md @@ -1,4 +1,4 @@ -**Eclipse Foundation, Inc.** +**Eclipse Foundation, Inc.** # Open VSX Publisher Agreement From 754721aa9234c6739253fac950c6a43f2ae5cb81 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 20:01:13 +0700 Subject: [PATCH 068/124] Update terms-of-use.md --- website/static/documents/terms-of-use.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/static/documents/terms-of-use.md b/website/static/documents/terms-of-use.md index 3004698bb..671dae634 100644 --- a/website/static/documents/terms-of-use.md +++ b/website/static/documents/terms-of-use.md @@ -1,4 +1,4 @@ -# Open-VSX Registry Website Terms of Use +# Open-VSX Registry Website Terms of Use February 11, 2021 From 9f1e391583f5c49c2ac97b7edfcdfe8b29f2ae34 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 20:01:49 +0700 Subject: [PATCH 069/124] Update index.html --- website/static/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/static/index.html b/website/static/index.html index cb55bf50e..e990a8945 100644 --- a/website/static/index.html +++ b/website/static/index.html @@ -1,4 +1,4 @@ - + From 6715c1baa69fcc045bee76b815b2fb1ff344750f Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Sat, 20 Sep 2025 20:02:35 +0700 Subject: [PATCH 070/124] Update helm-deploy.sh --- kubernetes/helm-deploy.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kubernetes/helm-deploy.sh b/kubernetes/helm-deploy.sh index 46b129da4..2fef5fcf0 100755 --- a/kubernetes/helm-deploy.sh +++ b/kubernetes/helm-deploy.sh @@ -1,4 +1,4 @@ -#!/usr/bin/env bash +#!/usr/bin/env bash #******************************************************************************* # Copyright (c) 2024 Eclipse Foundation and others. @@ -57,4 +57,4 @@ else fi helm "${action}" "${release_name}" "${ROOT_DIR}/charts/${chart_name}" -f "${values_file}" --set image.tag="${image_tag}" --namespace "${namespace}" - \ No newline at end of file + From 9279efa950d2718cb9255e43cf8e246ba9461f03 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Thu, 25 Sep 2025 06:15:11 +0700 Subject: [PATCH 071/124] Update examples.go From c60634689c3b584653a004ed35793640470eb3fe Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Thu, 25 Sep 2025 06:15:39 +0700 Subject: [PATCH 072/124] Update sonar-project.properties --- sonar-project.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sonar-project.properties b/sonar-project.properties index 16a182827..63e1052df 100644 --- a/sonar-project.properties +++ b/sonar-project.properties @@ -1,5 +1,5 @@ sonar.projectKey=open-vsx_open-vsx-org -sonar.organization=open-vsx +sonar.organization=open-vsx # This is the name and version displayed in the SonarCloud UI. #sonar.projectName=open-vsx.org From e5c4161fbc47a3f9b522115640061fd4af01dcf5 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Thu, 25 Sep 2025 06:16:27 +0700 Subject: [PATCH 073/124] Update values-staging.yaml --- charts/openvsx/values-staging.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/openvsx/values-staging.yaml b/charts/openvsx/values-staging.yaml index 0d2f84a1a..38104bee3 100644 --- a/charts/openvsx/values-staging.yaml +++ b/charts/openvsx/values-staging.yaml @@ -5,7 +5,7 @@ environment: &environment staging namespace: &namespace open-vsx-org host: staging.open-vsx.org -replicaCount: 1 +replicaCount: 1 esReplicaCount: 1 image: From 18906395f56237afaab9905c773d34eff1c4a25b Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Thu, 25 Sep 2025 06:16:48 +0700 Subject: [PATCH 074/124] Update values.yaml --- charts/openvsx/values.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/openvsx/values.yaml b/charts/openvsx/values.yaml index c4f71a5a4..5448dff7f 100644 --- a/charts/openvsx/values.yaml +++ b/charts/openvsx/values.yaml @@ -1,5 +1,5 @@ # Default values for openvsx. - + name: &name open-vsx-org environment: &environment production namespace: &namespace open-vsx-org @@ -91,4 +91,4 @@ alloy: app: *name environment: *environment fullnameOverride: grafana-alloy-production - namespaceOverride: *namespace \ No newline at end of file + namespaceOverride: *namespace From fab518c67e789ec142c0193d004c87970110f133 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Thu, 25 Sep 2025 06:17:16 +0700 Subject: [PATCH 075/124] Update deployment.yaml --- charts/openvsx/templates/redis-cluster-operator/deployment.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/openvsx/templates/redis-cluster-operator/deployment.yaml b/charts/openvsx/templates/redis-cluster-operator/deployment.yaml index 0e64f5a64..aca4b4c91 100644 --- a/charts/openvsx/templates/redis-cluster-operator/deployment.yaml +++ b/charts/openvsx/templates/redis-cluster-operator/deployment.yaml @@ -1,4 +1,4 @@ -apiVersion: apps/v1 +apiVersion: apps/v1 kind: Deployment metadata: labels: From a2c7d15ad5342aae62a5c36f5bf78408d8a163f7 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Thu, 25 Sep 2025 06:17:36 +0700 Subject: [PATCH 076/124] Update rbac.yaml From 964b3b4fb27557281bb315b045e68359b5ec95ec Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Thu, 25 Sep 2025 06:17:58 +0700 Subject: [PATCH 077/124] Update route.yaml --- charts/openvsx/templates/route.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/openvsx/templates/route.yaml b/charts/openvsx/templates/route.yaml index f074afaf2..178a7d215 100644 --- a/charts/openvsx/templates/route.yaml +++ b/charts/openvsx/templates/route.yaml @@ -1,5 +1,5 @@ apiVersion: route.openshift.io/v1 -kind: Route +kind: Route metadata: annotations: haproxy.router.openshift.io/disable_cookies: 'true' From 015a8c35809b8ad1e7772dd3fe537b4a8a766240 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Thu, 25 Sep 2025 06:18:17 +0700 Subject: [PATCH 078/124] Update redis-cluster.yaml --- charts/openvsx/templates/redis-cluster.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/openvsx/templates/redis-cluster.yaml b/charts/openvsx/templates/redis-cluster.yaml index 66468950a..097ff03ff 100644 --- a/charts/openvsx/templates/redis-cluster.yaml +++ b/charts/openvsx/templates/redis-cluster.yaml @@ -1,4 +1,4 @@ -apiVersion: open-vsx.org/v1 +apiVersion: open-vsx.org/v1 kind: RedisCluster metadata: labels: From 8cb3f44a4293ae0ef76ec82619f45373f5ac9932 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Thu, 25 Sep 2025 06:18:42 +0700 Subject: [PATCH 079/124] Update grafana-alloy.yaml --- charts/openvsx/templates/grafana-alloy.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/openvsx/templates/grafana-alloy.yaml b/charts/openvsx/templates/grafana-alloy.yaml index c135eee24..09bd63ec9 100644 --- a/charts/openvsx/templates/grafana-alloy.yaml +++ b/charts/openvsx/templates/grafana-alloy.yaml @@ -1,4 +1,4 @@ -apiVersion: v1 +apiVersion: v1 kind: ConfigMap metadata: labels: From bdf138066229e013e7395c4acdedf7beaf8e6220 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Thu, 25 Sep 2025 06:19:01 +0700 Subject: [PATCH 080/124] Update elasticsearch.yaml --- charts/openvsx/templates/elasticsearch.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/openvsx/templates/elasticsearch.yaml b/charts/openvsx/templates/elasticsearch.yaml index 0dc7d2bb8..b4f3eec0b 100644 --- a/charts/openvsx/templates/elasticsearch.yaml +++ b/charts/openvsx/templates/elasticsearch.yaml @@ -1,5 +1,5 @@ apiVersion: elasticsearch.k8s.elastic.co/v1 -kind: Elasticsearch +kind: Elasticsearch metadata: labels: app: {{ .Values.name }} @@ -56,4 +56,4 @@ spec: name: elasticsearch resources: {{- toYaml .Values.es.resources | nindent 12 }} - version: 8.7.1 \ No newline at end of file + version: 8.7.1 From 5b1b253ccd6ab880d9c368c7c9c26dadbb32cdb4 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Thu, 25 Sep 2025 06:19:26 +0700 Subject: [PATCH 081/124] Update service-monitor.yaml --- charts/openvsx/templates/service-monitor.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/openvsx/templates/service-monitor.yaml b/charts/openvsx/templates/service-monitor.yaml index 38060ebcc..c7787fd1b 100644 --- a/charts/openvsx/templates/service-monitor.yaml +++ b/charts/openvsx/templates/service-monitor.yaml @@ -1,5 +1,5 @@ apiVersion: monitoring.coreos.com/v1 -kind: ServiceMonitor +kind: ServiceMonitor metadata: labels: app: {{ .Values.name }} @@ -18,4 +18,4 @@ spec: endpoints: - port: management path: /actuator/prometheus - interval: 60s \ No newline at end of file + interval: 60s From f9e88f2d3d53e0d7b8562512de060e825c72250c Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Thu, 25 Sep 2025 06:19:46 +0700 Subject: [PATCH 082/124] Update service.yaml --- charts/openvsx/templates/service.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/openvsx/templates/service.yaml b/charts/openvsx/templates/service.yaml index 3672f75ca..cdbaf780b 100644 --- a/charts/openvsx/templates/service.yaml +++ b/charts/openvsx/templates/service.yaml @@ -1,4 +1,4 @@ -apiVersion: v1 +apiVersion: v1 kind: Service metadata: labels: From d9516f73c3470605d1d244bf062a305cbf6c7e80 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Thu, 25 Sep 2025 06:20:07 +0700 Subject: [PATCH 083/124] Update .helmignore --- charts/openvsx/.helmignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/openvsx/.helmignore b/charts/openvsx/.helmignore index 0e8a0eb36..746681102 100644 --- a/charts/openvsx/.helmignore +++ b/charts/openvsx/.helmignore @@ -1,4 +1,4 @@ -# Patterns to ignore when building packages. +# Patterns to ignore when building packages. # This supports shell glob matching, relative path matching, and # negation (prefixed with !). Only one pattern per line. .DS_Store From fd6c2b38c7071c7868d9de13b59a777a3681a41f Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Thu, 25 Sep 2025 06:20:25 +0700 Subject: [PATCH 084/124] Update Chart.lock --- charts/openvsx/Chart.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/openvsx/Chart.lock b/charts/openvsx/Chart.lock index d3dcdc1a0..074b30ec2 100644 --- a/charts/openvsx/Chart.lock +++ b/charts/openvsx/Chart.lock @@ -1,4 +1,4 @@ -dependencies: +dependencies: - name: alloy repository: https://grafana.github.io/helm-charts version: 1.1.2 From 9c4d14db182dc2426796acc36ffb18f3605ca522 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Thu, 25 Sep 2025 06:20:42 +0700 Subject: [PATCH 085/124] Update Chart.yaml --- charts/openvsx/Chart.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/openvsx/Chart.yaml b/charts/openvsx/Chart.yaml index 37f2b46a7..cab4bd99a 100644 --- a/charts/openvsx/Chart.yaml +++ b/charts/openvsx/Chart.yaml @@ -1,4 +1,4 @@ -apiVersion: v2 +apiVersion: v2 name: openvsx description: A Helm chart for Kubernetes type: application @@ -7,4 +7,4 @@ appVersion: "1.16.0" dependencies: - name: alloy version: 1.1.2 - repository: https://grafana.github.io/helm-charts \ No newline at end of file + repository: https://grafana.github.io/helm-charts From ff9f8993c588da097f274b73ee46f200b0745833 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Thu, 25 Sep 2025 06:21:01 +0700 Subject: [PATCH 086/124] Update values-staging.yaml --- charts/openvsx/values-staging.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/openvsx/values-staging.yaml b/charts/openvsx/values-staging.yaml index 38104bee3..40f873b2f 100644 --- a/charts/openvsx/values-staging.yaml +++ b/charts/openvsx/values-staging.yaml @@ -1,4 +1,4 @@ -# Default values for openvsx staging. +# Default values for openvsx staging. name: &name open-vsx-org environment: &environment staging From 29dcdeadc6b576a114e2c124a74dd0bbbd663dcd Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Thu, 25 Sep 2025 06:21:19 +0700 Subject: [PATCH 087/124] Update values.yaml --- charts/openvsx/values.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/openvsx/values.yaml b/charts/openvsx/values.yaml index 5448dff7f..becae51ad 100644 --- a/charts/openvsx/values.yaml +++ b/charts/openvsx/values.yaml @@ -1,5 +1,5 @@ # Default values for openvsx. - + name: &name open-vsx-org environment: &environment production namespace: &namespace open-vsx-org From ba3faf7ac66705cfbb9a4c7cfe31f9b7b8f61fae Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Thu, 25 Sep 2025 06:21:46 +0700 Subject: [PATCH 088/124] Update logback-spring.xml --- configuration/logback-spring.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configuration/logback-spring.xml b/configuration/logback-spring.xml index cb6507bff..cf25c56fa 100644 --- a/configuration/logback-spring.xml +++ b/configuration/logback-spring.xml @@ -1,5 +1,5 @@ - + From f8c87c153f27be120ad375ca4728e8b6dcd1e849 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Thu, 25 Sep 2025 06:22:04 +0700 Subject: [PATCH 089/124] Update application.yml --- configuration/application.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configuration/application.yml b/configuration/application.yml index d5280d8d8..f4b2ab874 100644 --- a/configuration/application.yml +++ b/configuration/application.yml @@ -2,7 +2,7 @@ # Properties containing secrets are not included here, e.g. spring.datasource # for database access and ovsx.storage.azure for file storage access. # Additional properties are loaded from the file provided with the -# DEPLOYMENT_CONFIG environment variable. +# DEPLOYMENT_CONFIG environment variable. logging: pattern: level: '%5p [${spring.application.name:},%X{traceId:-},%X{spanId:-}]' From 05e081c79d524842d2a983313b4240a1f1d7974f Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Thu, 25 Sep 2025 06:22:51 +0700 Subject: [PATCH 090/124] Update publisher-agreement-v1.0.md --- website/static/documents/publisher-agreement-v1.0.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/static/documents/publisher-agreement-v1.0.md b/website/static/documents/publisher-agreement-v1.0.md index f2a853ca5..40cf2cc0a 100644 --- a/website/static/documents/publisher-agreement-v1.0.md +++ b/website/static/documents/publisher-agreement-v1.0.md @@ -1,5 +1,5 @@ **Eclipse Foundation, Inc.** - + # Open VSX Publisher Agreement Thank you for your interest in publishing in the Eclipse Open VSX Registry (“Open VSX”). As used in this Eclipse Open VSX Publisher Agreement (“Agreement”), the term “you”, ”your” or “Publisher” refers to you as an individual, and, to the extent you are the agent or employee of another person or entity that has rights in the Offering (as defined below) (such person or entity, a “Principal”) “you” and “publisher” also includes that Principal. From 175fead295c1ce7df35a0724a8f2d8f3017713e0 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Thu, 25 Sep 2025 06:24:02 +0700 Subject: [PATCH 091/124] Update index.js --- website/dev/server/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/dev/server/index.js b/website/dev/server/index.js index a07010269..6b588deef 100644 --- a/website/dev/server/index.js +++ b/website/dev/server/index.js @@ -1,4 +1,4 @@ -/******************************************************************************** +/******************************************************************************** * Copyright (c) 2020 TypeFox and others * * This program and the accompanying materials are made available under the From 7c86e6cd2f8d53145aaf2d4cc88e2b944fdd6305 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Thu, 25 Sep 2025 06:24:22 +0700 Subject: [PATCH 092/124] Update main-dev.tsx --- website/dev/main-dev.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/dev/main-dev.tsx b/website/dev/main-dev.tsx index a5ed0067a..645921ecb 100644 --- a/website/dev/main-dev.tsx +++ b/website/dev/main-dev.tsx @@ -1,6 +1,6 @@ /******************************************************************************** * Copyright (c) 2020 TypeFox and others - * + * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at * http://www.eclipse.org/legal/epl-2.0. From 6153f7019ba09601e04c23e304e59c225cdc1d5b Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Thu, 25 Sep 2025 06:24:46 +0700 Subject: [PATCH 093/124] Update mock-service.ts --- website/dev/mock-service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/dev/mock-service.ts b/website/dev/mock-service.ts index c14033bc3..68b73df23 100644 --- a/website/dev/mock-service.ts +++ b/website/dev/mock-service.ts @@ -13,7 +13,7 @@ import { UserData, ExtensionReview, PersonalAccessToken, CsrfTokenJson, ExtensionReference, Namespace, NamespaceMembershipList, AdminService, PublisherInfo, NewReview, ExtensionFilter, UrlString, MembershipRole, RegistryVersion } from "openvsx-webui"; - + const avatarUrl = 'https://upload.wikimedia.org/wikipedia/commons/9/99/Avatar_cupcake.png'; export class MockRegistryService extends ExtensionRegistryService { From 2a7f99aabb95f046879f1e0ecef3499894f3598c Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Thu, 25 Sep 2025 06:25:19 +0700 Subject: [PATCH 094/124] Update webpack.config.js --- website/dev/webpack.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/dev/webpack.config.js b/website/dev/webpack.config.js index ef1843f28..51a4c5b36 100644 --- a/website/dev/webpack.config.js +++ b/website/dev/webpack.config.js @@ -1,4 +1,4 @@ -/******************************************************************************** +/******************************************************************************** * Copyright (c) 2020 TypeFox and others * * This program and the accompanying materials are made available under the From cc19352d664abe4b4c788fe636c3e79e09c2cac3 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Thu, 25 Sep 2025 06:25:59 +0700 Subject: [PATCH 095/124] Update menu-content.tsx --- website/src/menu-content.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/src/menu-content.tsx b/website/src/menu-content.tsx index 2f3386b7f..8f6bd8385 100644 --- a/website/src/menu-content.tsx +++ b/website/src/menu-content.tsx @@ -1,4 +1,4 @@ -/******************************************************************************** +/******************************************************************************** * Copyright (c) 2020 TypeFox and others * * This program and the accompanying materials are made available under the From 4cc880e0fac472e8e1fd0861f4248c6d6db9f273 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Thu, 25 Sep 2025 06:26:21 +0700 Subject: [PATCH 096/124] Update main.tsx --- website/src/main.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/src/main.tsx b/website/src/main.tsx index 3e08d3efa..78c875f4e 100644 --- a/website/src/main.tsx +++ b/website/src/main.tsx @@ -1,6 +1,6 @@ /******************************************************************************** * Copyright (c) 2020 TypeFox and others - * + * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at * http://www.eclipse.org/legal/epl-2.0. From 8a100a100d3af1095215c2bfb94e5261c94cdc55 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Thu, 25 Sep 2025 06:26:49 +0700 Subject: [PATCH 097/124] Update openvsx-registry-logo.tsx --- website/src/openvsx-registry-logo.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/src/openvsx-registry-logo.tsx b/website/src/openvsx-registry-logo.tsx index e69c9ecd0..63ca65435 100644 --- a/website/src/openvsx-registry-logo.tsx +++ b/website/src/openvsx-registry-logo.tsx @@ -1,6 +1,6 @@ /******************************************************************************** * Copyright (c) 2020 TypeFox and others - * + * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at * http://www.eclipse.org/legal/epl-2.0. From af05be8a8e13cda99aed86883269531e2252cd06 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Thu, 25 Sep 2025 06:27:08 +0700 Subject: [PATCH 098/124] Update page-settings.tsx --- website/src/page-settings.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/src/page-settings.tsx b/website/src/page-settings.tsx index 9ee21eaed..2f691cedf 100644 --- a/website/src/page-settings.tsx +++ b/website/src/page-settings.tsx @@ -1,4 +1,4 @@ -/******************************************************************************** +/********************************************************* *********************** * Copyright (c) 2020 TypeFox and others * * This program and the accompanying materials are made available under the From 179b6242b05a12d1dcdc46ad5d3a5c724d479c93 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Thu, 25 Sep 2025 06:27:32 +0700 Subject: [PATCH 099/124] Update members.tsx --- website/src/members.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/src/members.tsx b/website/src/members.tsx index fee3c6af8..bfcea09ea 100644 --- a/website/src/members.tsx +++ b/website/src/members.tsx @@ -1,4 +1,4 @@ -/******************************************************************************** +/******************************************************************************** * Copyright (c) 2023 TypeFox and others * * This program and the accompanying materials are made available under the From e7c0879c5e8fbae4efca0b459336f794119ec859 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Thu, 25 Sep 2025 06:27:55 +0700 Subject: [PATCH 100/124] Update footer-content.tsx --- website/src/footer-content.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/src/footer-content.tsx b/website/src/footer-content.tsx index cc1959fea..92c282b57 100644 --- a/website/src/footer-content.tsx +++ b/website/src/footer-content.tsx @@ -1,4 +1,4 @@ -/******************************************************************************** +/******************************************************************************** * Copyright (c) 2020 TypeFox and others * * This program and the accompanying materials are made available under the From 0acc713189d9c47c6687d1832d4d5ab8e8e7edca Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Thu, 25 Sep 2025 06:28:15 +0700 Subject: [PATCH 101/124] Update document.tsx --- website/src/document.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/src/document.tsx b/website/src/document.tsx index 2d27fb60e..7bd497af5 100644 --- a/website/src/document.tsx +++ b/website/src/document.tsx @@ -1,4 +1,4 @@ -/******************************************************************************** +/******************************************************************************** * Copyright (c) 2020 TypeFox and others * * This program and the accompanying materials are made available under the From 8ecba9f2153e03e04f504127163a57c9c3b93bfc Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Thu, 25 Sep 2025 06:28:37 +0700 Subject: [PATCH 102/124] Update adopters.tsx --- website/src/adopters.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/src/adopters.tsx b/website/src/adopters.tsx index c40190606..2d43b355e 100644 --- a/website/src/adopters.tsx +++ b/website/src/adopters.tsx @@ -1,4 +1,4 @@ -import React from "react"; +import React from "react"; import { Container, Typography, Box, Button } from "@mui/material"; import { styled, Theme } from '@mui/material/styles'; import AdoptersList from "./components/adopters-list"; From ed871cd3fd783dcac66d2c127f5078cb174177a2 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Thu, 25 Sep 2025 06:28:55 +0700 Subject: [PATCH 103/124] Update about.tsx --- website/src/about.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/src/about.tsx b/website/src/about.tsx index 195b11ee9..1d12d688c 100644 --- a/website/src/about.tsx +++ b/website/src/about.tsx @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2020 TypeFox and others + * Copyright (c) 2020 TypeFox and others * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at From 4f2bc917e9f8f9be131b6be2616bcd90b692ed04 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Thu, 25 Sep 2025 06:33:51 +0700 Subject: [PATCH 104/124] Update Chart.lock --- charts/openvsx/Chart.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/openvsx/Chart.lock b/charts/openvsx/Chart.lock index 074b30ec2..f68a3e53e 100644 --- a/charts/openvsx/Chart.lock +++ b/charts/openvsx/Chart.lock @@ -1,4 +1,4 @@ -dependencies: +dependencies: - name: alloy repository: https://grafana.github.io/helm-charts version: 1.1.2 From ead05e961f17b09211d673b8e716dfe1e11790ac Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Thu, 25 Sep 2025 06:34:24 +0700 Subject: [PATCH 105/124] Update redis-cluster.yaml --- charts/openvsx/crds/redis-cluster.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/openvsx/crds/redis-cluster.yaml b/charts/openvsx/crds/redis-cluster.yaml index 10d3fec73..ab60e1fb5 100644 --- a/charts/openvsx/crds/redis-cluster.yaml +++ b/charts/openvsx/crds/redis-cluster.yaml @@ -1,6 +1,6 @@ apiVersion: apiextensions.k8s.io/v1 kind: CustomResourceDefinition -metadata: +metadata: name: redisclusters.open-vsx.org spec: scope: Namespaced From f75010d598fb5afad3476869d17a3512a8e4ae41 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Thu, 25 Sep 2025 06:34:57 +0700 Subject: [PATCH 106/124] Update LICENSE --- LICENSE | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LICENSE b/LICENSE index d5c768efd..acf609c80 100644 --- a/LICENSE +++ b/LICENSE @@ -1,5 +1,5 @@ Eclipse Public License - v 2.0 - + THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. From 6917c55afbbbe3b7545cb2dccf871142babcf08e Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Thu, 25 Sep 2025 06:35:31 +0700 Subject: [PATCH 107/124] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b23cb535f..2cf4e0672 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # open-vsx.org This repository contains the source of [open-vsx.org](https://open-vsx.org), the public instance of [Eclipse Open VSX](https://github.com/eclipse/openvsx). Most of the code is maintained in [eclipse/openvsx](https://github.com/eclipse/openvsx), while here you'll find only adaptations specific to the public instance. - + The main artifact is the Docker image available at [ghcr.io/eclipsefdn/openvsx-website](https://github.com/orgs/EclipseFdn/packages/container/package/openvsx-website). It contains the server application with customized frontend and base configuration. ## Publishing and Managing Extensions From 3d676a62cd2a146c37409613a9465d567aab9a38 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Thu, 25 Sep 2025 06:35:50 +0700 Subject: [PATCH 108/124] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9b342ce6c..a1bc7c946 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -ARG SERVER_VERSION +ARG SERVER_VERSION # Builder image to compile the website FROM ubuntu AS builder From c6e132da06c1f21d49bb4129ee6f4794e1579583 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Thu, 25 Sep 2025 06:36:10 +0700 Subject: [PATCH 109/124] Update .gitpod.yml --- .gitpod.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod.yml b/.gitpod.yml index ea28bf141..482889f59 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -1,6 +1,6 @@ ports: - port: 3000 - + tasks: - init: | corepack enable From ae9b462c15b4dfe4e65caeae4034c895587a44cd Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Thu, 25 Sep 2025 06:36:45 +0700 Subject: [PATCH 110/124] Update Jenkinsfile --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index f09f8cb3b..0d1b134c7 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,4 +1,4 @@ -pipeline { +pipeline { agent { kubernetes { label 'kubedeploy-agent' From 5b9fcb33f55b0ec0c24a05d63fe6c5432ae141ca Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Thu, 25 Sep 2025 06:37:23 +0700 Subject: [PATCH 111/124] Update get_all_extensions.py --- reports/get_all_extensions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reports/get_all_extensions.py b/reports/get_all_extensions.py index f8af1e9e1..220e4bc32 100644 --- a/reports/get_all_extensions.py +++ b/reports/get_all_extensions.py @@ -1,4 +1,4 @@ -""" +""" Script to collect metadata on all published extensions. Used by Jupyter notebooks. """ import requests From e673c1b09301f0d571d0b79b9c43f13e45ca131c Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Thu, 25 Sep 2025 06:37:42 +0700 Subject: [PATCH 112/124] Update get_availability_data.py --- reports/get_availability_data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reports/get_availability_data.py b/reports/get_availability_data.py index 59f400a73..72e39a132 100644 --- a/reports/get_availability_data.py +++ b/reports/get_availability_data.py @@ -1,4 +1,4 @@ -""" +""" Script to collect availability data from open-vsx endpoints monitored by betteruptime. Used by graph_availability_trends Jupyter Notebook.Requires an access token from IT team. From d49730a4af510a30cf91ce6d86dcd3c5ff25970c Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Thu, 25 Sep 2025 06:38:01 +0700 Subject: [PATCH 113/124] Update get_open_vsx_data.py --- reports/get_open_vsx_data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reports/get_open_vsx_data.py b/reports/get_open_vsx_data.py index dfe6944fd..6c8aebb36 100644 --- a/reports/get_open_vsx_data.py +++ b/reports/get_open_vsx_data.py @@ -1,4 +1,4 @@ -""" +""" Script to collect activity stats, used by Jupyter Notebooks. Requires an access token from https://open-vsx.org/user-settings/tokens with admin access. The following use web auth, not the API token: From 388df44783e6b85282b01ce0a673bc14246a330b Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Thu, 25 Sep 2025 06:38:21 +0700 Subject: [PATCH 114/124] Update get_vs_marketplace_data.py --- reports/get_vs_marketplace_data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reports/get_vs_marketplace_data.py b/reports/get_vs_marketplace_data.py index c72899852..e9347f782 100644 --- a/reports/get_vs_marketplace_data.py +++ b/reports/get_vs_marketplace_data.py @@ -1,4 +1,4 @@ -""" +""" Script to collect metadata on all extensions published on VS Code Marketplace. Outputs both a JSON and a CSV file. Note, this relies on interfaces that are not fully documented and are subject to change. From 0ab4756b5098fd20543fd7bd4bcf339231e10c37 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Thu, 25 Sep 2025 06:38:41 +0700 Subject: [PATCH 115/124] Update graph_availability_trends.ipynb --- reports/graph_availability_trends.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reports/graph_availability_trends.ipynb b/reports/graph_availability_trends.ipynb index 06a1401a3..b73dc9e35 100644 --- a/reports/graph_availability_trends.ipynb +++ b/reports/graph_availability_trends.ipynb @@ -1,4 +1,4 @@ -{ +{ "cells": [ { "attachments": {}, From 39230a997fc8b01de9940942077cf66c194e2fa2 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Thu, 25 Sep 2025 06:38:57 +0700 Subject: [PATCH 116/124] Update graph_licenses.ipynb --- reports/graph_licenses.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reports/graph_licenses.ipynb b/reports/graph_licenses.ipynb index 5adb7e945..52b4e718d 100644 --- a/reports/graph_licenses.ipynb +++ b/reports/graph_licenses.ipynb @@ -1,4 +1,4 @@ -{ +{ "cells": [ { "cell_type": "markdown", From cc7026c01b978c892f467245bb46a68e1905137b Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Thu, 25 Sep 2025 06:39:17 +0700 Subject: [PATCH 117/124] Update graph_most_active.ipynb --- reports/graph_most_active.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reports/graph_most_active.ipynb b/reports/graph_most_active.ipynb index b3399d411..d2fedb636 100644 --- a/reports/graph_most_active.ipynb +++ b/reports/graph_most_active.ipynb @@ -1,4 +1,4 @@ -{ +{ "cells": [ { "cell_type": "markdown", From 84220da1129fa77dd9561f0fc5cb36771d663b40 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Thu, 25 Sep 2025 06:39:34 +0700 Subject: [PATCH 118/124] Update graph_trends.ipynb --- reports/graph_trends.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reports/graph_trends.ipynb b/reports/graph_trends.ipynb index ed66175e8..731b3bbeb 100644 --- a/reports/graph_trends.ipynb +++ b/reports/graph_trends.ipynb @@ -1,4 +1,4 @@ -{ +{ "cells": [ { "attachments": {}, From b2e25a49c06d626ff8d1f93527e1db093aea30b1 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Thu, 25 Sep 2025 06:39:53 +0700 Subject: [PATCH 119/124] Update reports.md --- reports/reports.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reports/reports.md b/reports/reports.md index f8e5b04e7..f114375c4 100644 --- a/reports/reports.md +++ b/reports/reports.md @@ -1,4 +1,4 @@ -# Open VSX Reports +# Open VSX Reports Reports and supporting scripts for graphing availability and activity at open-vsx.org. Most require some sort of access token. ### graph_availability_trends.ipynb From 4928d5798fa356c5e9ef48e89854c3cf456c4c7e Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Thu, 25 Sep 2025 06:41:30 +0700 Subject: [PATCH 120/124] Update helm-deploy.sh --- kubernetes/helm-deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kubernetes/helm-deploy.sh b/kubernetes/helm-deploy.sh index 2fef5fcf0..e4ff5b043 100755 --- a/kubernetes/helm-deploy.sh +++ b/kubernetes/helm-deploy.sh @@ -1,4 +1,4 @@ -#!/usr/bin/env bash +#!/usr/bin/env bash #******************************************************************************* # Copyright (c) 2024 Eclipse Foundation and others. From 85429f604ba324b7a2cdec677bb33484f884d2e9 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Thu, 25 Sep 2025 06:41:58 +0700 Subject: [PATCH 121/124] Update README.md --- kubernetes/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kubernetes/README.md b/kubernetes/README.md index b5e8832c1..345c6762f 100644 --- a/kubernetes/README.md +++ b/kubernetes/README.md @@ -1,5 +1,5 @@ ## How to deploy staging instance for a given image? - + ```bash ./helm-deploy.sh staging ``` @@ -16,4 +16,4 @@ Where `` can be de4f2c ## Dependencies * bash 4 -* [Helm](https://https://helm.sh/) \ No newline at end of file +* [Helm](https://https://helm.sh/) From 6c46bcb5f5b4be99ced07956f15e1edf8057884a Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Thu, 25 Sep 2025 06:42:32 +0700 Subject: [PATCH 122/124] Update Grafana Agent Overview-1715193342579.json --- dashboards/Grafana Agent Overview-1715193342579.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboards/Grafana Agent Overview-1715193342579.json b/dashboards/Grafana Agent Overview-1715193342579.json index 9f4c4e0f8..aa7635cf5 100644 --- a/dashboards/Grafana Agent Overview-1715193342579.json +++ b/dashboards/Grafana Agent Overview-1715193342579.json @@ -1,4 +1,4 @@ -{ +{ v "__inputs": [], "__elements": {}, "__requires": [ From c89ab0f5a8bbb8e23e3f56859c94c7745d71bb4d Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Thu, 25 Sep 2025 06:42:55 +0700 Subject: [PATCH 123/124] Update Spring Boot Statistics-1715193360107.json --- dashboards/Spring Boot Statistics-1715193360107.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboards/Spring Boot Statistics-1715193360107.json b/dashboards/Spring Boot Statistics-1715193360107.json index b66ec8156..ddd267c8e 100644 --- a/dashboards/Spring Boot Statistics-1715193360107.json +++ b/dashboards/Spring Boot Statistics-1715193360107.json @@ -1,4 +1,4 @@ -{ +{ "__inputs": [ { "name": "DS_GRAFANACLOUD-OPENVSX-PROM", From bb5a089e9d4827ca7dc07a4b3edfd4d34c708e20 Mon Sep 17 00:00:00 2001 From: escbeargew99-stack Date: Thu, 25 Sep 2025 06:43:17 +0700 Subject: [PATCH 124/124] Update Tracing-1715193376189.json --- dashboards/Tracing-1715193376189.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboards/Tracing-1715193376189.json b/dashboards/Tracing-1715193376189.json index f454b9298..89f2106f8 100644 --- a/dashboards/Tracing-1715193376189.json +++ b/dashboards/Tracing-1715193376189.json @@ -1,4 +1,4 @@ -{ +{ "__inputs": [ { "name": "DS_GRAFANACLOUD-OPENVSX-TRACES",