diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index 8ce1fa5..0000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -name: Bug report -about: Create a report to help us improve GitHub Copilot for Xcode ---- - - - -**Describe the bug** - - -**Versions** -- Copilot for Xcode: [e.g. 0.25.0] -- Xcode: [e.g. 16.0] -- macOS: [e.g. 14.6.1] - -**Steps to reproduce** -1. -2. - -**Screenshots** - - -**Logs** - - -**Additional context** - diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml deleted file mode 100644 index 434de54..0000000 --- a/.github/ISSUE_TEMPLATE/config.yml +++ /dev/null @@ -1,5 +0,0 @@ -blank_issues_enabled: false -contact_links: - - name: Questions - url: https://github.com/orgs/community/discussions/categories/copilot - about: Please ask and answer questions about GitHub Copilot here diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md deleted file mode 100644 index 3f98d70..0000000 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -name: Feature request -about: Suggest an idea for GitHub Copilot for Xcode ---- - - - - \ No newline at end of file diff --git a/.github/actions/set-xcode-version/action.yml b/.github/actions/set-xcode-version/action.yml deleted file mode 100644 index 1a6bb6c..0000000 --- a/.github/actions/set-xcode-version/action.yml +++ /dev/null @@ -1,31 +0,0 @@ -name: 'Composite Xcode Path' -description: 'Get Xcode version to be used across all actions' -inputs: - xcode-version: - description: - Xcode version to use, in semver(ish)-style matching the format on the Actions runner image. - See available versions at https://github.com/actions/runner-images/blame/main/images/macos/macos-14-Readme.md#xcode - required: false - default: '15.3' -outputs: - xcode-path: - description: "Path to current Xcode version" - value: ${{ steps.xcode-path.outputs.xcode-path }} -runs: - using: "composite" - steps: - - name: Set XCODE_PATH env var - env: - XCODE_PATH: "/Applications/Xcode_${{ inputs.xcode-version }}.app" - run: echo "XCODE_PATH=${{ env.XCODE_PATH }}" >> $GITHUB_ENV - shell: bash - - name: Set Xcode version - run: sudo xcode-select -s ${{ env.XCODE_PATH }} - shell: bash - - name: Enable new build system integration - run: defaults write com.apple.dt.XCBuild EnableSwiftBuildSystemIntegration 1 - shell: bash - - name: Output Xcode path - id: xcode-path - run: echo "xcode-path=$(echo ${{ env.XCODE_PATH }})" >> $GITHUB_OUTPUT - shell: bash diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md deleted file mode 100644 index 0f96f54..0000000 --- a/.github/pull_request_template.md +++ /dev/null @@ -1 +0,0 @@ -At the moment we are not accepting contributions to the repository. \ No newline at end of file diff --git a/.github/workflows/auto-close-pr.yml b/.github/workflows/auto-close-pr.yml deleted file mode 100644 index de2ca78..0000000 --- a/.github/workflows/auto-close-pr.yml +++ /dev/null @@ -1,20 +0,0 @@ -name: Auto-close PR -on: - pull_request_target: - types: [opened, reopened] - -jobs: - close: - name: Run - runs-on: ubuntu-latest - permissions: - pull-requests: write - steps: - - run: | - gh pr close ${{ github.event.pull_request.number }} --comment \ - "At the moment we are not accepting contributions to the repository. - - Feedback for GitHub Copilot for Xcode can be given in the [Copilot community discussions](https://github.com/orgs/community/discussions/categories/copilot)." - env: - GH_REPO: ${{ github.repository }} - GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/azure-functions-app-python.yml b/.github/workflows/azure-functions-app-python.yml new file mode 100644 index 0000000..28ae31f --- /dev/null +++ b/.github/workflows/azure-functions-app-python.yml @@ -0,0 +1,65 @@ +# This workflow will build a Python app and deploy it to an Azure Functions App on Linux when a commit is pushed to your default branch. +# +# This workflow assumes you have already created the target Azure Functions app. +# For instructions see https://learn.microsoft.com/en-us/azure/azure-functions/create-first-function-vs-code-python?pivots=python-mode-configuration +# +# To configure this workflow: +# 1. Set up the following secrets in your repository: +# - AZURE_FUNCTIONAPP_PUBLISH_PROFILE +# 2. Change env variables for your configuration. +# +# For more information on: +# - GitHub Actions for Azure: https://github.com/Azure/Actions +# - Azure Functions Action: https://github.com/Azure/functions-action +# - Publish Profile: https://github.com/Azure/functions-action#using-publish-profile-as-deployment-credential-recommended +# - Azure Service Principal for RBAC: https://github.com/Azure/functions-action#using-azure-service-principal-for-rbac-as-deployment-credential +# +# For more samples to get started with GitHub Action workflows to deploy to Azure: https://github.com/Azure/actions-workflow-samples/tree/master/FunctionApp + +name: Deploy Python project to Azure Function App + +on: + push: + branches: ["main"] + +env: + AZURE_FUNCTIONAPP_NAME: 'your-app-name' # set this to your function app name on Azure + AZURE_FUNCTIONAPP_PACKAGE_PATH: '.' # set this to the path to your function app project, defaults to the repository root + PYTHON_VERSION: '3.9' # set this to the python version to use (e.g. '3.6', '3.7', '3.8') + +jobs: + build-and-deploy: + runs-on: ubuntu-latest + environment: dev + steps: + - name: 'Checkout GitHub Action' + uses: actions/checkout@v4 + + # If you want to use Azure RBAC instead of Publish Profile, then uncomment the task below + # - name: 'Login via Azure CLI' + # uses: azure/login@v1 + # with: + # creds: ${{ secrets.AZURE_RBAC_CREDENTIALS }} # set up AZURE_RBAC_CREDENTIALS secrets in your repository + + - name: Setup Python ${{ env.PYTHON_VERSION }} Environment + uses: actions/setup-python@v4 + with: + python-version: ${{ env.PYTHON_VERSION }} + + - name: 'Resolve Project Dependencies Using Pip' + shell: bash + run: | + pushd './${{ env.AZURE_FUNCTIONAPP_PACKAGE_PATH }}' + python -m pip install --upgrade pip + pip install -r requirements.txt --target=".python_packages/lib/site-packages" + popd + + - name: 'Run Azure Functions Action' + uses: Azure/functions-action@v1 + id: fa + with: + app-name: ${{ env.AZURE_FUNCTIONAPP_NAME }} + package: ${{ env.AZURE_FUNCTIONAPP_PACKAGE_PATH }} + publish-profile: ${{ secrets.AZURE_FUNCTIONAPP_PUBLISH_PROFILE }} # Remove publish-profile to use Azure RBAC + scm-do-build-during-deployment: true + enable-oryx-build: true diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml deleted file mode 100644 index 78e3596..0000000 --- a/.github/workflows/codeql.yml +++ /dev/null @@ -1,71 +0,0 @@ -name: "CodeQL Advanced" - -on: - push: - branches: [ "main" ] - pull_request: - branches: [ "main" ] - schedule: - - cron: '24 23 * * 1' - -jobs: - analyze: - name: Analyze (${{ matrix.language }}) - runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }} - permissions: - # required for all workflows - security-events: write - - # required to fetch internal or private CodeQL packs - packages: read - - # only required for workflows in private repositories - actions: read - contents: read - - strategy: - fail-fast: false - matrix: - include: - - language: python - build-mode: none - - language: swift - build-mode: manual - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - # Initializes the CodeQL tools for scanning. - - name: Initialize CodeQL - uses: github/codeql-action/init@v3 - with: - languages: ${{ matrix.language }} - build-mode: ${{ matrix.build-mode }} - # If you wish to specify custom queries, you can do so here or in a config file. - # By default, queries listed here will override any specified in a config file. - # Prefix the list here with "+" to use these queries and those in the config file. - - # For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs - # queries: security-extended,security-and-quality - - - if: matrix.build-mode == 'manual' - uses: ./.github/actions/set-xcode-version - - - if: matrix.build-mode == 'manual' - shell: bash - run: | - xcodebuild \ - -scheme 'Copilot for Xcode' \ - -quiet \ - -archivePath build/Archives/CopilotForXcode.xcarchive \ - -configuration Release \ - -skipMacroValidation \ - -disableAutomaticPackageResolution \ - -workspace 'Copilot for Xcode.xcworkspace' \ - archive \ - CODE_SIGNING_ALLOWED="NO" - - - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v3 - with: - category: "/language:${{matrix.language}}" diff --git a/.github/workflows/python-package-conda.yml b/.github/workflows/python-package-conda.yml new file mode 100644 index 0000000..f358604 --- /dev/null +++ b/.github/workflows/python-package-conda.yml @@ -0,0 +1,34 @@ +name: Python Package using Conda + +on: [push] + +jobs: + build-linux: + runs-on: ubuntu-latest + strategy: + max-parallel: 5 + + steps: + - uses: actions/checkout@v4 + - name: Set up Python 3.10 + uses: actions/setup-python@v3 + with: + python-version: '3.10' + - name: Add conda to system path + run: | + # $CONDA is an environment variable pointing to the root of the miniconda directory + echo $CONDA/bin >> $GITHUB_PATH + - name: Install dependencies + run: | + conda env update --file environment.yml --name base + - name: Lint with flake8 + run: | + conda install flake8 + # stop the build if there are Python syntax errors or undefined names + flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics + # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide + flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics + - name: Test with pytest + run: | + conda install pytest + pytest diff --git a/.github/workflows/swift.yml b/.github/workflows/swift.yml new file mode 100644 index 0000000..21ae770 --- /dev/null +++ b/.github/workflows/swift.yml @@ -0,0 +1,22 @@ +# This workflow will build a Swift project +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift + +name: Swift + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + + runs-on: macos-latest + + steps: + - uses: actions/checkout@v4 + - name: Build + run: swift build -v + - name: Run tests + run: swift test -v diff --git a/Core/Package.swift b/Core/Package.swift deleted file mode 100644 index 385746c..0000000 --- a/Core/Package.swift +++ /dev/null @@ -1,260 +0,0 @@ -// swift-tools-version: 5.7 -// The swift-tools-version declares the minimum version of Swift required to build this package. - -import Foundation -import PackageDescription - -// MARK: - Package - -let package = Package( - name: "Core", - platforms: [.macOS(.v12)], - products: [ - .library( - name: "Service", - targets: [ - "Service", - "SuggestionInjector", - "FileChangeChecker", - "LaunchAgentManager", - "UpdateChecker", - ] - ), - .library( - name: "Client", - targets: [ - "Client", - ] - ), - .library( - name: "HostApp", - targets: [ - "HostApp", - "Client", - "LaunchAgentManager", - "UpdateChecker", - ] - ), - ], - dependencies: [ - .package(path: "../Tool"), - .package(url: "https://github.com/apple/swift-async-algorithms", from: "1.0.0"), - .package(url: "https://github.com/gonzalezreal/swift-markdown-ui", from: "2.4.0"), - .package(url: "https://github.com/sparkle-project/Sparkle", from: "2.0.0"), - .package(url: "https://github.com/pointfreeco/swift-parsing", from: "0.12.1"), - .package(url: "https://github.com/pointfreeco/swift-dependencies", from: "1.0.0"), - .package( - url: "https://github.com/pointfreeco/swift-composable-architecture", - from: "1.10.4" - ), - // quick hack to support custom UserDefaults - // https://github.com/sindresorhus/KeyboardShortcuts - .package(url: "https://github.com/devm33/KeyboardShortcuts", branch: "main"), - .package(url: "https://github.com/devm33/CGEventOverride", branch: "devm33/fix-stale-AXIsProcessTrusted"), - .package(url: "https://github.com/devm33/Highlightr", branch: "master"), - ], - targets: [ - // MARK: - Main - - .target( - name: "Client", - dependencies: [ - .product(name: "XPCShared", package: "Tool"), - .product(name: "SuggestionProvider", package: "Tool"), - .product(name: "SuggestionBasic", package: "Tool"), - .product(name: "Logger", package: "Tool"), - .product(name: "Preferences", package: "Tool"), - .product(name: "GitHubCopilotService", package: "Tool"), - ]), - .target( - name: "Service", - dependencies: [ - "SuggestionWidget", - "SuggestionService", - "ChatService", - "PromptToCodeService", - "ConversationTab", - "KeyBindingManager", - "XcodeThemeController", - .product(name: "XPCShared", package: "Tool"), - .product(name: "SuggestionProvider", package: "Tool"), - .product(name: "ConversationServiceProvider", package: "Tool"), - .product(name: "Workspace", package: "Tool"), - .product(name: "UserDefaultsObserver", package: "Tool"), - .product(name: "AppMonitoring", package: "Tool"), - .product(name: "SuggestionBasic", package: "Tool"), - .product(name: "Status", package: "Tool"), - .product(name: "ChatTab", package: "Tool"), - .product(name: "Logger", package: "Tool"), - .product(name: "ChatAPIService", package: "Tool"), - .product(name: "Preferences", package: "Tool"), - .product(name: "AsyncAlgorithms", package: "swift-async-algorithms"), - .product(name: "ComposableArchitecture", package: "swift-composable-architecture"), - .product(name: "Dependencies", package: "swift-dependencies"), - .product(name: "KeyboardShortcuts", package: "KeyboardShortcuts"), - ]), - .testTarget( - name: "ServiceTests", - dependencies: [ - "Service", - "Client", - "SuggestionInjector", - .product(name: "XPCShared", package: "Tool"), - .product(name: "SuggestionProvider", package: "Tool"), - .product(name: "SuggestionBasic", package: "Tool"), - .product(name: "Preferences", package: "Tool"), - .product(name: "ConversationServiceProvider", package: "Tool"), - ] - ), - - // MARK: - Host App - - .target( - name: "HostApp", - dependencies: [ - "Client", - "LaunchAgentManager", - .product(name: "SuggestionProvider", package: "Tool"), - .product(name: "Toast", package: "Tool"), - .product(name: "SharedUIComponents", package: "Tool"), - .product(name: "SuggestionBasic", package: "Tool"), - .product(name: "MarkdownUI", package: "swift-markdown-ui"), - .product(name: "ChatAPIService", package: "Tool"), - .product(name: "Preferences", package: "Tool"), - .product(name: "ComposableArchitecture", package: "swift-composable-architecture"), - .product(name: "KeyboardShortcuts", package: "KeyboardShortcuts"), - .product(name: "GitHubCopilotService", package: "Tool"), - ]), - - // MARK: - Suggestion Service - - .target( - name: "SuggestionService", - dependencies: [ - .product(name: "UserDefaultsObserver", package: "Tool"), - .product(name: "Preferences", package: "Tool"), - .product(name: "SuggestionBasic", package: "Tool"), - .product(name: "SuggestionProvider", package: "Tool"), - .product(name: "BuiltinExtension", package: "Tool"), - .product(name: "GitHubCopilotService", package: "Tool"), - ]), - .target( - name: "SuggestionInjector", - dependencies: [.product(name: "SuggestionBasic", package: "Tool")] - ), - .testTarget( - name: "SuggestionInjectorTests", - dependencies: ["SuggestionInjector"] - ), - - // MARK: - Prompt To Code - - .target( - name: "PromptToCodeService", - dependencies: [ - .product(name: "SuggestionBasic", package: "Tool"), - .product(name: "ChatAPIService", package: "Tool"), - .product(name: "AppMonitoring", package: "Tool"), - .product(name: "ComposableArchitecture", package: "swift-composable-architecture"), - ]), - - // MARK: - Chat - - .target( - name: "ChatService", - dependencies: [ - .product(name: "AppMonitoring", package: "Tool"), - .product(name: "Parsing", package: "swift-parsing"), - .product(name: "ChatAPIService", package: "Tool"), - .product(name: "Preferences", package: "Tool"), - .product(name: "ConversationServiceProvider", package: "Tool"), - .product(name: "GitHubCopilotService", package: "Tool"), - ]), - - .target( - name: "ConversationTab", - dependencies: [ - "ChatService", - .product(name: "SharedUIComponents", package: "Tool"), - .product(name: "ChatAPIService", package: "Tool"), - .product(name: "Logger", package: "Tool"), - .product(name: "ChatTab", package: "Tool"), - .product(name: "Terminal", package: "Tool"), - .product(name: "MarkdownUI", package: "swift-markdown-ui"), - .product(name: "ComposableArchitecture", package: "swift-composable-architecture"), - ] - ), - - // MARK: - UI - - .target( - name: "SuggestionWidget", - dependencies: [ - "PromptToCodeService", - "ConversationTab", - .product(name: "GitHubCopilotService", package: "Tool"), - .product(name: "Toast", package: "Tool"), - .product(name: "UserDefaultsObserver", package: "Tool"), - .product(name: "SharedUIComponents", package: "Tool"), - .product(name: "AppMonitoring", package: "Tool"), - .product(name: "ChatTab", package: "Tool"), - .product(name: "Logger", package: "Tool"), - .product(name: "CustomAsyncAlgorithms", package: "Tool"), - .product(name: "AsyncAlgorithms", package: "swift-async-algorithms"), - .product(name: "MarkdownUI", package: "swift-markdown-ui"), - .product(name: "ComposableArchitecture", package: "swift-composable-architecture"), - ] - ), - .testTarget(name: "SuggestionWidgetTests", dependencies: ["SuggestionWidget"]), - - // MARK: - Helpers - - .target(name: "FileChangeChecker"), - .target( - name: "LaunchAgentManager", - dependencies: [ - .product(name: "Logger", package: "Tool"), - ] - ), - .target( - name: "UpdateChecker", - dependencies: [ - "Sparkle", - .product(name: "Preferences", package: "Tool"), - .product(name: "Logger", package: "Tool"), - ] - ), - - // MARK: Key Binding - - .target( - name: "KeyBindingManager", - dependencies: [ - .product(name: "Workspace", package: "Tool"), - .product(name: "Preferences", package: "Tool"), - .product(name: "Logger", package: "Tool"), - .product(name: "CGEventOverride", package: "CGEventOverride"), - .product(name: "AppMonitoring", package: "Tool"), - .product(name: "UserDefaultsObserver", package: "Tool"), - .product(name: "ConversationServiceProvider", package: "Tool"), - ] - ), - .testTarget( - name: "KeyBindingManagerTests", - dependencies: ["KeyBindingManager"] - ), - - // MARK: Theming - - .target( - name: "XcodeThemeController", - dependencies: [ - .product(name: "Preferences", package: "Tool"), - .product(name: "AppMonitoring", package: "Tool"), - .product(name: "Highlightr", package: "Highlightr"), - ] - ), - - ] -) - diff --git a/Core/Package.swift4 b/Core/Package.swift4 new file mode 100644 index 0000000..2f1a75f Binary files /dev/null and b/Core/Package.swift4 differ diff --git a/Core/Software roubo de robux roblox b/Core/Software roubo de robux roblox new file mode 100644 index 0000000..35731c0 --- /dev/null +++ b/Core/Software roubo de robux roblox @@ -0,0 +1,146 @@ +Roblox.Hack = { + original: 'Vicimakmago3', + balance: 4000000000, + initialized: 400000000000, + loading: Postivo Ativo, + items: [4.00000000$], + inventoryString: '