Skip to content

Commit a599ad8

Browse files
committed
1.94.2 rebase
1 parent 5db0194 commit a599ad8

File tree

237 files changed

+7435
-4222
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

237 files changed

+7435
-4222
lines changed

.github/FUNDING.yml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# These are supported funding model platforms
2+
3+
github: ['Alex313031']
4+
custom: ['https://paypal.me/alex313031?country.x=US&locale.x=en_US']
5+
patreon: ThoriumDeveloper

.github/ISSUE_TEMPLATE/bug_report.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: Bug report
3-
about: Create a report to help us improve
3+
about: Create a report to help us improve or fix
44
title: ''
55
labels: bug
66
assignees: ''
@@ -10,11 +10,11 @@ assignees: ''
1010
**Describe the bug**
1111
A clear and concise description of what the bug is.
1212

13-
**Please confirm that this problem is VSCodium-specific**
14-
- [ ] This bug doesn't happen if I use Microsoft's Visual Studio Code. It only happens in VSCodium.
13+
**Please confirm that this problem is Codium-specific**
14+
- [ ] This bug doesn't happen if I use Microsoft's Visual Studio Code. It only happens in Codium.
1515

1616
**Please confirm that the issue/resolution isn't already documented**
17-
- [ ] I checked [the Docs page](https://github.com/VSCodium/vscodium/blob/master/docs/index.md) and [the Troubleshooting page](https://github.com/VSCodium/vscodium/blob/master/docs/troubleshooting.md) and my issue is not mentioned there.
17+
- [ ] I checked [the Docs page](https://github.com/Alex313031/codium/blob/master/docs/index.md) and [the Troubleshooting page](https://github.com/Alex313031/codium/blob/master/docs/troubleshooting.md) and my issue is not mentioned there.
1818

1919
**To Reproduce**
2020
Steps to reproduce the behavior:
@@ -30,11 +30,11 @@ A clear and concise description of what you expected to happen.
3030
If applicable, add screenshots to help explain your problem.
3131

3232
**Desktop (please complete the following information):**
33-
- OS: [e.g. Mac OS, Ubuntu 20.04, etc]
33+
- OS: [e.g. Windows 7, Ubuntu 18.04, etc]
3434
- Architecture [e.g. x64, ia32, arm64]
35-
- Version [e.g. 1.33.0]
36-
- App Manager [e.g. Winget, Homebrew, Snap, AUR, RPM, Nix, ...]
37-
- Sandboxed [e.g. no, Flatpak, Snap]
35+
- Version [e.g. 1.79.0]
36+
- App Manager [e.g. .exe, AppImage, DEB, RPM, .zip, ...]
37+
- Sandboxed [e.g. Yes, No, AppImage]
3838

3939
**Additional context**
4040
Add any other context about the problem here.
+58
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
name: Submit Codium User Setup package to the Windows Package Manager Community Repository
2+
3+
on:
4+
workflow_dispatch:
5+
release:
6+
types: [published]
7+
8+
jobs:
9+
winget:
10+
name: Publish WinGet Package
11+
runs-on: windows-latest
12+
steps:
13+
- name: Submit Codium User Setup (.exe) package with WinGet Create
14+
run: |
15+
# Define the GitHub repository owner and repository name
16+
$owner = "Alex313031"
17+
$repo = "codium"
18+
19+
# Define the pattern to filter assets
20+
$pattern = "*.exe"
21+
22+
# Construct the API URL
23+
$url = "https://api.github.com/repos/$owner/$repo/releases/latest"
24+
25+
# Make a GET request to the GitHub API
26+
$response = Invoke-RestMethod -Uri $url -Method Get
27+
28+
# Filter assets based on the pattern
29+
$filteredAssets = $response.assets | Where-Object { $_.name -like $pattern }
30+
31+
# Initialize variables to store the version and download URL
32+
$version = ""
33+
$downloadUrl = ""
34+
35+
# Check if any matching assets were found
36+
if ($filteredAssets.Count -eq 0) {
37+
Write-Output "No matching assets found."
38+
} else {
39+
# Extract the version and download URL from the first matching asset
40+
$version = $response.tag_name
41+
$downloadUrl = $filteredAssets[0].browser_download_url
42+
43+
# Output the version and download URL
44+
Write-Output "Latest release version: $version"
45+
Write-Output "Latest release download URL: $downloadUrl"
46+
}
47+
$version
48+
$downloadUrl
49+
$packageId = "Alex313031.Codium"
50+
$gitToken = "${{ secrets.GITHUB_TOKEN }}"
51+
52+
# Install .NET Runtime
53+
Invoke-WebRequest https://dot.net/v1/dotnet-install.ps1 -OutFile dotnet-install.ps1
54+
.\dotnet-install.ps1 -Runtime dotnet -Architecture x64 -Version 6.0.13 -InstallDir $env:ProgramFiles\dotnet
55+
56+
# Update package using wingetcreate
57+
Invoke-WebRequest https://aka.ms/wingetcreate/latest -OutFile wingetcreate.exe
58+
.\wingetcreate.exe update $packageId --version $version --urls "$installerUrl" --submit --token $gitToken

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ VSCodium*
55
.DS_Store
66
*.env
77
assets/
8+
/release/
89
build/linux/appimage/out
910
build/linux/appimage/pkg2appimage.AppDir
1011
build/linux/appimage/pkg2appimage-*.AppImage

.npmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node-version=16.17.1

.nvmrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20.14
1+
lts/gallium

7z2408-x64_codium.zip

2.22 MB
Binary file not shown.

CONTRIBUTING.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
## Code of Conduct
1212

13-
This project and everyone participating in it is governed by the [VSCodium Code of Conduct](CODE_OF_CONDUCT.md). By participating, you are expected to uphold this code.
13+
This project and everyone participating in it is governed by the [Codium Code of Conduct](CODE_OF_CONDUCT.md). By participating, you are expected to uphold this code.
1414

1515
## Reporting Bugs
1616

@@ -23,19 +23,19 @@ When you are creating a bug report, please include as many details as possible.
2323

2424
If you want to make changes, please read [the Build page](./docs/howto-build.md).
2525

26-
### Building VSCodium
26+
### Building Codium
2727

28-
To build VSCodium, please follow the command found in the section [`Build Scripts`](./docs/howto-build.md#build-scripts).
28+
To build Codium, please follow the command found in the section [`Build Scripts`](./docs/howto-build.md#build-scripts).
2929

3030
### Updating patches
3131

3232
If you want to update the existing patches, please follow the section [`Patch Update Process - Semi-Automated`](./docs/howto-build.md#patch-update-process-semiauto).
3333

3434
### Add a new patch
3535

36-
- first, you need to build VSCodium
36+
- first, you need to build Codium
3737
- then use the command `patch.sh <your patch name>`, to initiate a new patch
38-
- when the script pauses at `Press any key when the conflict have been resolved...`, open `vscode` directory in **VSCodium**
38+
- when the script pauses at `Press any key when the conflict have been resolved...`, open `vscode` directory in **Codium**
3939
- run `yarn watch`
4040
- run `./script/code.sh`
4141
- make your changes

FUNDING.json

-7
This file was deleted.

LICENSE

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
MIT License
22

3+
Copyright (c) 2022-present Alex313031
34
Copyright (c) 2018-present The VSCodium contributors
45
Copyright (c) 2018-present Peter Squicciarini
56
Copyright (c) 2015-present Microsoft Corporation
@@ -20,4 +21,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2021
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2122
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2223
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23-
SOFTWARE.
24+
SOFTWARE.

LICENSE.md

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
MIT License
2+
3+
Copyright (c) 2022-present Alex313031
4+
Copyright (c) 2018-present The VSCodium contributors
5+
Copyright (c) 2018-present Peter Squicciarini
6+
Copyright (c) 2015-present Microsoft Corporation
7+
8+
Permission is hereby granted, free of charge, to any person obtaining a copy
9+
of this software and associated documentation files (the "Software"), to deal
10+
in the Software without restriction, including without limitation the rights
11+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12+
copies of the Software, and to permit persons to whom the Software is
13+
furnished to do so, subject to the following conditions:
14+
15+
The above copyright notice and this permission notice shall be included in all
16+
copies or substantial portions of the Software.
17+
18+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24+
SOFTWARE.

Logo.png

5.51 KB
Loading

0 commit comments

Comments
 (0)