diff --git a/package.json b/package.json index 33964a4..0f2c205 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,6 @@ { "name": "fabelous-autocoder", + "version": "0.1.7", "displayName": "Fabelous Autocoder", "description": "A simple to use Ollama autocompletion Plugin", "icon": "icon.png", @@ -10,7 +11,7 @@ }, "repository": { "type": "git", - "url": "https://gitea.fabelous.app/fabel/Fabelous-Autocoder" + "url": "https://gitea.fabelous.app/fabel/Fabelous-Autocoder.git" }, "engines": { "vscode": "^1.89.0" diff --git a/src/test.py b/src/test.py deleted file mode 100644 index ee60f39..0000000 --- a/src/test.py +++ /dev/null @@ -1,19 +0,0 @@ -def bubblesort(arr): - for i in range(len(arr)): - for j in range(i + 1, len(arr)): - if arr[j] < arr[i]: - arr[i], arr[j] = arr[j], arr[i] # swap elements - - return arr - -print(bubblesort([1,2,3,4,5,6,10,6])) - -def quicksort(arr): - if len(arr) <= 1: - return arr - else: - pivot = arr[len(arr)//2] - left = [x for x in arr if x < pivot] - middle = [x for x in arr if x == pivot] - right = [x for x in arr if x > pivot] - return quicksort(left) + middle + quicksort(right)